/* Project I For One — v15 */
:root{
  --bg:#070A12;               /* main site background */
  --header-bg:#121223;    /* header matches logo bg */
  --panel:#0C1120;
  --text:#F5F7FF;
  --muted:#AAB2CF;
  --line:rgba(255,255,255,.10);
  --accent:#D4AF37;
  --danger:#FF3B30;
  --max:1120px;
  --r:18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
a{color:inherit;text-decoration:none}
a:hover{opacity:.96}
.wrap{width:min(var(--max),92vw);margin:0 auto}
.muted{color:var(--muted)}
.small{font-size:13px;line-height:1.5}
hr{border:0;border-top:1px solid var(--line);margin:28px 0}
.sr-only{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

/* Header */
.site-header{
  position:sticky;top:0;z-index:20;
  background: var(--header-bg);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-wrap{display:flex;justify-content:space-between;align-items:center;gap:18px;flex-wrap:wrap;padding:16px 0}
.logo{height:160px;width:auto;display:block}
.nav{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.nav a{color:rgba(255,255,255,.78);font-weight:800;font-size:14px;padding:9px 11px;border-radius:12px;transition:background .18s ease, transform .18s ease}
.nav a:hover{background:rgba(255,255,255,.08);transform:translateY(-1px);color:var(--text)}
.nav .nav-donate{background:var(--accent);color:#0A0F1D;border:1px solid rgba(212,175,55,.25)}
.nav .nav-donate:hover{background:#e2c04a;transform:translateY(-1px)}

/* Hero & layout */
.hero{
  padding:74px 0 34px;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(850px 520px at 90% 20%, rgba(255,59,48,.12), transparent 55%);
}
.kicker{display:inline-flex;align-items:center;gap:10px;color:var(--muted);font-weight:900;font-size:12px;letter-spacing:.14em;text-transform:uppercase}
.kicker .dot{width:8px;height:8px;border-radius:999px;background:var(--danger);box-shadow:0 0 0 6px rgba(255,59,48,.14)}
.h1{font-size:56px;line-height:1.02;margin:14px 0 12px;font-weight:950;letter-spacing:-.02em;max-width:20ch}
.lede{font-size:19px;line-height:1.65;color:var(--muted);max-width:72ch;margin:0}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;border:1px solid var(--line);
  font-weight:950;font-size:14px;letter-spacing:.02em;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--accent);border-color:rgba(212,175,55,.35);color:#0A0F1D}
.btn-ghost{background:rgba(255,255,255,.05)}
.btn-danger{background:rgba(255,59,48,.12);border-color:rgba(255,59,48,.35)}

.section{padding:34px 0}
.section-title{font-size:28px;margin:0 0 10px;font-weight:950;letter-spacing:-.01em}
.section-lede{color:var(--muted);line-height:1.75;max-width:85ch;margin:0}

.grid{display:grid;gap:16px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
@media (max-width: 980px){
  .h1{font-size:44px}
  .grid-3,.grid-2{grid-template-columns:1fr}
  .logo{height:120px}
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:18px;
}
.card h3{margin:0 0 10px;font-size:18px}
.card p{margin:0;color:var(--muted);line-height:1.65}
.pill{
  display:inline-flex;gap:8px;align-items:center;
  padding:7px 10px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:900;font-size:13px;
}
.callout{
  border-left:3px solid var(--danger);
  padding:14px 16px;background:rgba(255,59,48,.08);
  border-radius:14px;border:1px solid rgba(255,59,48,.20)
}
.callout strong{display:block;margin-bottom:6px}
.list{margin:10px 0 0;padding:0;list-style:none}
.list li{margin:10px 0;padding-left:14px;position:relative;color:var(--muted);line-height:1.75}
.list li:before{content:"";width:6px;height:6px;border-radius:999px;background:var(--accent);position:absolute;left:0;top:.65em}

.panel{
  background:rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

/* Newsletter */
.newsletter{
  margin-top:44px;
  padding:34px 0;
  background:rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.newsletter-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.newsletter-form{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
}
.newsletter-form input{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.newsletter-form button{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.35);
  background:var(--accent);
  color:#0A0F1D;
  font-weight:950;
}
.newsletter-note{grid-column:1 / -1}
@media (max-width: 980px){
  .newsletter-inner{grid-template-columns:1fr}
  .newsletter-form{grid-template-columns:1fr}
}

/* Footer — professional + fewer lines */
.site-footer{
  margin-top:0;
  background: rgba(255,255,255,.01);
  border-top:1px solid var(--line);  /* ONE line entering footer */
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap:28px;
  padding:28px 0 10px;
}
.footer-brand{font-weight:950;font-size:16px;margin-bottom:10px}
.footer-title{font-weight:950;font-size:14px;margin-bottom:10px;color:rgba(255,255,255,.9)}
.footer-address{line-height:1.6;margin-bottom:0}
.footer-links{display:flex;flex-direction:column;gap:10px}
.footer-links a{color:var(--muted);font-weight:850}
.footer-links a:hover{color:var(--text)}

/* Contact row: no extra divider line above it */
.footer-contact-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:16px 0 10px;
}
.contact-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:850;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.contact-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: var(--text);
}
.ico{width:18px;height:18px;flex:0 0 18px;opacity:.95}

/* Copyright: no extra border-top (reduce line clutter) */
.footer-bottom{padding:12px 0 24px}

@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr}
  .footer-contact-row{flex-direction:column;align-items:stretch}
  .contact-link{justify-content:center}
}


/* Awareness: stance callout emphasis */
.stance-callout .muted{
  margin-top: 6px;
  max-width: 85ch;
}
.stance-emphasis{
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -.01em;
  color: var(--text);
}
.stance-dot{
  opacity: .9;
  display: inline-block;
  margin: 0 6px;
}
@media (max-width: 980px){
  .stance-emphasis{font-size: 20px}
}


/* Awareness: service cards alignment + polish */
.service-card{
  display:flex;
  flex-direction:column;
  gap:0;
  padding:0;               /* we'll control padding per section */
  overflow:hidden;
}
.service-card-body{
  padding:18px;
}
.service-card h3{
  margin:0 0 10px;
  font-size:18px;
}
.service-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.service-card .list{
  margin-top:14px;
}
.service-card-actions{
  margin-top:auto;
  padding:14px 18px 18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
/* Even when empty, keep height rhythm consistent without showing a bar */
.service-card-actions[aria-hidden="true"]{
  padding:14px 18px 18px;
  min-height:60px;
}
/* Button sizing inside cards */
.service-card-actions .btn{
  padding:10px 14px;
  border-radius:14px;
}

@media (min-width: 981px){
  .service-card{min-height: 320px;}
}


/* Awareness card spacing fix */
.section .grid.grid-2{
  margin-top: 28px;
  gap: 28px;              /* more breathing room between cards */
}

.section .grid.grid-2 .card{
  padding: 22px;          /* internal padding so content isn't edge-to-edge */
}

@media (min-width: 981px){
  .section .grid.grid-2{
    padding-left: 20px;   /* pull cards away from page edges */
    padding-right: 20px;
  }
}
