/* =========================================================================
   Pacific Technology Cooperation Group â redesign design system
   Type: Newsreader (display serif) + Public Sans (UI sans)
   Palette: deep ocean navy â Pacific teal/cyan â warm gold CTA + sand
   ========================================================================= */

/* ----- Tokens ----- */
:root{
  --navy-950:#06162c;
  --navy-900:#091f3c;
  --navy-800:#0c2a52;
  --navy-700:#103a6e;
  --royal:#155aa6;
  --royal-bright:#1f72cf;

  --teal:#16b4c6;
  --teal-bright:#3ad7df;
  --teal-deep:#0c7d8c;

  --gold:#f5a623;
  --gold-bright:#ffba43;
  --gold-deep:#d98a12;

  --sand:#f6f1e7;
  --sand-2:#efe7d6;
  --paper:#ffffff;

  --ink:#0d1c2e;
  --ink-soft:#3a4a5c;
  --muted:#5b6c80;
  --line:#e2dccf;
  --line-cool:#d7e0ea;

  --maxw:none; /* full-width layout; sections span the viewport minus --gut */
  --gut:clamp(20px,5vw,64px);

  --r-sm:10px;
  --r-md:16px;
  --r-lg:24px;
  --r-xl:34px;

  --sh-1:0 1px 2px rgba(8,24,46,.06), 0 2px 8px rgba(8,24,46,.05);
  --sh-2:0 12px 30px -12px rgba(8,24,46,.28);
  --sh-3:0 30px 70px -28px rgba(8,24,46,.42);

  --ease:cubic-bezier(.22,.61,.36,1);
  --serif:"Newsreader",Georgia,"Times New Roman",serif;
  --sans:"Public Sans",system-ui,-apple-system,"Segoe UI",sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
html:focus-within{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}}

