/* ================================================================
   PURPOSE LIFE LEADERSHIP HUB — purposelife.co.ke
   Brand colours from PLLH logo:
     Navy  #002050  |  Gold  #C09020
   Hero redesign: Award poster is the PRIMARY hero element.
   DOM order = mobile order: poster → countdown → summit info → org
   ================================================================ */

:root {
  --navy:        #002050;
  --navy-deep:   #001040;
  --navy-soft:   #0A3060;
  --navy-card:   #0D2B5E;
  --gold:        #C09020;
  --gold-bright: #D4A830;
  --gold-pale:   #ECD890;
  --gold-glow:   rgba(192,144,32,.28);
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --soft-gray:   #F0EDE8;
  --black:       #080C14;
  --on-dark-90:  rgba(255,255,255,.90);
  --on-dark-70:  rgba(255,255,255,.70);
  --on-dark-50:  rgba(255,255,255,.50);
  --on-dark-12:  rgba(255,255,255,.12);
  --on-light-06: rgba(0,32,80,.06);
  --on-light-14: rgba(0,32,80,.14);
  --on-light-50: rgba(0,32,80,.50);
  --display: 'Fraunces', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', monospace;
  --max:     1180px;
  --r:       14px;
  --r-sm:    8px;
  --shadow:    0 4px 20px -6px rgba(0,16,64,.16);
  --shadow-lg: 0 28px 64px -22px rgba(0,16,64,.40);
  --shadow-gold: 0 14px 44px -12px rgba(192,144,32,.48);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { margin:0; font-family:var(--body); color:var(--navy); background:var(--white);
       line-height:1.65; -webkit-font-smoothing:antialiased; }
img  { max-width:100%; display:block; }
a    { color:inherit; text-decoration:none; }
ul   { margin:0; padding:0; list-style:none; }
h1,h2,h3,h4 { font-family:var(--display); margin:0 0 .4em; line-height:1.10; font-weight:600; }
p    { margin:0 0 1em; }
.wrap { max-width:var(--max); margin:0 auto; padding:0 24px; }

/* ── Eyebrow ── */
.eyebrow { font-family:var(--mono); font-size:.68rem; letter-spacing:.18em; text-transform:uppercase;
           color:var(--gold); display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.eyebrow::before { content:""; width:16px; height:1px; background:var(--gold); flex-shrink:0; }
.eyebrow.center  { justify-content:center; }
.eyebrow.center::before { display:none; }
.eyebrow.bright  { color:var(--gold-bright); }
.eyebrow.bright::before { background:var(--gold-bright); }

/* ── Buttons ── */
.btn { font-family:var(--body); font-weight:600; font-size:.90rem;
       display:inline-flex; align-items:center; gap:8px; padding:13px 26px;
       border-radius:999px; border:1.5px solid transparent; cursor:pointer; white-space:nowrap;
       transition:transform .22s, box-shadow .22s, background .22s, color .22s, border-color .22s; }
.btn-gold         { background:var(--gold); color:var(--navy-deep); border-color:var(--gold); }
.btn-gold:hover   { background:var(--gold-bright); border-color:var(--gold-bright);
                    transform:translateY(-2px); box-shadow:var(--shadow-gold); }
.btn-outline      { background:transparent; border-color:rgba(255,255,255,.28); color:var(--white); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-pale); transform:translateY(-2px); }
.btn-outline-dark { background:transparent; border-color:var(--on-light-14); color:var(--navy); }
.btn-outline-dark:hover { border-color:var(--gold); color:var(--gold); }
.btn-sm    { padding:9px 20px; font-size:.82rem; }
.btn-block { width:100%; justify-content:center; }

/* ── Logo ── */
.logo { display:flex; align-items:center; gap:11px; }
.logo-img   { width:40px; height:40px; border-radius:50%; object-fit:cover;
              border:1.5px solid rgba(192,144,32,.48); flex-shrink:0; }
.logo-text strong { display:block; font-family:var(--display); font-size:.94rem;
                    font-weight:600; color:var(--white); line-height:1.15; }
.logo-text small  { display:block; font-family:var(--mono); font-size:.50rem;
                    letter-spacing:.15em; text-transform:uppercase; color:var(--on-dark-50); }
.logo-light .logo-text strong { color:var(--navy); }
.logo-light .logo-text small  { color:var(--on-light-50); }

/* ── Header / Nav ── */
header.site { position:sticky; top:0; z-index:100;
              background:rgba(0,16,64,.94);
              backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
              border-bottom:1px solid var(--on-dark-12); }
.nav-row   { display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
.nav-links { display:flex; gap:22px; align-items:center; }
.nav-links a { font-size:.82rem; color:var(--on-dark-70); font-weight:500;
               position:relative; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a.active::after { content:""; position:absolute; left:0; right:0; bottom:-6px;
                              height:2px; background:var(--gold); border-radius:1px; }
.nav-cta   { display:flex; gap:10px; align-items:center; }
.nav-toggle { display:none; background:none; border:none; color:var(--white);
              font-size:1.5rem; cursor:pointer; padding:4px 6px; }
@media(max-width:900px){
  .nav-links { position:absolute; top:100%; left:0; right:0; background:var(--navy-deep);
               flex-direction:column; gap:0; border-top:1px solid var(--on-dark-12);
               max-height:0; overflow:hidden; transition:max-height .32s ease; }
  .nav-links.open { max-height:520px; }
  .nav-links a { width:100%; padding:13px 24px; border-bottom:1px solid var(--on-dark-12); }
  .nav-cta .btn-outline { display:none; }
  .nav-toggle { display:block; }
}

/* ================================================================
   HERO — POSTER FIRST LAYOUT
   The award poster is the dominant primary element on desktop AND mobile.

   DOM order (= mobile stacking order):
     1. .hero-poster   — summit poster image + CTA strip  ← FIRST
     2. .hero-info     — summit title, date, countdown     ← SECOND
     3. .hero-org      — org pitch, mission                ← THIRD

   Desktop grid:
     [hero-poster 420px] [hero-info 1fr]
     hero-org spans full width below the grid as a subtle band.
   ================================================================ */
.hero {
  background:
    radial-gradient(ellipse 700px 600px at 5% 110%, rgba(192,144,32,.18), transparent 55%),
    radial-gradient(ellipse 500px 400px at 95% 0%,  rgba(192,144,32,.10), transparent 50%),
    linear-gradient(148deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color:var(--white);
  overflow:hidden;
  position:relative;
}
/* subtle full-bleed poster watermark */
.hero::before { content:""; position:absolute; inset:0; z-index:0;
                background:url('/assets/images/summit-poster-main.jpeg') center/cover no-repeat;
                opacity:.05; pointer-events:none; }

/* Top two-column grid */
.hero-main-grid {
  display:grid;
  grid-template-columns:420px 1fr;   /* poster col | info col */
  min-height:90vh;
  position:relative; z-index:1;
  align-items:stretch;
}

/* ── POSTER COLUMN (left on desktop, first on mobile) ── */
.hero-poster {
  display:flex; flex-direction:column;
  border-right:1px solid var(--on-dark-12);
  background:linear-gradient(180deg, rgba(0,16,64,.55) 0%, rgba(0,32,80,.20) 100%);
  position:relative; overflow:hidden;
}
.hero-poster-badge {
  position:absolute; top:18px; left:50%; transform:translateX(-50%);
  white-space:nowrap; z-index:2;
}
.hero-poster-img {
  flex:1; width:100%; object-fit:cover; object-position:top center;
  display:block; min-height:340px;
}
.hero-poster-cta {
  background:rgba(0,16,64,.92); border-top:1px solid var(--on-dark-12);
  padding:16px 20px; display:flex; gap:8px; flex-wrap:wrap; flex-shrink:0;
}

/* ── INFO COLUMN (right on desktop, second on mobile) ── */
.hero-info {
  padding:56px 44px 44px;
  display:flex; flex-direction:column; justify-content:center;
}
.hero-info .summit-kicker {
  font-family:var(--mono); font-size:.68rem; letter-spacing:.20em;
  text-transform:uppercase; color:var(--gold); display:flex; align-items:center;
  gap:8px; margin-bottom:18px;
}
.hero-info .summit-kicker::before { content:""; width:16px; height:1px; background:var(--gold); }
.hero-info h1 { font-size:clamp(2rem,3.2vw,2.8rem); color:var(--white); margin-bottom:.3em; }
.hero-info h1 span { color:var(--gold-pale); display:block; }
.hero-info .theme {
  font-family:var(--display); font-style:italic; font-size:1.25rem;
  color:var(--gold-bright); margin-bottom:26px; display:block;
}
/* event detail chips */
.event-meta { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.event-chip {
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.07); border:1px solid var(--on-dark-12);
  border-radius:999px; padding:8px 16px;
  font-family:var(--mono); font-size:.70rem; letter-spacing:.06em;
  color:var(--on-dark-70);
}
.event-chip strong { color:var(--white); }
/* countdown inside hero */
.hero-countdown { margin-bottom:28px; }
.hero-countdown-label { font-family:var(--mono); font-size:.64rem; letter-spacing:.16em;
                         text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.hero-countdown-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.hcd-unit { background:rgba(255,255,255,.06); border:1px solid var(--on-dark-12);
             border-radius:10px; text-align:center; padding:12px 4px; }
.hcd-unit .num { font-family:var(--mono); font-size:1.8rem; color:var(--gold-bright);
                  font-weight:600; line-height:1; display:block; }
.hcd-unit .lbl { font-family:var(--mono); font-size:.54rem; letter-spacing:.12em;
                  text-transform:uppercase; color:var(--on-dark-50); margin-top:4px; display:block; }
.hero-actions { display:flex; flex-wrap:wrap; gap:10px; }

/* ── ORG BAND — below the grid, full width ── */
.hero-org {
  border-top:1px solid var(--on-dark-12);
  background:rgba(0,0,0,.25);
  padding:20px 0; position:relative; z-index:1;
}
.hero-org-inner {
  display:flex; align-items:center; gap:28px; flex-wrap:wrap;
  justify-content:space-between;
}
.hero-org-text { font-size:.92rem; color:var(--on-dark-70); }
.hero-org-text strong { color:var(--white); font-family:var(--display); font-size:1.05rem; }
.hero-org-tagline { font-family:var(--mono); font-size:.66rem; letter-spacing:.14em;
                     text-transform:uppercase; color:var(--gold); margin-top:3px; }

/* ── Mobile overrides ── */
@media(max-width:960px){
  .hero-main-grid { grid-template-columns:1fr; min-height:auto; }
  /* poster column becomes a tall image block */
  .hero-poster { border-right:none; border-bottom:1px solid var(--on-dark-12); }
  .hero-poster-img { min-height:60vw; max-height:480px; }
  /* info column gets comfortable mobile padding */
  .hero-info { padding:32px 24px 28px; }
  .hero-info h1 { font-size:clamp(1.8rem,6vw,2.4rem); }
  .hero-org { padding:16px 0; }
}
@media(max-width:480px){
  .hero-poster-img { max-height:380px; min-height:260px; }
  .hero-info h1 { font-size:1.75rem; }
  .hcd-unit .num { font-size:1.5rem; }
}

/* ── Status pill ── */
.status-pill { display:inline-flex; align-items:center; gap:7px;
  font-family:var(--mono); font-size:.68rem; letter-spacing:.06em; text-transform:uppercase;
  background:rgba(192,144,32,.14); color:var(--gold-bright);
  padding:7px 13px; border-radius:999px; border:1px solid rgba(192,144,32,.28); }
.status-pill .dot { width:7px; height:7px; border-radius:50%; background:var(--gold-bright);
                     animation:pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.18;} }

/* ── Countdown (standalone widget used on inner pages) ── */
.countdown-widget { background:rgba(255,255,255,.04); border:1px solid var(--on-dark-12);
                    border-radius:var(--r); padding:24px; backdrop-filter:blur(6px); }
.countdown { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-top:12px; }
.countdown .unit { background:linear-gradient(150deg,var(--navy-soft),var(--navy-deep));
                    border:1px solid var(--on-dark-12); border-radius:10px; text-align:center; padding:12px 4px; }
.countdown .unit .num { font-family:var(--mono); font-size:1.65rem; color:var(--gold-bright);
                         font-weight:600; line-height:1; }
.countdown .unit .lbl { font-family:var(--mono); font-size:.54rem; letter-spacing:.12em;
                         text-transform:uppercase; color:var(--on-dark-50); margin-top:4px; }

/* ── Award categories grid ── */
.award-cats { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:10px; }
.award-cat-item { display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.05); border:1px solid var(--on-dark-12);
  border-radius:var(--r-sm); padding:12px 14px;
  transition:background .2s, border-color .2s; }
.award-cat-item:hover { background:rgba(192,144,32,.10); border-color:rgba(192,144,32,.34); }
.award-cat-item .num { font-family:var(--mono); font-size:.60rem; color:var(--gold); min-width:20px; }
.award-cat-item span { font-size:.84rem; color:var(--on-dark-70); line-height:1.3; }

/* ── Gallery ── */
.gallery-section { background:var(--navy-deep); color:var(--white); padding:80px 0; }
.gallery-mosaic { display:grid; grid-template-columns:1.25fr 1fr 1fr;
                  grid-template-rows:260px 260px; gap:12px; }
.g-cell { border-radius:var(--r); overflow:hidden; position:relative; background:var(--navy-card); }
.g-cell img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s ease; }
.g-cell:hover img { transform:scale(1.06); }
.g-cell.tall { grid-row:1/3; }
.g-caption { position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(0deg,rgba(0,16,64,.90) 0%,transparent 80%);
  padding:32px 16px 14px; font-family:var(--mono); font-size:.66rem; letter-spacing:.08em;
  text-transform:uppercase; color:var(--gold-pale); opacity:0; transition:opacity .3s; }
.g-cell:hover .g-caption { opacity:1; }
@media(max-width:720px){
  .gallery-mosaic { grid-template-columns:1fr 1fr; grid-template-rows:200px 200px; }
  .g-cell.tall { grid-row:auto; }
}
@media(max-width:480px){ .gallery-mosaic { grid-template-columns:1fr; grid-template-rows:auto; } }

/* ── Summit poster frame ── */
.summit-poster-frame { border-radius:var(--r); overflow:hidden;
  box-shadow:0 24px 60px -16px rgba(0,16,64,.55), 0 0 0 1px rgba(192,144,32,.26); }
.summit-poster-frame img { width:100%; display:block; }

/* ── Sections ── */
section { padding:80px 0; }
.section-head { margin-bottom:44px; }
.section-head.center { text-align:center; }
.section-head h2 { font-size:clamp(1.75rem,2.8vw,2.45rem); }
.section-head p { color:var(--on-light-50); margin-top:8px; max-width:580px; }
.section-head.center p { margin:8px auto 0; }
.bg-off-white { background:var(--off-white); }
.bg-soft      { background:var(--soft-gray); }
.bg-navy      { background:var(--navy);      color:var(--white); }
.bg-deep      { background:var(--navy-deep); color:var(--white); }
.bg-navy p, .bg-deep p { color:var(--on-dark-70); }

/* ── Grid ── */
.grid   { display:grid; gap:24px; }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-4 { grid-template-columns:repeat(4,1fr); }
@media(max-width:920px){ .grid-3,.grid-4 { grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; } }

/* ── Cards ── */
.card { background:var(--white); border:1px solid var(--on-light-06);
        border-radius:var(--r); padding:28px 24px;
        transition:transform .22s, box-shadow .22s; }
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.card-icon { width:42px; height:42px; border-radius:10px;
             background:linear-gradient(145deg,var(--navy-soft),var(--navy));
             display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.card-icon svg { width:20px; height:20px; stroke:var(--gold-bright); stroke-width:1.8; fill:none; }
.card h3 { font-size:1.07rem; margin-bottom:.3em; }
.card p  { color:var(--on-light-50); font-size:.92rem; }
.card .link { font-family:var(--mono); font-size:.68rem; letter-spacing:.06em;
              text-transform:uppercase; color:var(--gold); display:inline-block; margin-top:8px; }
.card-dark { background:rgba(255,255,255,.04); border:1px solid var(--on-dark-12);
             border-radius:var(--r); padding:26px; }

/* ── Stats ── */
.stat .num { font-family:var(--mono); font-size:2.2rem; color:var(--gold);
             font-weight:600; line-height:1; }
.stat .lbl { font-size:.84rem; color:var(--on-light-50); margin-top:4px; }
.bg-navy .stat .lbl, .bg-deep .stat .lbl { color:var(--on-dark-70); }

/* ── Testimonials ── */
.testimonial { background:var(--white); border:1px solid var(--on-light-06);
               border-radius:var(--r); padding:28px; }
.testimonial blockquote { font-family:var(--display); font-style:italic;
                           font-size:1.04rem; color:var(--navy); margin:0 0 14px; }
.testimonial .who { font-family:var(--mono); font-size:.68rem; letter-spacing:.06em;
                    color:var(--gold); text-transform:uppercase; }

/* ── Partners ── */
.partners-strip { display:flex; flex-wrap:wrap; gap:24px; align-items:center; justify-content:center; }
.partner-chip { font-family:var(--mono); font-size:.74rem; letter-spacing:.08em;
                border:1px dashed rgba(0,32,80,.22); border-radius:var(--r-sm);
                padding:9px 16px; color:var(--on-light-50); }

/* ── CTA band ── */
.cta-band { background:linear-gradient(130deg,var(--navy-deep),var(--navy-soft));
            color:var(--white); border-radius:18px; padding:50px 44px;
            display:flex; justify-content:space-between; align-items:center;
            gap:28px; flex-wrap:wrap; position:relative; overflow:hidden; }
.cta-band::after { content:""; position:absolute; right:-80px; top:-80px;
                   width:260px; height:260px;
                   background:radial-gradient(circle,var(--gold-glow),transparent 70%); }
.cta-band h2 { color:var(--white); font-size:1.75rem; margin-bottom:6px; }
.cta-band p  { color:var(--on-dark-70); margin:0; }

/* ── Page header (inner pages) ── */
.page-head { background:radial-gradient(ellipse 500px 300px at 92% 50%,
             rgba(192,144,32,.16),transparent),
             linear-gradient(148deg,var(--navy-deep) 0%,var(--navy) 100%);
             color:var(--white); padding:64px 0 52px; position:relative; overflow:hidden; }
.page-head .breadcrumb { font-family:var(--mono); font-size:.66rem; letter-spacing:.08em;
                          text-transform:uppercase; color:var(--on-dark-50); margin-bottom:10px; }
.page-head .breadcrumb a { color:var(--gold-bright); }
.page-head h1 { color:var(--white); font-size:clamp(1.85rem,3.2vw,2.6rem); }
.page-head p  { color:var(--on-dark-70); max-width:580px; margin-top:8px; }

/* ── Process steps ── */
.process-step { display:flex; gap:16px; }
.process-step .bar { width:4px; border-radius:2px;
                     background:linear-gradient(180deg,var(--gold),transparent); flex-shrink:0; }
.process-step .body { padding-bottom:28px; }

/* ── Forms ── */
.form-card { background:var(--white); border:1px solid var(--on-light-06);
             border-radius:var(--r); padding:34px; box-shadow:var(--shadow-lg); }
.form-row { margin-bottom:18px; }
.form-row label { display:block; font-family:var(--mono); font-size:.64rem;
                  letter-spacing:.12em; text-transform:uppercase; color:var(--navy); margin-bottom:7px; }
.form-row .req { color:var(--gold); }
.form-row input, .form-row select, .form-row textarea {
  width:100%; padding:12px 14px; border-radius:var(--r-sm); border:1px solid var(--on-light-14);
  font-family:var(--body); font-size:.93rem; background:var(--soft-gray); color:var(--navy);
  transition:border-color .2s, background .2s; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline:none; border-color:var(--gold); background:var(--white); }
.form-row textarea { min-height:110px; resize:vertical; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:0 18px; }
@media(max-width:600px){ .form-grid { grid-template-columns:1fr; } }
.form-note { font-size:.80rem; color:var(--on-light-50); margin-top:5px; }
.upload-box { border:1.5px dashed rgba(0,32,80,.20); border-radius:10px; padding:24px;
              text-align:center; background:var(--soft-gray); cursor:pointer; transition:border-color .2s; }
.upload-box:hover { border-color:var(--gold); }

/* ── Nominee cards ── */
.nominee-card { background:var(--white); border:1px solid var(--on-light-06);
                border-radius:var(--r); overflow:hidden; display:flex; flex-direction:column; }
.nominee-photo { height:180px; background:linear-gradient(150deg,var(--navy-soft),var(--navy-deep));
                 display:flex; align-items:center; justify-content:center;
                 font-family:var(--mono); font-size:.66rem; letter-spacing:.10em;
                 text-transform:uppercase; color:var(--on-dark-50); overflow:hidden; }
.nominee-photo img { width:100%; height:100%; object-fit:cover; }
.nominee-body { padding:20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.nominee-body .cat { font-family:var(--mono); font-size:.62rem; letter-spacing:.08em;
                     text-transform:uppercase; color:var(--gold); }
.nominee-body h3 { font-size:1.02rem; margin:0; }
.vote-counter { display:flex; align-items:center; gap:10px; margin-top:auto; padding-top:8px; }
.vote-counter button { width:32px; height:32px; border-radius:50%; border:1px solid var(--on-light-14);
                       background:var(--white); font-size:1.1rem; cursor:pointer; color:var(--navy);
                       transition:all .2s; }
.vote-counter button:hover { border-color:var(--gold); color:var(--gold); }
.vote-counter .count { font-family:var(--mono); font-weight:600; min-width:22px; text-align:center; }
.vote-cost { font-family:var(--mono); font-size:.74rem; color:var(--on-light-50); margin-left:auto; }

/* ── Tags ── */
.tag { display:inline-block; font-family:var(--mono); font-size:.62rem; letter-spacing:.10em;
       text-transform:uppercase; background:rgba(192,144,32,.12); color:var(--gold);
       padding:5px 12px; border-radius:999px; }

/* ── Footer ── */
footer.site { background:var(--navy-deep); color:var(--on-dark-70); padding:60px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px; }
.footer-logo-img { width:48px; height:48px; border-radius:50%; object-fit:cover;
                   border:1.5px solid rgba(192,144,32,.36); margin-bottom:14px; }
.footer-grid h4 { color:var(--white); font-family:var(--mono); font-size:.68rem;
                  letter-spacing:.12em; text-transform:uppercase; margin-bottom:14px; }
.footer-grid ul li { margin-bottom:9px; font-size:.88rem; }
.footer-grid ul li a:hover { color:var(--gold-bright); }
.footer-about p { font-size:.88rem; color:var(--on-dark-70); max-width:280px; }
.social-row { display:flex; gap:10px; margin-top:16px; }
.social-row a { width:34px; height:34px; border-radius:50%; border:1px solid var(--on-dark-12);
                display:flex; align-items:center; justify-content:center; font-size:.76rem;
                font-weight:700; transition:border-color .2s,color .2s; }
.social-row a:hover { border-color:var(--gold); color:var(--gold-bright); }
.footer-bottom { border-top:1px solid var(--on-dark-12); padding-top:20px;
                 display:flex; justify-content:space-between; flex-wrap:wrap;
                 gap:8px; font-size:.78rem; color:var(--on-dark-50); }
.footer-bottom a:hover { color:var(--gold-bright); }
@media(max-width:880px){ .footer-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:540px){ .footer-grid { grid-template-columns:1fr; } }

/* ── Reveal animation ── */
.reveal { opacity:0; transform:translateY(18px); transition:opacity .55s ease,transform .55s ease; }
.reveal.in { opacity:1; transform:translateY(0); }
@media(prefers-reduced-motion:reduce){
  .reveal { opacity:1; transform:none; transition:none; }
  .status-pill .dot { animation:none; }
}