body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  font-size:clamp(16px,1.05vw,18px);
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{margin:0;font-family:var(--serif);font-weight:500;line-height:1.04;letter-spacing:-.012em}
p{margin:0}
::selection{background:var(--teal);color:#04222a}

:focus-visible{outline:3px solid var(--teal-bright);outline-offset:3px;border-radius:4px}

.skip-link{position:fixed;left:16px;top:-60px;z-index:200;background:var(--gold);color:#21160a;
  padding:.7rem 1.1rem;border-radius:0 0 10px 10px;font-weight:700;transition:top .2s var(--ease)}
.skip-link:focus{top:0}

/* ----- Layout helpers ----- */
.container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gut)}
.container--wide{max-width:none}
.container--narrow{max-width:760px}
.section{padding-block:clamp(64px,9vw,128px)}
.section--tight{padding-block:clamp(48px,6vw,80px)}
.section--sand{background:var(--sand)}
.section--navy{background:var(--navy-900);color:#e9f1fb}
.section--ink{background:linear-gradient(180deg,var(--navy-950),var(--navy-900));color:#e9f1fb}
.center{text-align:center}
.eyebrow{display:inline-flex;align-items:center;gap:.55em;font-family:var(--sans);
  font-weight:700;font-size:.74rem;letter-spacing:.22em;text-transform:uppercase;color:var(--teal-deep)}
.section--navy .eyebrow,.section--ink .eyebrow{color:var(--teal-bright)}
.eyebrow::before{content:"";width:26px;height:2px;background:currentColor;opacity:.8}
.eyebrow--center::before{display:none}

.lede{font-size:clamp(1.1rem,1.6vw,1.32rem);line-height:1.55;color:var(--ink-soft);max-width:62ch}
.section--navy .lede,.section--ink .lede{color:#bcd0e8}

.h-xl{font-size:clamp(2.6rem,6.4vw,5.4rem);line-height:.98}
.h-lg{font-size:clamp(2.1rem,4.4vw,3.6rem)}
.h-md{font-size:clamp(1.6rem,2.8vw,2.4rem)}
.serif-italic{font-style:italic;font-weight:400}
.text-gold{color:var(--gold)}
.text-teal{color:var(--teal)}
.section--navy .text-teal,.section--ink .text-teal{color:var(--teal-bright)}

.section-head{max-width:64ch}
.section-head.center{margin-inline:auto}
.section-head .eyebrow{margin-bottom:1.1rem}
.section-head h2{margin-bottom:1rem}

/* ----- Buttons ----- */
.btn{--bg:var(--royal);--fg:#fff;
  display:inline-flex;align-items:center;gap:.6em;justify-content:center;
  font-family:var(--sans);font-weight:700;font-size:1rem;letter-spacing:.005em;
  padding:.95em 1.6em;border-radius:999px;border:1.5px solid transparent;
  background:var(--bg);color:var(--fg);cursor:pointer;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease),color .2s var(--ease);
  will-change:transform;white-space:nowrap}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn .ar{transition:transform .25s var(--ease)}
.btn:hover .ar{transform:translateX(4px)}
.btn--gold{--bg:var(--gold);--fg:#23170a;box-shadow:0 10px 24px -10px rgba(245,166,35,.7)}
.btn--gold:hover{--bg:var(--gold-bright);box-shadow:0 16px 30px -12px rgba(245,166,35,.8)}
.btn--teal{--bg:var(--teal);--fg:#042027;box-shadow:0 10px 24px -12px rgba(22,180,198,.7)}
.btn--teal:hover{--bg:var(--teal-bright)}
.btn--ghost{--bg:transparent;--fg:var(--royal);border-color:var(--line-cool)}
.btn--ghost:hover{--bg:var(--royal);--fg:#fff;border-color:var(--royal)}
.btn--light{--bg:rgba(255,255,255,.08);--fg:#fff;border-color:rgba(255,255,255,.45);backdrop-filter:blur(4px)}
.btn--light:hover{--bg:#fff;--fg:var(--navy-900);border-color:#fff}
.btn--sm{padding:.6em 1.1em;font-size:.9rem}
.btn--lg{padding:1.05em 1.9em;font-size:1.08rem}

.link-more{display:inline-flex;align-items:center;gap:.45em;font-weight:700;color:var(--royal);
  font-size:.96rem;transition:gap .2s var(--ease),color .2s var(--ease)}
.link-more .ar{transition:transform .2s var(--ease)}
.link-more:hover{color:var(--teal-deep)}
.link-more:hover .ar{transform:translateX(4px)}
.section--navy .link-more,.section--ink .link-more{color:var(--teal-bright)}

/* =========================================================================
   Header
   ========================================================================= */
.site-header{position:fixed;inset:0 0 auto 0;z-index:100;
  transition:background .35s var(--ease),box-shadow .35s var(--ease),border-color .35s var(--ease);
  border-bottom:1px solid transparent}
.site-header__bar{display:flex;align-items:center;gap:1.5rem;
  height:74px;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gut)}
.brand{display:flex;align-items:center;gap:.7rem;color:#fff;font-weight:800;flex-shrink:0}
.brand img{width:42px;height:42px;filter:drop-shadow(0 2px 6px rgba(0,0,0,.35))}
.brand__txt{display:flex;flex-direction:column;line-height:1}
.brand__txt b{font-family:var(--sans);font-weight:800;font-size:.98rem;letter-spacing:.01em}
.brand__txt span{font-size:.66rem;letter-spacing:.18em;text-transform:uppercase;opacity:.72;margin-top:3px;font-weight:600}

.nav{display:flex;align-items:center;gap:.2rem;margin-left:auto}
.nav a,.nav button{font-family:var(--sans);font-weight:600;font-size:.96rem;color:#eaf2fc;
  background:none;border:0;cursor:pointer;padding:.55rem .85rem;border-radius:999px;
  display:inline-flex;align-items:center;gap:.35em;transition:color .2s,background .2s}
.nav a:hover,.nav button:hover{background:rgba(255,255,255,.12)}
.nav__item{position:relative}
.nav__caret{width:14px;height:14px;transition:transform .25s var(--ease)}
.nav__item[data-open] .nav__caret{transform:rotate(180deg)}
.nav__menu{position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%) translateY(8px);
  min-width:262px;background:#fff;border-radius:18px;box-shadow:var(--sh-3);padding:.5rem;
  opacity:0;visibility:hidden;transition:opacity .25s var(--ease),transform .25s var(--ease);
  border:1px solid var(--line)}
/* invisible hover-bridge: fills the gap between the button and the menu so the
   cursor can travel down to the links without the dropdown closing (desktop only) */
.nav__menu::before{content:"";position:absolute;left:0;right:0;top:-16px;height:16px}
.nav__item[data-open] .nav__menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.nav__menu a{display:flex;flex-direction:column;align-items:flex-start;text-align:left;gap:2px;color:var(--ink);padding:.6rem .8rem;border-radius:12px;font-weight:700}
.nav__menu a:hover{background:var(--sand)}
.nav__menu a small{font-weight:500;color:var(--muted);font-size:.8rem;letter-spacing:0;text-transform:none}
.nav__cta{margin-left:.4rem}

/* scrolled state */
.site-header.is-stuck{background:rgba(7,21,42,.9);backdrop-filter:blur(14px) saturate(1.2);
  border-bottom-color:rgba(255,255,255,.1);box-shadow:0 10px 30px -20px rgba(0,0,0,.7)}
/* solid (interior pages) */
.site-header--solid{position:sticky;background:var(--navy-900)}
.site-header--solid.is-stuck{background:rgba(7,21,42,.94)}

.nav-toggle{display:none;margin-left:auto;width:46px;height:46px;border-radius:12px;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.22);cursor:pointer;
  flex-direction:column;align-items:center;justify-content:center;gap:5px}
.nav-toggle span{width:20px;height:2px;background:#fff;border-radius:2px;transition:transform .3s var(--ease),opacity .2s}
body.nav-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.nav-open .nav-toggle span:nth-child(2){opacity:0}
body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width:920px){
  .nav-toggle{display:flex}
  .nav{position:fixed;inset:74px 0 0 0;margin:0;flex-direction:column;align-items:stretch;gap:0;
    background:linear-gradient(180deg,var(--navy-900),var(--navy-950));padding:1.2rem var(--gut) 2rem;
    transform:translateX(100%);transition:transform .4s var(--ease);overflow-y:auto;visibility:hidden}
  body.nav-open .nav{transform:translateX(0);visibility:visible}
  .nav a,.nav button{font-size:1.15rem;padding:1rem .4rem;border-radius:12px;justify-content:space-between;
    border-bottom:1px solid rgba(255,255,255,.08)}
  .nav__item{width:100%}
  .nav__menu{position:static;transform:none;opacity:1;visibility:visible;box-shadow:none;background:transparent;
    border:0;padding:0 0 .5rem;min-width:0;max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
  .nav__menu::before{display:none}
  .nav__item[data-open] .nav__menu{max-height:420px}
  .nav__menu a{color:#cfe0f3;padding:.7rem 1rem}
  .nav__menu a:hover{background:rgba(255,255,255,.08)}
  .nav__menu a small{color:#8aa6c4}
  .nav__cta{margin:1rem 0 0}
  .nav .btn{width:100%}
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero{position:relative;min-height:min(100svh,920px);display:flex;align-items:flex-end;
  color:#fff;overflow:hidden;isolation:isolate}
.hero__media{position:absolute;inset:0;z-index:-2}
.hero__media img{width:100%;height:100%;object-fit:cover;transform:scale(1.08);
  animation:kenburns 22s ease-out forwards}
@keyframes kenburns{to{transform:scale(1)}}
@media (prefers-reduced-motion:reduce){.hero__media img{animation:none;transform:none}}
.hero__scrim{position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(6,18,38,.55) 0%,rgba(6,18,38,.2) 32%,rgba(6,18,38,.62) 72%,rgba(6,18,38,.92) 100%),
             linear-gradient(90deg,rgba(6,18,38,.7) 0%,rgba(6,18,38,.05) 60%)}
.hero__inner{padding-block:clamp(120px,16vh,200px) clamp(40px,7vh,72px);max-width:980px}
.hero__tag{display:inline-flex;align-items:center;gap:.6em;font-weight:700;font-size:.82rem;letter-spacing:.2em;
  text-transform:uppercase;color:var(--teal-bright);margin-bottom:1.4rem}
.hero__tag::before{content:"";width:30px;height:2px;background:var(--gold)}
.hero h1{font-size:clamp(3rem,8.5vw,7rem);line-height:.95;letter-spacing:-.02em;max-width:14ch;
  text-shadow:0 4px 40px rgba(0,0,0,.4)}
.hero h1 em{font-style:italic;color:var(--gold-bright)}
.hero__sub{font-size:clamp(1.1rem,1.7vw,1.4rem);max-width:54ch;margin-top:1.5rem;color:#dce8f6;line-height:1.5}
.hero__actions{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:2.2rem}
/* hero stat ribbon */
.hero-stats{position:relative;z-index:2;background:var(--navy-900);color:#fff;border-top:1px solid rgba(255,255,255,.08)}
.hero-stats__grid{display:grid;grid-template-columns:repeat(4,1fr)}
.hero-stats__cell{padding:clamp(20px,3vw,34px) var(--gut);border-left:1px solid rgba(255,255,255,.08)}
.hero-stats__cell:first-child{border-left:0}
.hero-stats__grid>.hero-stats__cell{padding-inline:clamp(18px,2.4vw,30px)}
.hero-stats .container{padding:0}
.stat-num{font-family:var(--serif);font-size:clamp(2rem,3.4vw,2.9rem);line-height:1;color:var(--gold-bright);display:flex;align-items:baseline;gap:.05em}
.stat-label{font-size:.82rem;color:#acc2dc;margin-top:.5rem;font-weight:600;letter-spacing:.02em}
@media (max-width:760px){
  .hero-stats__grid{grid-template-columns:1fr 1fr}
  .hero-stats__cell:nth-child(odd){border-left:0}
  .hero-stats__cell:nth-child(n+3){border-top:1px solid rgba(255,255,255,.08)}
}

/* =========================================================================
   Mission statement band
   ========================================================================= */
.statement{font-family:var(--serif);font-weight:400;font-size:clamp(1.7rem,3.6vw,3rem);
  line-height:1.16;letter-spacing:-.015em;max-width:20ch;text-wrap:balance}
.statement .hl{color:var(--teal-deep)}
.section--navy .statement .hl,.section--ink .statement .hl{color:var(--gold-bright)}
.statement-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,5vw,5rem);align-items:center}
@media (max-width:860px){.statement-grid{grid-template-columns:1fr;gap:2rem}.statement{max-width:none}}
.statement-aside p{color:var(--ink-soft);margin-bottom:1.1rem}
.section--navy .statement-aside p,.section--ink .statement-aside p{color:#c4d6ec}

/* =========================================================================
   Program cards
   ========================================================================= */
.prog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(18px,2.4vw,30px)}
@media (max-width:720px){.prog-grid{grid-template-columns:1fr}}
.prog{position:relative;display:flex;flex-direction:column;min-height:380px;border-radius:var(--r-lg);
  overflow:hidden;color:#fff;isolation:isolate;box-shadow:var(--sh-2);transition:transform .4s var(--ease),box-shadow .4s var(--ease)}
.prog:hover{transform:translateY(-6px);box-shadow:var(--sh-3)}
.prog__media{position:absolute;inset:0;z-index:-2}
.prog__media img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.prog:hover .prog__media img{transform:scale(1.06)}
.prog::after{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(6,18,38,.05) 30%,rgba(6,18,38,.62) 66%,rgba(7,16,32,.94) 100%)}
.prog__body{margin-top:auto;padding:clamp(20px,2.4vw,30px)}
.prog__kicker{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--teal-bright);font-weight:700}
.prog h3{font-size:clamp(1.4rem,2.2vw,1.85rem);margin:.5rem 0 .5rem}
.prog p{color:#cfdcec;font-size:.96rem;line-height:1.5;max-width:42ch}
.prog__more{display:inline-flex;align-items:center;gap:.4em;margin-top:1rem;font-weight:700;color:#fff;font-size:.92rem}
.prog__more .ar{transition:transform .25s var(--ease)}
.prog:hover .prog__more .ar{transform:translateX(5px)}
.prog__stretch{position:absolute;inset:0;z-index:1}
.prog--tall{min-height:560px}
@media (min-width:721px){.prog--feature{grid-row:span 2;min-height:560px}}

/* =========================================================================
   Feature split (editorial)
   ========================================================================= */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,5rem);align-items:center}
.split--rev .split__media{order:2}
@media (max-width:860px){.split{grid-template-columns:1fr;gap:2rem}.split--rev .split__media{order:0}}
.split__media{position:relative;border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-2)}
.split__media img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3.2}
.split__badge{position:absolute;left:18px;bottom:18px;background:rgba(7,21,42,.78);backdrop-filter:blur(8px);
  color:#fff;border-radius:14px;padding:.7rem 1rem;font-size:.82rem;display:flex;align-items:center;gap:.6rem;
  border:1px solid rgba(255,255,255,.16)}
.split__badge b{font-family:var(--serif);font-size:1.4rem;color:var(--gold-bright);line-height:1}
.split__body h2{margin-bottom:1.1rem}
.split__body p{color:var(--ink-soft);margin-bottom:1.1rem}
.section--navy .split__body p{color:#c4d6ec}
.tick{list-style:none;padding:0;margin:1.4rem 0 0;display:grid;gap:.7rem}
.tick li{display:flex;gap:.7rem;align-items:flex-start;font-weight:600;color:var(--ink)}
.section--navy .tick li{color:#dceaf8}
.tick svg{flex-shrink:0;margin-top:2px;color:var(--teal-deep)}
.section--navy .tick svg{color:var(--teal-bright)}

/* =========================================================================
   Stats / impact counters
   ========================================================================= */
.kpi-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(16px,2vw,26px)}
@media (max-width:820px){.kpi-grid{grid-template-columns:1fr 1fr}}
.kpi{padding:clamp(22px,2.6vw,34px);border-radius:var(--r-md);background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1)}
.section--sand .kpi{background:#fff;border-color:var(--line);box-shadow:var(--sh-1)}
.kpi__num{font-family:var(--serif);font-size:clamp(2.4rem,4.4vw,3.6rem);line-height:1;color:var(--teal-deep);display:flex;align-items:baseline}
.section--navy .kpi__num,.section--ink .kpi__num{color:var(--teal-bright)}
.kpi__num .suf{font-size:.55em;margin-left:.05em}
.kpi__label{margin-top:.7rem;font-weight:700;color:var(--ink)}
.section--navy .kpi__label,.section--ink .kpi__label{color:#eaf2fc}
.kpi__sub{margin-top:.25rem;font-size:.86rem;color:var(--muted)}
.section--navy .kpi__sub,.section--ink .kpi__sub{color:#90a8c4}

/* =========================================================================
   Quote / testimonial
   ========================================================================= */
.quote{display:grid;grid-template-columns:1.3fr .9fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
@media (max-width:820px){.quote{grid-template-columns:1fr}}
.quote__mark{font-family:var(--serif);font-size:6rem;line-height:.6;color:var(--teal-bright);opacity:.5;height:.5em}
.quote blockquote{margin:0;font-family:var(--serif);font-size:clamp(1.6rem,3vw,2.5rem);line-height:1.2;
  letter-spacing:-.01em;text-wrap:pretty}
.quote figcaption{margin-top:1.6rem;color:#9fb6d2;font-size:.95rem;font-weight:600}
.quote__media{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-3);aspect-ratio:4/3}
.quote__media img{width:100%;height:100%;object-fit:cover}

/* =========================================================================
   Partners marquee
   ========================================================================= */
.marquee{--gap:clamp(2.5rem,5vw,4.5rem);overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.marquee__track{display:flex;gap:var(--gap);width:max-content;align-items:center;animation:scroll 38s linear infinite}
.marquee:hover .marquee__track{animation-play-state:paused}
@keyframes scroll{to{transform:translateX(calc(-50% - var(--gap)/2))}}
@media (prefers-reduced-motion:reduce){.marquee__track{animation:none;flex-wrap:wrap;justify-content:center;width:auto}}
.marquee__item{flex-shrink:0;height:54px;display:flex;align-items:center}
.marquee__item img{max-height:54px;width:auto;object-fit:contain;
  filter:grayscale(1) brightness(0) invert(1);opacity:.62;transition:opacity .3s,filter .3s}
.marquee:hover .marquee__item img{opacity:.62}
.marquee__item img:hover{opacity:1;filter:none}
.partner-names{display:flex;flex-wrap:wrap;gap:.55rem;justify-content:center;margin-top:2.4rem}
.partner-names span{font-size:.84rem;font-weight:600;color:#9fb6d2;padding:.4rem .85rem;
  border:1px solid rgba(255,255,255,.14);border-radius:999px}

/* =========================================================================
   News cards
   ========================================================================= */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(18px,2.4vw,30px)}
@media (max-width:880px){.news-grid{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.news-grid{grid-template-columns:1fr}}
.post{display:flex;flex-direction:column;background:#fff;border-radius:var(--r-md);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--sh-1);transition:transform .35s var(--ease),box-shadow .35s var(--ease)}
.post:hover{transform:translateY(-5px);box-shadow:var(--sh-2)}
.post__media{aspect-ratio:16/10;overflow:hidden;background:var(--navy-800)}
.post__media img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.post:hover .post__media img{transform:scale(1.05)}
.post__body{padding:1.5rem 1.5rem 1.7rem;display:flex;flex-direction:column;flex:1}
.post__meta{font-size:.78rem;letter-spacing:.04em;text-transform:uppercase;color:var(--teal-deep);font-weight:700}
.post h3{font-size:1.22rem;line-height:1.18;margin:.6rem 0 .7rem}
.post p{color:var(--ink-soft);font-size:.94rem;flex:1}
.post .link-more{margin-top:1.1rem}

/* ----- Featured post ----- */
.feature-post{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(1.5rem,4vw,3.5rem);align-items:center}
@media (max-width:820px){.feature-post{grid-template-columns:1fr}}
.feature-post__media{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-2);aspect-ratio:16/10}
.feature-post__media img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.feature-post:hover .feature-post__media img{transform:scale(1.04)}
.feature-post__body .post__meta{margin:.8rem 0 .4rem}
.feature-post__body h2{margin-bottom:.9rem;text-wrap:balance}
.feature-post__body p{color:var(--ink-soft)}

/* =========================================================================
   People / founders
   ========================================================================= */
.people{display:grid;gap:clamp(2rem,4vw,3.5rem)}
.person{display:grid;grid-template-columns:300px 1fr;gap:clamp(1.5rem,4vw,3rem);align-items:center}
.person--rev{grid-template-columns:1fr 300px}
.person--rev .person__photo{order:2}
@media (max-width:760px){.person{grid-template-columns:1fr;gap:1.4rem}.person--rev .person__photo{order:0}
  .person__photo{max-width:280px}}
.person__photo{position:relative;border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-3);aspect-ratio:4/4.6}
.person__photo img{width:100%;height:100%;object-fit:cover}
.person__photo::after{content:"";position:absolute;inset:0;box-shadow:inset 0 -60px 60px -30px rgba(7,16,32,.5)}
.person__role{font-size:.76rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-bright);font-weight:700}
.person h3{font-size:clamp(1.6rem,2.6vw,2.2rem);margin:.4rem 0 1rem}
.person p{color:#c4d6ec}

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band{position:relative;border-radius:var(--r-xl);overflow:hidden;isolation:isolate;
  padding:clamp(40px,6vw,80px);color:#fff;text-align:center}
.cta-band__media{position:absolute;inset:0;z-index:-2}
.cta-band__media img{width:100%;height:100%;object-fit:cover}
.cta-band::after{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(120deg,rgba(7,21,42,.92),rgba(12,42,82,.82) 50%,rgba(12,125,140,.7))}
.cta-band h2{font-size:clamp(2rem,4.4vw,3.4rem);margin-bottom:1rem;text-wrap:balance}
.cta-band p{max-width:54ch;margin-inline:auto;color:#dce8f6;font-size:1.1rem}
.cta-band .hero__actions{justify-content:center;margin-top:2rem}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer{background:var(--navy-950);color:#b9cae0;padding-block:clamp(48px,6vw,80px) 2rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:2.5rem 2rem}
@media (max-width:860px){.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.footer-grid{grid-template-columns:1fr}}
.footer-brand .brand{margin-bottom:1.1rem}
.footer-brand p{font-size:.94rem;max-width:38ch;color:#8ea7c4}
.footer-col h4{font-family:var(--sans);font-weight:800;font-size:.78rem;letter-spacing:.16em;
  text-transform:uppercase;color:#7d97b6;margin-bottom:1.1rem}
.footer-col ul{list-style:none;padding:0;margin:0;display:grid;gap:.7rem}
.footer-col a{color:#c2d3e8;font-weight:500;font-size:.96rem;transition:color .2s}
.footer-col a:hover{color:var(--teal-bright)}
.footer-bottom{display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;
  margin-top:3rem;padding-top:1.8rem;border-top:1px solid rgba(255,255,255,.1);font-size:.86rem;color:#7d97b6}
.footer-bottom a:hover{color:var(--teal-bright)}
.footer-note{font-size:.8rem;color:#6f88a6;max-width:60ch;margin-top:.4rem}

/* =========================================================================
   Interior page hero
   ========================================================================= */
.page-hero{position:relative;color:#fff;overflow:hidden;isolation:isolate;
  padding-block:clamp(130px,18vh,220px) clamp(40px,6vw,80px)}
.page-hero__media{position:absolute;inset:0;z-index:-2}
.page-hero__media img{width:100%;height:100%;object-fit:cover}
.page-hero::after{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(5,14,28,.8),rgba(5,14,28,.62) 42%,rgba(5,14,28,.92)),
             linear-gradient(90deg,rgba(5,14,28,.86),rgba(5,14,28,.5) 55%,rgba(5,14,28,.2) 88%)}
.page-hero--plain{background:linear-gradient(160deg,var(--navy-900),var(--navy-800) 60%,var(--teal-deep))}
.breadcrumb{font-size:.84rem;color:#aac2de;margin-bottom:1.1rem;font-weight:600}
.breadcrumb a:hover{color:var(--teal-bright)}
.breadcrumb .sep{opacity:.5;margin:0 .5em}
.page-hero h1{font-size:clamp(2.4rem,5.5vw,4.4rem);max-width:18ch;line-height:1}
.page-hero__sub{font-size:clamp(1.1rem,1.6vw,1.35rem);max-width:54ch;margin-top:1.2rem;color:#dce8f6;line-height:1.5}

/* =========================================================================
   Reveal animations (no-JS, capture & reduced-motion safe)
   ========================================================================= */
@keyframes reveal-up{from{transform:translateY(30px)}to{transform:translateY(0)}}
@media (prefers-reduced-motion:no-preference){
  html.js .reveal.is-in{animation:reveal-up .8s var(--ease) both}
  html.js .reveal.is-in[data-delay="1"]{animation-delay:.09s}
  html.js .reveal.is-in[data-delay="2"]{animation-delay:.18s}
  html.js .reveal.is-in[data-delay="3"]{animation-delay:.27s}
  html.js .reveal.is-in[data-delay="4"]{animation-delay:.36s}
}

/* utilities */
.mt-0{margin-top:0}
.mt-1{margin-top:1rem}
.mt-2{margin-top:2rem}
.mt-3{margin-top:3rem}
.mb-1{margin-bottom:1rem}
.maxw-sm{max-width:62ch}
.flex-actions{display:flex;flex-wrap:wrap;gap:.9rem;align-items:center}
.divider{height:1px;background:var(--line);border:0;margin:0}
.tag-row{display:flex;flex-wrap:wrap;gap:.5rem}
.tag{font-size:.78rem;font-weight:700;letter-spacing:.04em;padding:.35rem .8rem;border-radius:999px;
  background:rgba(22,180,198,.12);color:var(--teal-deep)}
.section--navy .tag,.section--ink .tag{background:rgba(58,215,223,.14);color:var(--teal-bright)}
.page-hero .tag{background:rgba(5,14,28,.55);color:var(--teal-bright)}

/* ----- Results / podium ----- */
.results-cols{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem;margin-top:1.6rem}
@media (max-width:520px){.results-cols{grid-template-columns:1fr}}
.results-title{font-family:var(--sans);font-weight:800;font-size:.78rem;letter-spacing:.12em;
  text-transform:uppercase;color:var(--teal-deep);margin-bottom:.8rem}
.section--navy .results-title,.section--ink .results-title{color:var(--teal-bright)}
.podium{list-style:none;margin:1rem 0 0;padding:0;display:grid;gap:.55rem}
.podium li{display:flex;align-items:center;gap:.8rem;font-weight:600;color:var(--ink);
  padding:.6rem .8rem;background:#fff;border:1px solid var(--line);border-radius:12px;font-size:.96rem}
.section--navy .podium li,.section--ink .podium li{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.12);color:#eaf2fc}
.section--sand .podium li{background:#fff}
.podium li span{flex-shrink:0;width:26px;height:26px;border-radius:50%;display:grid;place-items:center;
  font-family:var(--serif);font-size:.95rem;background:var(--gold);color:#23170a;font-weight:600}

/* ----- Topic grid (summit) ----- */
.topic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(14px,1.8vw,22px)}
@media (max-width:840px){.topic-grid{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.topic-grid{grid-template-columns:1fr}}
.topic{padding:clamp(20px,2.2vw,28px);border-radius:var(--r-md);background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);transition:transform .35s var(--ease),background .35s var(--ease);
  display:flex;flex-direction:column;gap:.55rem}
.topic:hover{transform:translateY(-4px);background:rgba(255,255,255,.08)}
.topic h3{font-size:1.14rem;line-height:1.22;color:#fff;text-wrap:balance}
.topic p{color:#bcd0e8;font-size:.92rem;line-height:1.5}
.topic--light{background:#fff;border-color:var(--line);box-shadow:var(--sh-1)}
.topic--light:hover{background:#fff;box-shadow:var(--sh-2)}
.topic--light h3{color:var(--ink)}
.topic--light p{color:var(--ink-soft)}

/* ----- School chips ----- */
.school-chips{display:flex;flex-wrap:wrap;gap:.7rem;justify-content:center;max-width:880px;margin-inline:auto}
.school-chips span{font-weight:600;color:var(--ink);font-size:.95rem;padding:.6rem 1.1rem;
  background:#fff;border:1px solid var(--line);border-radius:999px;box-shadow:var(--sh-1);transition:transform .25s var(--ease),border-color .25s}
.school-chips span:hover{transform:translateY(-3px);border-color:var(--teal)}

/* ----- Gallery (lightbox) ----- */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(12px,1.6vw,20px)}
@media (max-width:680px){.gallery{grid-template-columns:1fr 1fr}}
.gallery a{display:block;border-radius:var(--r-md);overflow:hidden;aspect-ratio:3/2;box-shadow:var(--sh-1);position:relative}
.gallery img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.gallery a:hover img{transform:scale(1.06)}
.gallery a::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(7,16,32,.25),transparent 50%);opacity:0;transition:opacity .3s}
.gallery a:hover::after{opacity:1}

/* ----- Year block (program recaps) ----- */
.year-block{display:grid;grid-template-columns:1fr;gap:clamp(1.6rem,3vw,2.4rem)}
.year-head{display:flex;flex-wrap:wrap;align-items:baseline;gap:.8rem 1.2rem;padding-bottom:1.2rem;
  border-bottom:1px solid var(--line)}
.year-head .yr{font-family:var(--serif);font-size:clamp(2.2rem,4vw,3.2rem);line-height:1;color:var(--teal-deep)}
.section--navy .year-head .yr,.section--ink .year-head .yr{color:var(--teal-bright)}
.year-head h2{font-size:clamp(1.3rem,2.2vw,1.7rem)}
.sponsor-list{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1rem}
.sponsor-list span{font-size:.82rem;font-weight:600;color:var(--ink-soft);padding:.4rem .85rem;
  border:1px solid var(--line);border-radius:999px;background:#fff}
.section--sand .sponsor-list span{background:var(--paper)}

/* ----- Prose (article body) ----- */
.prose{max-width:70ch}
.prose h2{font-size:clamp(1.5rem,2.6vw,2rem);margin:2.4rem 0 1rem}
.prose h3{font-size:1.25rem;margin:1.8rem 0 .6rem;color:var(--ink)}
.prose p{margin-bottom:1.1rem;color:var(--ink-soft)}
.prose strong{color:var(--ink)}
.prose ul{margin:0 0 1.4rem;padding:0;list-style:none;display:grid;gap:.9rem}
.prose ul li{display:flex;gap:.7rem;align-items:flex-start;color:var(--ink-soft)}
.prose ul li::before{content:"";flex-shrink:0;width:8px;height:8px;margin-top:.55em;border-radius:50%;background:var(--teal)}
.lead-para{font-size:clamp(1.15rem,1.8vw,1.4rem);line-height:1.5;color:var(--ink);font-family:var(--serif);font-weight:400;margin-bottom:1.6rem}

/* ----- Speaker themes (summit) ----- */
.speaker-theme{padding-block:clamp(28px,4vw,48px);border-top:1px solid rgba(255,255,255,.12)}
.speaker-theme:first-child{border-top:0;padding-top:0}
.speaker-theme__head{margin-bottom:1.6rem}
.speaker-theme__head .eyebrow{margin-bottom:.7rem}
.speaker-theme__head h2{color:#fff}
.speaker-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.4rem,3vw,2.4rem)}
@media (max-width:680px){.speaker-grid{grid-template-columns:1fr}}
.speaker{display:flex;flex-direction:column;gap:.5rem;padding-left:1.2rem;border-left:2px solid var(--teal-bright)}
.speaker h3{font-size:1.15rem;color:#fff}
.speaker p{color:#bcd0e8;font-size:.95rem;line-height:1.55}

/* =========================================================================
   Forms (contact / registration) â added for PTCG production build
   ========================================================================= */
.form-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4rem);align-items:start}
@media (max-width:860px){.form-grid{grid-template-columns:1fr;gap:2.2rem}}
.form-aside .lede{margin-bottom:1.4rem}
.form-aside .tick{margin-top:1.4rem}
.form{display:grid;gap:1.15rem;max-width:660px}
.form .field{display:grid;gap:.45rem}
.form label{font-family:var(--sans);font-weight:700;color:var(--ink);font-size:.95rem}
.form .req{color:#c0392b}
.form .hint{font-size:.85rem;color:var(--muted);font-weight:400}
.form input,.form select,.form textarea{font:inherit;color:var(--ink);padding:.8rem .9rem;
  border:1.5px solid var(--line-cool);border-radius:var(--r-sm);background:#fff;width:100%;
  transition:border-color .2s,box-shadow .2s}
.form textarea{min-height:130px;resize:vertical}
.form input:focus,.form select:focus,.form textarea:focus{outline:none;border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(22,180,198,.18)}
.form .field--check{grid-template-columns:auto 1fr;align-items:start;gap:.7rem}
.form .field--check input{width:auto;margin-top:.3rem}
.hp-field{position:absolute !important;left:-9999px;width:1px;height:1px;overflow:hidden}
.form__note{font-size:.85rem;color:var(--muted)}
.alert{padding:1rem 1.2rem;border-radius:var(--r-md);margin-bottom:1.4rem;font-weight:500}
.alert--ok{background:#e9f8ef;border:1px solid #b9e6c9;color:#1b5e34}
.alert--err{background:#fdecea;border:1px solid #f3c2bd;color:#8a241c}
.alert ul{margin:.4rem 0 0 1.1rem}

/* ----- Post article (individual news pages) ----- */
.post-article{max-width:760px;margin-inline:auto}
.post-article .post__meta{font-size:.82rem;display:flex;flex-wrap:wrap;gap:.5rem;align-items:center;margin-bottom:1.2rem}
.post-article .post__meta .sep{color:var(--line-cool);text-transform:none}
.post-figure{margin:0 0 2rem}
.post-figure img{width:100%;border-radius:var(--r-lg);box-shadow:var(--sh-2)}
.post-figure figcaption{font-size:.85rem;color:var(--muted);margin-top:.6rem;text-align:center}
.post-embed{margin:1.6rem 0}
.post-embed a{font-weight:700;color:var(--royal);display:inline-flex;align-items:center;gap:.4em}
.post-embed a:hover{color:var(--teal-deep)}
.post-gallery{margin-top:2rem}

/* =========================================================================
   Donation homepage (index.html) — donation-focused community-impact build.
   Scoped .dh-* / .give-* components; reuses tokens, .eyebrow, .btn, footer,
   reveal system, .marquee, and the shared .site-header. Content max-width
   1480px per the design handoff (the rest of the site is full-width).
   ========================================================================= */
.dh-wrap{width:100%;max-width:1480px;margin-inline:auto;padding-inline:clamp(20px,4vw,56px)}
.dh-sec{padding-block:clamp(80px,9vw,140px)}

/* --- Hero + giving widget --- */
.dh-hero{position:relative;min-height:100svh;display:flex;align-items:center;color:#fff;
  overflow:hidden;isolation:isolate}
.dh-hero__bg{position:absolute;inset:0;z-index:-2;overflow:hidden}
.dh-hero__bg img{width:100%;height:100%;object-fit:cover;transform:scale(1.12);animation:dh-kb 20s ease-out both}
@keyframes dh-kb{to{transform:scale(1)}}
@media (prefers-reduced-motion:reduce){.dh-hero__bg img{animation:none;transform:none}}
.dh-hero__scrim{position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(6,18,38,.62),rgba(6,18,38,.25) 38%,rgba(6,18,38,.78)),
             linear-gradient(90deg,rgba(6,18,38,.82),rgba(6,18,38,.25) 55%,rgba(6,18,38,.55))}
.dh-hero__grid{display:grid;grid-template-columns:1.25fr .75fr;gap:clamp(40px,5vw,90px);
  align-items:center;padding-block:140px 90px;width:100%}
.dh-pill{display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.25);backdrop-filter:blur(6px);color:#fff;
  font-size:.82rem;font-weight:600;padding:8px 16px;border-radius:999px;margin-bottom:28px;transition:background .2s}
.dh-pill:hover{background:rgba(255,255,255,.18)}
.dh-pill .dot{width:8px;height:8px;border-radius:50%;background:var(--teal-bright);flex-shrink:0}
.dh-hero h1{font-family:var(--serif);font-weight:500;font-size:clamp(3.2rem,6.6vw,6.4rem);
  line-height:.98;letter-spacing:-.02em;max-width:13ch;text-shadow:0 4px 40px rgba(0,0,0,.4);text-wrap:balance}
.dh-hero h1 em{font-style:italic;color:var(--gold-bright)}
.dh-hero__sub{font-size:clamp(1.1rem,1.6vw,1.35rem);line-height:1.55;color:#dce8f6;max-width:50ch;margin-top:1.6rem}
.dh-hero__row{display:flex;align-items:center;gap:26px;margin-top:2.4rem;flex-wrap:wrap}
.dh-ulink{display:inline-flex;align-items:center;gap:.6em;color:#fff;font-weight:700;font-size:1.02rem;
  border-bottom:2px solid var(--teal-bright);padding-bottom:4px;transition:border-color .2s}
.dh-ulink:hover{border-bottom-color:#fff}
.dh-hero__tagline{font-size:.9rem;color:#aac2de;font-weight:600}

/* --- Giving widget --- */
.give{background:#fff;border-radius:24px;padding:clamp(24px,2vw,34px);
  box-shadow:0 40px 90px -30px rgba(3,12,26,.8);display:flex;flex-direction:column;gap:18px;
  max-width:430px;justify-self:end;width:100%;color:var(--ink)}
.give__head{display:flex;flex-direction:column;gap:4px}
.give__title{font-family:var(--serif);font-size:1.5rem;color:var(--ink)}
.give__subtitle{font-size:.86rem;color:var(--muted)}
.give__freq{display:grid;grid-template-columns:1fr 1fr;gap:5px;background:#eef2f7;padding:5px;border-radius:999px}
.give__freq button{border:0;cursor:pointer;padding:11px 0;border-radius:999px;font-family:var(--sans);
  font-size:.92rem;font-weight:700;background:transparent;color:var(--muted);transition:background .2s,color .2s}
.give__freq button[aria-pressed="true"]{background:var(--navy-900);color:#fff;box-shadow:0 1px 3px rgba(8,24,46,.3)}
.give__amounts{display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px}
.give__chip{cursor:pointer;padding:14px 0;border-radius:12px;font-family:var(--sans);font-size:1.05rem;
  font-weight:800;background:#fff;color:var(--ink);border:1.5px solid var(--line-cool);
  transition:border-color .2s,background .2s,color .2s}
.give__chip[aria-pressed="true"]{background:var(--navy-900);color:#fff;border-color:var(--navy-900)}
.give__other{display:flex;align-items:center;gap:6px;border:1.5px solid var(--line-cool);border-radius:12px;
  padding:0 12px;background:#fff;transition:border-color .2s}
.give__other.is-active{border-color:var(--navy-900)}
.give__other .cur{font-size:1rem;font-weight:800;color:var(--muted)}
.give__other input{border:0;outline:none;width:100%;min-width:0;padding:14px 0;font-family:var(--sans);
  font-size:1rem;font-weight:700;color:var(--ink);background:transparent}
.give__other:focus-within{border-color:var(--navy-900);box-shadow:0 0 0 3px rgba(22,180,198,.25)}
.give__cta{text-align:center;background:var(--gold);color:#23170a;font-family:var(--sans);font-size:1.06rem;
  font-weight:800;padding:16px 0;border-radius:999px;box-shadow:0 14px 28px -12px rgba(245,166,35,.8);
  transition:transform .25s,background .25s}
.give__cta:hover{background:var(--gold-bright);transform:translateY(-2px)}
.give__fine{font-size:.76rem;line-height:1.5;color:#5c6b7d;text-align:center}

/* --- Proof strip (static) --- */
.dh-proof{background:var(--navy-950);border-top:1px solid rgba(255,255,255,.1)}
.dh-proof__row{display:flex;flex-wrap:wrap;gap:18px 56px;align-items:baseline;justify-content:space-between;padding-block:26px}
.dh-proof__item{color:#aac2de;font-size:.9rem;font-weight:600}
.dh-proof__item b{font-family:var(--serif);font-weight:500;font-size:1.5rem;color:var(--gold-bright);margin-right:8px}

/* --- Mission --- */
.dh-mission{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(40px,6vw,100px);align-items:center}
@media (max-width:860px){.dh-mission{grid-template-columns:1fr;gap:2rem}}
.dh-statement{font-family:var(--serif);font-weight:400;font-size:clamp(2rem,3.8vw,3.3rem);
  line-height:1.14;letter-spacing:-.015em;max-width:21ch;text-wrap:balance}
.dh-statement .hl{color:var(--teal-deep)}
.dh-mission__aside p{color:var(--ink-soft);line-height:1.65;margin-bottom:1.1rem}
.dh-mission__aside p:last-of-type{margin-bottom:1.6rem}
.dh-mission__aside strong{color:var(--ink)}
.dh-textlink{display:inline-flex;align-items:center;gap:.45em;font-weight:700;color:var(--royal);font-size:.98rem;transition:color .2s}
.dh-textlink:hover{color:var(--teal-deep)}

/* --- Gift levels --- */
.dh-gifts{display:grid;grid-template-columns:1fr 1fr 1fr;gap:clamp(18px,2.4vw,30px)}
@media (max-width:760px){.dh-gifts{grid-template-columns:1fr}}
.gift{display:flex;flex-direction:column;border-radius:24px;overflow:hidden;background:#fff;
  border:1px solid var(--line);box-shadow:var(--sh-1);transition:transform .35s var(--ease),box-shadow .35s var(--ease)}
.gift:hover{transform:translateY(-6px);box-shadow:0 30px 70px -28px rgba(8,24,46,.42)}
.gift__img{aspect-ratio:16/10;overflow:hidden}
.gift__img img{width:100%;height:100%;object-fit:cover}
.gift__body{padding:26px 26px 30px;display:flex;flex-direction:column;gap:8px;flex:1}
.gift__amt{font-family:var(--serif);font-size:2.6rem;line-height:1;color:var(--teal-deep)}
.gift__title{font-family:var(--sans);font-size:1.1rem;font-weight:800;color:var(--ink);margin-top:4px}
.gift__desc{color:var(--ink-soft);font-size:.95rem;line-height:1.55;flex:1}
.gift__link{margin-top:12px;font-weight:800;color:var(--royal);font-size:.98rem;
  display:inline-flex;align-items:center;gap:.4em;transition:color .2s}
.gift__link:hover{color:var(--teal-deep)}

/* --- Programs editorial index --- */
.dh-programs{background:linear-gradient(180deg,var(--navy-950),var(--navy-900))}
.prow{display:grid;grid-template-columns:90px 1fr 220px 40px;gap:clamp(16px,3vw,44px);align-items:center;
  padding:clamp(22px,2.6vw,36px) 12px;border-top:1px solid rgba(255,255,255,.14);transition:background .3s;color:#fff}
.prow:last-child{border-bottom:1px solid rgba(255,255,255,.14)}
.prow:hover{background:rgba(255,255,255,.05)}
.prow__num{font-family:var(--serif);font-size:1.6rem;color:var(--gold)}
.prow__txt{display:flex;flex-direction:column;gap:6px}
.prow__kicker{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--teal-bright);font-weight:700}
.prow__title{font-family:var(--serif);font-size:clamp(1.5rem,2.4vw,2.1rem);line-height:1.1}
.prow__desc{color:#bcd0e8;font-size:.96rem;line-height:1.5;max-width:56ch}
.prow__thumb{border-radius:14px;overflow:hidden;aspect-ratio:16/10;box-shadow:0 12px 30px -12px rgba(0,0,0,.5)}
.prow__thumb img{width:100%;height:100%;object-fit:cover}
.prow__arrow{color:var(--teal-bright);font-size:1.5rem;justify-self:end}
@media (max-width:760px){
  .prow{grid-template-columns:54px 1fr 32px;gap:16px}
  .prow__thumb{display:none}
}

/* --- Quote (home, sand) --- */
.dh-quote{display:grid;grid-template-columns:1.25fr .75fr;gap:clamp(40px,5vw,80px);align-items:center}
@media (max-width:860px){.dh-quote{grid-template-columns:1fr}}
.dh-quote__mark{font-family:var(--serif);font-size:6rem;line-height:.6;color:var(--teal-deep);opacity:.45;height:.5em}
.dh-quote blockquote{margin:0;font-family:var(--serif);font-size:clamp(1.7rem,3.2vw,2.8rem);
  line-height:1.18;letter-spacing:-.01em;color:var(--ink);text-wrap:pretty}
.dh-quote figcaption{margin-top:1.6rem;color:var(--muted);font-size:.95rem;font-weight:600}
.dh-quote__media{border-radius:24px;overflow:hidden;box-shadow:0 30px 70px -28px rgba(8,24,46,.42);aspect-ratio:4/3}
.dh-quote__media img{width:100%;height:100%;object-fit:cover}

/* --- Community photo wall --- */
.dh-wall__head{display:flex;align-items:flex-end;justify-content:space-between;gap:32px;flex-wrap:wrap;margin-bottom:clamp(36px,4vw,56px)}
.dh-wall__head .section-head,.dh-wall__head>div:first-child{max-width:62ch}
.dh-wall__grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:clamp(160px,16vw,250px);gap:clamp(12px,1.4vw,20px)}
.dh-tile{border-radius:20px;overflow:hidden;position:relative}
.dh-tile img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.dh-tile:hover img{transform:scale(1.05)}
.dh-tile--big{grid-column:span 2;grid-row:span 2}
.dh-tile--wide{grid-column:span 2}
.dh-tile--big:hover img,.dh-tile--wide:hover img{transform:scale(1.04)}
.dh-cap{position:absolute;left:14px;bottom:14px;background:rgba(6,22,44,.75);backdrop-filter:blur(6px);
  color:#fff;font-size:.8rem;font-weight:600;padding:6px 12px;border-radius:999px}
@media (max-width:760px){
  .dh-wall__grid{grid-template-columns:repeat(2,1fr)}
  .dh-tile--big{grid-row:span 1}
}

/* --- Monthly giving --- */
.dh-monthly{background:linear-gradient(135deg,var(--navy-900),var(--navy-800) 55%,var(--teal-deep))}
.dh-monthly__inner{max-width:900px;margin-inline:auto;text-align:center;color:#fff}
.dh-monthly__inner .eyebrow{color:var(--teal-bright);justify-content:center;margin-bottom:1.2rem}
.dh-monthly__inner .eyebrow::before{display:none}
.dh-monthly h2{font-family:var(--serif);font-weight:500;font-size:clamp(2.2rem,4.6vw,3.8rem);
  line-height:1.05;letter-spacing:-.012em;margin:0 0 1.2rem;text-wrap:balance}
.dh-monthly h2 em{font-style:italic;color:var(--gold-bright)}
.dh-monthly__copy{max-width:56ch;margin:0 auto 2.2rem;font-size:clamp(1.02rem,1.5vw,1.2rem);line-height:1.6;color:#dce8f6}
.dh-monthly__btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* --- Partners section --- */
.dh-partners{background:var(--navy-950);padding-block:clamp(64px,7vw,100px)}
.dh-programs .eyebrow,.dh-partners .eyebrow{color:var(--teal-bright)}
.dh-partners .lede{color:#bcd0e8;margin-inline:auto}
.dh-partners h2{color:#fff}
.dh-programs h2{color:#fff}

/* --- Partners marquee (white chips; logos with opaque white bgs can't be inverted) --- */
.marquee--chips .marquee__item{height:72px}
.marquee--chips .marquee__item img{max-height:none;height:48px;width:auto;object-fit:contain;
  background:#fff;padding:12px 22px;border-radius:14px;filter:grayscale(1);opacity:1}
.marquee--chips .marquee__item img:hover{filter:grayscale(1);opacity:1}
.marquee--chips .marquee__item--sm img{height:32px;padding:20px 22px}
/* under reduced motion the track wraps static — show one set, hide the loop dupes */
@media (prefers-reduced-motion:reduce){.marquee__item--dup{display:none}}

/* --- Final closing CTA (full-bleed photo, no button) --- */
.dh-final{position:relative;isolation:isolate;overflow:hidden;color:#fff}
.dh-final__bg{position:absolute;inset:0;z-index:-2}
.dh-final__bg img{width:100%;height:100%;object-fit:cover}
.dh-final__scrim{position:absolute;inset:0;z-index:-1;
  background:linear-gradient(120deg,rgba(7,21,42,.93),rgba(12,42,82,.84) 50%,rgba(12,125,140,.72))}
.dh-final__inner{max-width:900px;margin-inline:auto;text-align:center;padding-block:clamp(90px,11vw,160px)}
.dh-final h2{font-family:var(--serif);font-weight:500;font-size:clamp(2.4rem,5vw,4.2rem);
  line-height:1.02;letter-spacing:-.015em;margin:0 0 1.1rem;text-wrap:balance}
.dh-final h2 em{font-style:italic;color:var(--gold-bright)}
.dh-final p{max-width:54ch;margin-inline:auto;color:#dce8f6;font-size:clamp(1.05rem,1.5vw,1.2rem);line-height:1.6}

/* --- Hero responsive: widget drops below headline, centered --- */
@media (max-width:860px){
  .dh-hero__grid{grid-template-columns:1fr;gap:36px;padding-block:120px 60px}
  .give{justify-self:center;margin-inline:auto}
}
/* --- Proof strip wraps to a clean 2×2 on narrow screens --- */
@media (max-width:760px){
  .dh-proof__row{justify-content:space-between;gap:16px 20px}
  .dh-proof__item{flex:0 0 calc(50% - 10px)}
}
