/* ============================================================
   DSA SITE — shared design system (v2)
   Single source of truth for the new light, photo-led template.
   Linked by every page so the look stays consistent and global
   tweaks (colours, the anchor eyebrow, etc.) are one edit here.
   ============================================================ */

/* ─── TOKENS ─── */
:root{
  --navy:#0B2236;
  --ink:#16242F;
  --slate:#475563;
  --cream:#FBF8F1;
  --cream-2:#F2ECDE;
  --white:#fff;
  --teal-700:#0C5A47;
  --teal:#0F6E56;
  --teal-soft:#E4F2EC;
  --line:rgba(11,34,54,0.12);
  --line-soft:rgba(11,34,54,0.08);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter Tight',system-ui,sans-serif;
  background:var(--cream);
  color:var(--ink);
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
h1,h2,h3,h4{font-family:'Fraunces',serif;font-weight:500;letter-spacing:-0.02em;line-height:1.08;color:var(--navy)}
.container{max-width:1120px;margin:0 auto;padding:0 1.75rem}
.prose{max-width:760px}
.prose p{margin-bottom:1.1rem;color:var(--slate);font-size:1.0625rem}
.prose p strong{color:var(--ink);font-weight:600}

/* ─── ELEMENTS ─── */
.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  font-size:0.8125rem;font-weight:600;letter-spacing:0.13em;text-transform:uppercase;
  color:var(--teal);margin-bottom:1rem;
}
.eyebrow::before{content:'';width:20px;height:20px;flex-shrink:0;background-color:currentColor;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='4' r='2'/%3E%3Cpath d='M12 6v14'/%3E%3Cpath d='M8 9.5h8'/%3E%3Cpath d='M4.5 13a7.5 7.5 0 0 0 15 0'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='4' r='2'/%3E%3Cpath d='M12 6v14'/%3E%3Cpath d='M8 9.5h8'/%3E%3Cpath d='M4.5 13a7.5 7.5 0 0 0 15 0'/%3E%3C/svg%3E") center/contain no-repeat}
.eyebrow.on-dark{color:#fff}
.eyebrow.on-dark::before{background-color:#fff}
.eyebrow.center{justify-content:center}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-family:'Inter Tight',sans-serif;font-size:1rem;font-weight:600;
  padding:14px 28px;border-radius:8px;border:2px solid transparent;cursor:pointer;
  transition:background .15s,border-color .15s,color .15s,transform .15s;line-height:1;
  min-height:48px;
}
.btn svg{width:1.05em;height:1.05em}
.btn-primary{background:var(--teal);color:#fff}
.btn-primary:hover{background:var(--teal-700)}
.btn-white{background:#fff;color:var(--navy)}
.btn-white:hover{background:#ECE7DB}
.btn-outline{background:transparent;color:var(--navy);border-color:var(--line)}
.btn-outline:hover{border-color:var(--navy);background:rgba(11,34,54,0.04)}
.btn-ghost{background:rgba(255,255,255,0.08);color:#fff;border-color:rgba(255,255,255,0.55)}
.btn-ghost:hover{background:rgba(255,255,255,0.16);border-color:#fff}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:#143049}

.tlink{
  display:inline-flex;align-items:center;gap:7px;
  font-weight:600;color:var(--teal);border-bottom:2px solid var(--teal-soft);
  padding-bottom:3px;transition:border-color .15s;font-size:1rem;
}
.tlink:hover{border-color:var(--teal)}
.tlink svg{width:1em;height:1em}

section{position:relative}
.sec-pad{padding:clamp(3.5rem,7vw,6rem) 0}

/* ─── SKIP NAV ─── */
.skip-nav{position:absolute;top:-100px;left:1rem;background:var(--teal);color:#fff;padding:12px 22px;border-radius:0 0 8px 8px;font-size:15px;font-weight:600;z-index:9999;transition:top .2s}
.skip-nav:focus{top:0}

/* ─── NAV ─── */
.nav{
  display:flex;align-items:center;gap:1.5rem;
  padding:0.85rem 1.75rem;background:rgba(255,255,255,0.92);
  position:sticky;top:0;z-index:100;border-bottom:1px solid var(--line-soft);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
}
.nav-logo{display:flex;align-items:center;gap:11px;flex-shrink:0}
.nav-mark{width:42px;height:42px;border-radius:50%;overflow:hidden;background:#fff;border:1px solid var(--line);flex-shrink:0}
.nav-mark img{width:100%;height:100%;object-fit:cover;clip-path:circle(43% at 50% 50%);transform:scale(1.6)}
.nav-name{font-family:'Fraunces',serif;font-size:15px;font-weight:600;color:var(--navy);line-height:1.05}
.nav-name span{display:block;font-weight:400;font-size:10.5px;color:var(--slate);letter-spacing:0.12em;text-transform:uppercase;font-family:'Inter Tight',sans-serif;margin-top:2px}
.nav-links{display:flex;align-items:center;gap:1.4rem;list-style:none;margin-left:auto}
.nav-links a{color:var(--ink);font-size:15px;font-weight:500;transition:color .15s;white-space:nowrap}
.nav-links a:hover{color:var(--teal)}
.nav-item{position:relative}
.nav-item>a{display:inline-flex;align-items:center;gap:4px;cursor:pointer}
.nav-item>a .caret{width:11px;height:11px;transition:transform .2s;flex-shrink:0}
.nav-item:hover>a .caret,.nav-item.open>a .caret{transform:rotate(180deg)}
@media (hover:hover) and (min-width:1025px){.nav-item::after{content:'';position:absolute;top:100%;left:-30px;right:-30px;height:16px}}
.nav-dropdown{display:none;position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%);background:#fff;border:1px solid var(--line);border-radius:10px;padding:6px;min-width:200px;box-shadow:0 12px 34px rgba(11,34,54,0.14);z-index:200;list-style:none}
.nav-item:hover .nav-dropdown,.nav-item.open .nav-dropdown{display:block}
.nav-dropdown a{display:block;padding:9px 13px;color:var(--ink)!important;font-size:14px!important;border-radius:6px;white-space:nowrap}
.nav-dropdown a:hover{background:var(--teal-soft);color:var(--teal)!important}
.nav-donate-pill{background:var(--teal);color:#fff;font-family:'Inter Tight',sans-serif;font-size:15px;font-weight:600;padding:10px 22px;border-radius:8px;white-space:nowrap;transition:background .15s}
.nav-donate-pill:hover{background:var(--teal-700)}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;border-radius:8px;flex-direction:column;gap:5px;z-index:200}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--navy);border-radius:2px;transition:transform .25s,opacity .2s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ─── HERO (homepage video hero) ─── */
.hero{position:relative;min-height:clamp(520px,80vh,720px);display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;background:var(--navy)}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 25%;z-index:0}
.hero-scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(11,34,54,0.30) 0%,rgba(11,34,54,0.10) 32%,rgba(11,34,54,0.55) 72%,rgba(11,34,54,0.88) 100%)}
.hero-content{position:relative;z-index:3;padding:clamp(2rem,5vw,4rem) 1.75rem;max-width:1120px;margin:0 auto;width:100%}
.hero-inner{max-width:680px}
.hero h1{font-size:clamp(2.6rem,6vw,4.2rem);font-weight:500;color:#fff;letter-spacing:-0.03em;margin-bottom:1.4rem;text-shadow:0 2px 24px rgba(0,0,0,0.25)}
.hero h1 span{color:#fff;font-style:italic;font-weight:400}
.hero-sub{font-size:clamp(1.05rem,1.6vw,1.2rem);color:rgba(255,255,255,0.92);line-height:1.6;max-width:540px;margin-bottom:2rem}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.hero-badge{position:absolute;z-index:3;bottom:clamp(2rem,5vw,4rem);right:1.75rem;display:flex;align-items:center;gap:11px;background:#fff;border-radius:12px;padding:12px 16px;box-shadow:0 8px 28px rgba(0,0,0,0.22);max-width:280px}
.hero-badge svg.lead{width:24px;height:24px;color:var(--teal);flex-shrink:0}
.hero-badge-text{font-size:14px;font-weight:600;color:var(--navy);line-height:1.25}
.hero-badge-text span{display:block;font-weight:400;font-size:12.5px;color:var(--slate);margin-top:1px}
.hero-badge svg.arrow{width:16px;height:16px;color:var(--slate);flex-shrink:0;margin-left:2px}

/* ─── PAGE HERO (compact interior-page header) ─── */
.page-hero{position:relative;background:var(--navy);color:#fff;overflow:hidden}
.page-hero-media{position:absolute;inset:0;z-index:0}
.page-hero-media img{width:100%;height:100%;object-fit:cover}
.page-hero-media::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,34,54,0.55) 0%,rgba(11,34,54,0.72) 100%)}
.page-hero-inner{position:relative;z-index:2;max-width:1120px;margin:0 auto;padding:clamp(3rem,7vw,5rem) 1.75rem}
.page-hero .eyebrow{color:#fff}
.page-hero .eyebrow::before{background-color:#fff}
.page-hero h1{color:#fff;font-size:clamp(2.3rem,5vw,3.6rem);font-weight:500;letter-spacing:-0.025em;max-width:18ch;margin-bottom:1rem}
.page-hero h1 span{font-style:italic;font-weight:400}
.page-hero-sub{font-size:clamp(1.05rem,1.6vw,1.2rem);color:rgba(255,255,255,0.9);line-height:1.6;max-width:60ch}
.breadcrumb{display:flex;gap:8px;align-items:center;font-size:13px;color:rgba(255,255,255,0.6);margin-bottom:1.25rem;flex-wrap:wrap}
.breadcrumb a{color:rgba(255,255,255,0.6)}
.breadcrumb a:hover{color:#fff}
.breadcrumb span{color:rgba(255,255,255,0.35)}

/* ─── ACCESS STRIP ─── */
.access-strip{background:var(--navy);color:#fff}
.access-grid{display:grid;grid-template-columns:repeat(5,1fr);max-width:1120px;margin:0 auto}
.access-cell{padding:1.4rem 0.9rem;display:flex;flex-direction:column;align-items:center;gap:9px;text-align:center;border-right:1px solid rgba(255,255,255,0.1)}
.access-cell:last-child{border-right:none}
.access-cell svg{width:26px;height:26px;color:#fff;flex-shrink:0}
.access-cell span{font-size:13.5px;color:rgba(255,255,255,0.88);line-height:1.4;font-weight:500}

/* ─── WHO ─── */
.who{background:var(--white)}
.who-top{display:grid;grid-template-columns:0.9fr 1.1fr;gap:3.5rem;align-items:center}
.who h2{font-size:clamp(1.9rem,3.5vw,2.7rem)}
.who h2 span{color:var(--teal)}
.impact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:clamp(2.5rem,5vw,3.5rem)}
.impact-grid>div{background:var(--cream);border-radius:18px;padding:1.85rem 1.25rem;text-align:center}
.impact-num{font-family:'Fraunces',serif;font-size:clamp(1.9rem,3.4vw,2.6rem);font-weight:500;color:var(--navy);line-height:1.05;letter-spacing:-0.005em;display:block;margin-bottom:0.55rem}
.impact-num em{font-style:normal;color:var(--teal);font-size:0.5em;vertical-align:0.42em;margin-left:0.03em}
.impact-label{font-size:15px;color:var(--slate);line-height:1.5}
.stat-rows{display:flex;flex-direction:column;margin-top:0.4rem}
.stat-row{display:flex;justify-content:space-between;align-items:baseline;gap:1.25rem;padding:0.75rem 0;border-bottom:1px solid var(--line)}
.stat-row:last-child{border-bottom:0;padding-bottom:0}
.stat-label{font-size:15px;color:var(--slate);line-height:1.4}
.stat-value{font-family:'Fraunces',serif;font-size:1.45rem;font-weight:500;color:var(--navy);line-height:1.05;letter-spacing:-0.01em;text-align:right;flex-shrink:0}
.stat-value em{font-style:normal;color:var(--teal);font-size:0.55em;vertical-align:0.32em;margin-left:0.12em}
.stat-value-text{font-size:1.0625rem;line-height:1.3}

/* ─── CONTENT (generic interior body) ─── */
.content{background:var(--cream)}
.content .container{max-width:920px}
.content-prose{max-width:760px}
.content-prose h2{font-size:clamp(1.6rem,3vw,2.2rem);margin:2.5rem 0 1rem}
.content-prose h2:first-child{margin-top:0}
.content-prose h3{font-size:1.3rem;margin:1.75rem 0 0.6rem;color:var(--navy)}
.content-prose p{margin-bottom:1.1rem;color:var(--slate);font-size:1.0625rem}
.content-prose p strong{color:var(--ink);font-weight:600}
.content-prose ul,.content-prose ol{margin:0 0 1.2rem 1.25rem;color:var(--slate)}
.content-prose li{margin-bottom:0.5rem;padding-left:0.25rem}
.content-prose a{color:var(--teal);text-decoration:underline;text-underline-offset:2px}
.content-prose a:hover{color:var(--teal-700)}
.content-prose blockquote{border-left:3px solid var(--teal);padding:0.25rem 0 0.25rem 1.25rem;margin:1.5rem 0;font-family:'Fraunces',serif;font-size:1.2rem;color:var(--navy);line-height:1.45}
.content-prose hr{border:none;border-top:1px solid var(--line);margin:2.5rem 0}

/* ─── CARDS / GRIDS (reusable) ─── */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.card{background:#fff;border-radius:16px;padding:1.75rem;border:1px solid var(--line-soft);box-shadow:0 2px 14px rgba(11,34,54,0.05)}
.card h3{font-size:1.3rem;margin-bottom:0.5rem}
.card p{font-size:15.5px;color:var(--slate);line-height:1.55}
.card-img{width:100%;height:220px;border-radius:12px;overflow:hidden;margin-bottom:1.1rem;background:var(--cream-2)}
.card-img img{width:100%;height:100%;object-fit:cover}

/* ─── PEOPLE (team / patrons) ─── */
.people-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem}
.person{background:#fff;border-radius:16px;overflow:hidden;border:1px solid var(--line-soft);box-shadow:0 2px 14px rgba(11,34,54,0.05)}
.person-img{width:100%;aspect-ratio:1/1;overflow:hidden;background:var(--cream-2)}
.person-img img{width:100%;height:100%;object-fit:cover}
.person-body{padding:1.25rem 1.4rem 1.5rem}
.person-name{font-family:'Fraunces',serif;font-size:1.25rem;font-weight:500;color:var(--navy);line-height:1.15}
.person-role{font-size:14px;color:var(--teal);font-weight:600;margin-top:3px;text-transform:uppercase;letter-spacing:0.06em}
.person-bio{font-size:15px;color:var(--slate);line-height:1.55;margin-top:0.75rem}

/* ─── PHOTO STRIP (interior) ─── */
.photo-strip{background:var(--cream)}
.photo-strip-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0.85rem;max-width:1120px;margin:0 auto;padding:0 1.75rem}
.photo-strip-grid .ps{aspect-ratio:4/5;border-radius:12px;overflow:hidden;background:var(--cream-2)}
.photo-strip-grid .ps img{width:100%;height:100%;object-fit:cover}

/* ─── FIGURE (image + caption, for media rows) ─── */
.media-row{display:grid;grid-template-columns:1.3fr 1fr;gap:2.5rem;align-items:center;margin:1.5rem 0}
.media-row.reverse{grid-template-columns:1fr 1.3fr}
.figure img{width:100%;border-radius:14px}
.figure figcaption,.figure .fcap{font-size:14px;color:var(--slate);margin-top:0.6rem;line-height:1.4}
.figure .fcap strong{color:var(--ink);font-weight:600}

/* ─── CTA BAND ─── */
.cta-band{background:var(--navy);color:#fff;text-align:center}
.cta-band h2{color:#fff;font-size:clamp(1.9rem,3.5vw,2.6rem);margin-bottom:0.75rem}
.cta-band p{max-width:560px;margin:0 auto 1.75rem;color:rgba(255,255,255,0.82);font-size:1.0625rem}
.cta-band .cta-buttons{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ─── VIDEO EMBED (responsive 16:9) ─── */
.video-embed{position:relative;width:100%;aspect-ratio:16/9;border-radius:14px;overflow:hidden;background:var(--navy)}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

/* ─── STICKY FIGURE (photo that scrolls with the text alongside it) ─── */
.media-row.align-start{align-items:start}
.sticky-figure{position:sticky;top:90px}
@media (max-width:900px){.sticky-figure{position:static}}

/* ─── IMAGE MARQUEE (auto-scrolling photo banner) ─── */
.img-marquee{overflow:hidden;-webkit-mask-image:linear-gradient(to right,transparent,#000 6%,#000 94%,transparent);mask-image:linear-gradient(to right,transparent,#000 6%,#000 94%,transparent)}
.img-marquee-track{display:flex;gap:1rem;width:max-content;animation:scroll-left 60s linear infinite}
.img-marquee:hover .img-marquee-track,.img-marquee:focus-within .img-marquee-track{animation-play-state:paused}
.img-marquee-track img{height:clamp(180px,28vw,260px);width:auto;border-radius:12px;object-fit:cover;flex-shrink:0}

/* ─── PARTNERS NAME GRID (3 across on larger screens) ─── */
.partners-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.4rem 1.5rem;margin:1rem 0 1.2rem;list-style:none;padding:0}
.partners-grid li{color:var(--slate);font-size:15px;padding:4px 0}
@media (max-width:680px){.partners-grid{grid-template-columns:1fr 1fr}}
@media (max-width:440px){.partners-grid{grid-template-columns:1fr}}

/* ─── PARTNERS ─── */
.partners{background:var(--cream-2);padding:2.75rem 0;overflow:hidden}
.partners-label{text-align:center;font-size:13px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:var(--slate);margin-bottom:1.5rem}
.partners-track-wrap{overflow:hidden;-webkit-mask-image:linear-gradient(to right,transparent,black 8%,black 92%,transparent);mask-image:linear-gradient(to right,transparent,black 8%,black 92%,transparent)}
.partners-track{display:flex;gap:0.85rem;width:max-content;animation:scroll-left 48s linear infinite}
@keyframes scroll-left{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.partners-track-wrap:hover .partners-track,.partners-track-wrap:focus-within .partners-track{animation-play-state:paused}
.partner-pill{display:inline-flex;align-items:center;justify-content:center;padding:8px 22px;background:#fff;border-radius:9px;font-size:14px;font-weight:500;color:var(--slate);white-space:nowrap;border:1px solid var(--line-soft);flex-shrink:0;height:58px}
.partner-pill img{height:36px;width:auto;max-width:120px;object-fit:contain}

/* ─── VOICES ─── */
.voices{background:var(--cream)}
.voices h2{font-size:clamp(1.9rem,3.5vw,2.6rem)}
.quotes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.quote-card{background:#fff;border-radius:16px;padding:1.5rem;display:flex;flex-direction:column;border:1px solid var(--line-soft);box-shadow:0 2px 14px rgba(11,34,54,0.05)}
.quote-img{width:100%;height:200px;border-radius:11px;overflow:hidden;margin-bottom:1.25rem;background:var(--cream-2)}
.quote-img img{width:100%;height:100%;object-fit:cover}
.quote-text{font-family:'Fraunces',serif;font-size:1.2rem;line-height:1.45;color:var(--navy);margin-bottom:1rem;flex:1}
.quote-name{font-weight:600;color:var(--ink);font-size:15px}
.quote-role{font-size:14px;color:var(--slate);margin-top:1px}
.quote-card .tlink{margin-top:1rem;font-size:0.95rem}

/* ─── CATAMARAN (deliberate dark feature band) ─── */
.cat{background:var(--navy);color:#fff}
.cat h2{color:#fff;font-size:clamp(2rem,4vw,3rem)}
.cat h2 span{color:#fff;font-style:italic;font-weight:400}
.cat-hero{position:relative;border-radius:18px;overflow:hidden;height:clamp(280px,42vw,420px);margin-bottom:2.5rem}
.cat-hero img{width:100%;height:100%;object-fit:cover;object-position:center 55%}
.cat-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 35%,rgba(11,34,54,0.85) 100%)}
.cat-hero-text{position:absolute;left:0;right:0;bottom:0;padding:clamp(1.5rem,3vw,2.25rem)}
.cat-hero-text h1,.cat-hero-text h1 span{color:#fff;text-shadow:0 2px 18px rgba(0,0,0,0.45)}
.cat-showcase img{max-height:clamp(320px,42vw,480px);object-fit:cover}
.live-tag{display:inline-block;background:#fff;color:var(--navy);font-size:12px;padding:4px 12px;border-radius:50px;font-weight:600;letter-spacing:0.04em;font-family:'Inter Tight',sans-serif;vertical-align:middle;margin-left:8px}
.cat-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.75rem;align-items:start}
.cat-intro{color:rgba(255,255,255,0.82);font-size:1.0625rem;line-height:1.7;margin-bottom:1.75rem}
.cat-img-2{border-radius:14px;overflow:hidden;height:240px;margin-bottom:1.25rem}
.cat-img-2 img{width:100%;height:100%;object-fit:cover}
.cat-specs{display:grid;grid-template-columns:repeat(2,1fr);gap:0.7rem}
.cat-spec{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);border-radius:9px;padding:13px 15px}
.cat-spec-label{font-size:12px;color:rgba(255,255,255,0.6);text-transform:uppercase;letter-spacing:0.08em;margin-bottom:4px}
.cat-spec-val{font-family:'Fraunces',serif;font-size:16px;color:#fff;font-weight:500;line-height:1.2}
.thermo{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);border-radius:16px;padding:1.75rem;margin-top:2rem}
.thermo-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:1rem;flex-wrap:wrap;gap:0.5rem}
.thermo-amount{font-family:'Fraunces',serif;font-size:2.2rem;font-weight:500;color:#fff;line-height:1}
.thermo-of{font-size:1rem;color:rgba(255,255,255,0.6);margin-left:8px}
.thermo-pct{font-size:13px;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:0.08em;font-weight:600}
.thermo-track{background:rgba(255,255,255,0.12);border-radius:50px;height:12px;overflow:hidden;margin-bottom:1rem}
.thermo-fill{height:100%;border-radius:50px;background:#fff;width:52%}
.thermo-foot{font-size:14.5px;color:rgba(255,255,255,0.75);line-height:1.55}
.thermo-foot strong{color:#fff;font-weight:600}
.cat-btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:0.5rem}

/* ─── SUPPORT ─── */
.support{background:var(--white);text-align:center}
.support h2{font-size:clamp(1.9rem,3.5vw,2.7rem)}
.support h2 span{color:var(--teal)}
.support-sub{max-width:560px;margin:0.75rem auto 2.75rem;color:var(--slate);font-size:1.0625rem}
.support-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;text-align:left}
.support-card{background:var(--cream);border-radius:16px;padding:1.75rem;border:1px solid var(--line-soft);display:flex;flex-direction:column}
.support-card.featured{background:var(--navy);color:#fff;border-color:var(--navy)}
.support-icon{width:52px;height:52px;border-radius:12px;background:var(--teal-soft);display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem}
.support-icon svg{width:24px;height:24px;color:var(--teal)}
.support-card.featured .support-icon{background:rgba(255,255,255,0.16)}
.support-card.featured .support-icon svg{color:#fff}
.support-card h3{font-size:1.4rem;margin-bottom:0.5rem}
.support-card.featured h3{color:#fff}
.support-card>p{font-size:15.5px;color:var(--slate);line-height:1.55;margin-bottom:1.5rem;flex:1}
.support-card.featured>p{color:rgba(255,255,255,0.82)}
.support-card.featured .tlink{color:#fff;border-color:rgba(255,255,255,0.4)}
.support-card.featured .tlink:hover{border-color:#fff}

/* ─── FORMS (shared) ─── */
.form-card{background:#fff;border-radius:16px;padding:1.75rem;display:flex;flex-direction:column;gap:0.6rem;border:1px solid var(--line-soft);box-shadow:0 2px 14px rgba(11,34,54,0.05)}
.form-card label{font-size:13.5px;font-weight:600;color:var(--ink)}
.form-card input,.form-card textarea,.form-card select{width:100%;background:var(--cream);border:1.5px solid var(--line);border-radius:8px;padding:13px 15px;font-size:16px;font-family:'Inter Tight',sans-serif;color:var(--ink);outline:none}
.form-card textarea{min-height:130px;resize:vertical}
.form-card input:focus,.form-card textarea:focus,.form-card select:focus{border-color:var(--teal)}
.form-card button{width:100%;background:var(--teal);color:#fff;font-family:'Inter Tight',sans-serif;font-size:16px;font-weight:600;padding:14px;border:none;border-radius:8px;cursor:pointer;margin-top:0.25rem}
.form-card button:hover{background:var(--teal-700)}
.form-consent-label{display:flex;gap:9px;align-items:flex-start;font-size:13px;color:var(--slate);line-height:1.5;cursor:pointer;margin-top:0.25rem}
.form-consent-label input{flex-shrink:0;margin-top:3px;width:16px;height:16px;accent-color:var(--teal)}

/* ─── DONATE ─── */
.don-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.don-card{background:#fff;border:1px solid var(--line-soft);border-radius:16px;padding:1.9rem;display:flex;flex-direction:column;box-shadow:0 2px 14px rgba(11,34,54,0.05)}
.don-card-badge{display:inline-block;font-size:12px;font-weight:600;letter-spacing:0.04em;padding:4px 13px;border-radius:50px;background:var(--teal-soft);color:var(--teal);margin-bottom:0.9rem;align-self:flex-start}
.don-card.paypal .don-card-badge{background:#003087;color:#fff}
.don-card.jg .don-card-badge{background:#AD1D8C;color:#fff}
.don-card h2{font-size:1.4rem;margin-bottom:0.5rem}
.don-card>p{color:var(--slate);font-size:15.5px;line-height:1.55;margin-bottom:1.1rem}
.pp-amounts{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:1.1rem}
.pp-chip{display:inline-flex;align-items:center;justify-content:center;padding:10px 16px;border:1.5px solid var(--line);border-radius:8px;background:#fff;font-weight:600;font-size:15px;color:var(--ink);cursor:pointer;transition:border-color .15s,background .15s,color .15s}
.pp-chip:hover{border-color:var(--teal)}
.pp-chip.is-selected{border-color:var(--teal);background:var(--teal-soft);color:var(--teal)}
.pp-custom{gap:1px}
.pp-custom-input{width:62px;border:none;outline:none;background:transparent;font:inherit;font-weight:600;color:var(--ink)}
.don-fill{flex:1}
.don-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;width:100%;padding:14px;border-radius:8px;border:none;font-family:'Inter Tight',sans-serif;font-size:16px;font-weight:600;color:#fff;cursor:pointer;line-height:1;min-height:48px}
.don-btn svg{width:20px;height:20px}
.don-btn.paypal{background:#0070ba}
.don-btn.paypal:hover{background:#005ea6}
.don-btn.jg{background:var(--teal)}
.don-btn.jg:hover{background:var(--teal-700)}
.don-note{font-size:12.5px;color:var(--slate);text-align:center;margin-top:0.75rem;margin-bottom:0}
.don-amounts{display:flex;flex-direction:column;gap:8px;margin-bottom:1.1rem}
.don-amount{display:flex;justify-content:space-between;gap:1rem;padding:10px 14px;background:var(--cream);border-radius:8px;font-size:14px}
.don-amount .amt{font-weight:700;color:var(--navy)}
.don-amount .what{color:var(--slate);text-align:right}
.don-giftaid{display:flex;gap:14px;align-items:flex-start;background:var(--teal-soft);border-radius:14px;padding:1.25rem 1.5rem;margin-top:1.5rem}
.don-giftaid svg{width:30px;height:30px;color:var(--teal);flex-shrink:0}
.don-giftaid p{font-size:14.5px;color:var(--ink);line-height:1.55;margin:0}
.don-giftaid strong{color:var(--navy)}

/* ─── CONTACT ─── */
.contact-grid{display:grid;grid-template-columns:1.15fr 0.85fr;gap:2.5rem;align-items:start}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:0.6rem}
.form-status{font-size:14px;line-height:1.45;margin:0}
.form-status.error{color:#c0392b}
.form-status.success{color:var(--teal);font-weight:600}
.con-info{background:var(--navy);color:#fff;border-radius:16px;padding:1.9rem}
.con-info h3{color:#fff;font-size:1.35rem;margin-bottom:1.25rem}
.con-info-item{display:flex;gap:13px;align-items:flex-start;margin-bottom:1.1rem}
.con-info-icon{width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#fff}
.con-info-icon svg{width:19px;height:19px}
.con-info-label{font-size:12px;text-transform:uppercase;letter-spacing:0.08em;color:rgba(255,255,255,0.55);margin-bottom:2px}
.con-info-val{font-size:15px;color:#fff;line-height:1.4}
.con-info-val a{color:#fff;border-bottom:1px solid rgba(255,255,255,0.3)}
.con-hours{margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.12)}
.con-hours h4{font-size:12px;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.55);margin-bottom:0.75rem;font-weight:600}
.con-hours-row{display:flex;justify-content:space-between;font-size:14px;color:rgba(255,255,255,0.85);padding:4px 0}

/* ─── NEWSLETTER (teal feature band) ─── */
.nl{background:var(--teal);color:#fff}
.nl-wrap{display:flex;gap:3rem;align-items:center;flex-wrap:wrap}
.nl-left{flex:1;min-width:260px}
.nl-tag{font-size:13px;font-weight:600;letter-spacing:0.13em;text-transform:uppercase;color:rgba(255,255,255,0.78);margin-bottom:0.75rem}
.nl-h{color:#fff;font-size:clamp(1.8rem,3vw,2.4rem);margin-bottom:0.75rem}
.nl-p{font-size:1.0625rem;color:rgba(255,255,255,0.9);line-height:1.6}
.nl-right{flex:1;min-width:280px}
.nl-card{background:#fff;border-radius:16px;padding:1.75rem;display:flex;flex-direction:column;gap:0.6rem}
.nl-card label{font-size:13.5px;font-weight:600;color:var(--ink)}
.nl-card input{width:100%;background:var(--cream);border:1.5px solid var(--line);border-radius:8px;padding:13px 15px;font-size:16px;font-family:'Inter Tight',sans-serif;color:var(--ink);outline:none}
.nl-card input:focus{border-color:var(--teal)}
.nl-consent-label{display:flex;gap:9px;align-items:flex-start;font-size:13px;color:var(--slate);line-height:1.5;cursor:pointer;margin-top:0.25rem}
.nl-consent-label input{flex-shrink:0;margin-top:3px;width:16px;height:16px;accent-color:var(--teal)}
.nl-card button{width:100%;background:var(--teal);color:#fff;font-family:'Inter Tight',sans-serif;font-size:16px;font-weight:600;padding:14px;border:none;border-radius:8px;cursor:pointer;margin-top:0.25rem}
.nl-card button:hover{background:var(--teal-700)}
.nl-small{font-size:12.5px;color:var(--slate);text-align:center}
.nl-small a{color:var(--teal);text-decoration:underline}

/* ─── MEDIA STRIP ─── */
.media-strip{background:var(--white);border-top:1px solid var(--line-soft)}
.media-label{font-size:13px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:var(--slate);text-align:center;margin-bottom:1.5rem}
.media-logos{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:1.25rem 2.5rem}
.media-pub{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:500;color:var(--slate);white-space:nowrap;display:inline-flex;align-items:center;gap:8px;transition:color .15s}
.media-pub:hover{color:var(--navy)}
.media-divider{width:1px;height:22px;background:var(--line)}

/* ─── FOOTER ─── */
.footer{background:var(--navy);color:#fff;padding:3.5rem 0 1.75rem}
.footer-top{display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;gap:2.5rem;padding-bottom:2.25rem;margin-bottom:2rem;border-bottom:1px solid rgba(255,255,255,0.1)}
.footer .nav-name{color:#fff}
.footer .nav-name span{color:rgba(255,255,255,0.55)}
.footer-brand-desc{font-size:14.5px;color:rgba(255,255,255,0.6);line-height:1.65;margin-top:1rem}
.footer-col h4{font-size:12.5px;text-transform:uppercase;letter-spacing:0.14em;color:rgba(255,255,255,0.5);margin-bottom:1rem;font-weight:600}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.6rem}
.footer-col ul a{font-size:14.5px;color:rgba(255,255,255,0.78);transition:color .15s}
.footer-col ul a:hover{color:#fff}
.footer-social{display:flex;gap:10px}
.footer-social a{width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.14);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.78);transition:background .15s,color .15s}
.footer-social a:hover{background:rgba(255,255,255,0.16);color:#fff}
.footer-social svg{width:22px;height:22px}
.footer-bottom{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;flex-wrap:wrap}
.footer-legal{font-size:13px;color:rgba(255,255,255,0.5);line-height:1.7}
.footer-legal strong{color:rgba(255,255,255,0.72);font-weight:600;display:block;margin-bottom:2px}
.footer-legal a{color:rgba(255,255,255,0.5);text-decoration:underline}
.footer-access-btn{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.22);color:#fff;font-family:'Inter Tight',sans-serif;font-size:14px;font-weight:600;padding:10px 18px;border-radius:8px;white-space:nowrap}
.footer-access-btn svg{width:16px;height:16px}

/* ─── WCAG ─── */
*:focus-visible{outline:3px solid #1F9E78;outline-offset:3px;border-radius:3px}
.nav-links a,.btn,.tlink,.footer-social a,.nav-donate-pill{min-height:44px;display:inline-flex;align-items:center}
.nav-links a{min-height:auto}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{transition:none!important;animation:none!important}}

/* ─── RESPONSIVE ─── */
@media (max-width:900px){
  .who-top{grid-template-columns:1fr;gap:1.75rem}
  .cat-grid{grid-template-columns:1fr;gap:2rem}
  .quotes-grid{grid-template-columns:1fr}
  .support-cards{grid-template-columns:1fr}
  .people-grid{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .media-row,.media-row.reverse{grid-template-columns:1fr;gap:1.5rem}
  .photo-strip-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .don-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:1.75rem}
  .footer-top>div:first-child{grid-column:span 2}
}
/* Nav collapses to the hamburger at 1024px so the full link row never crams/wraps */
@media (max-width:1024px){
  /* Drop the backdrop blur on mobile: a backdrop-filter on .nav makes it the
     containing block for the position:fixed menu below, which would otherwise
     clip the open menu to the nav bar's height instead of filling the screen. */
  .nav{padding:0.75rem 1.25rem;backdrop-filter:none;-webkit-backdrop-filter:none}
  .nav-toggle{display:flex}
  /* Anchor the Donate pill + hamburger to the right edge (nav-links, which
     normally carries margin-left:auto, is hidden at this width). */
  .nav-donate-pill{margin-left:auto}
  .nav-links{display:none;position:fixed;inset:0;background:#fff;flex-direction:column;align-items:flex-start;gap:0;z-index:150;padding:5rem 1.75rem 2rem;overflow-y:auto}
  .nav-links.is-open{display:flex}
  .nav-links a{white-space:normal}
  .nav-links>li{width:100%;border-bottom:1px solid var(--line-soft)}
  .nav-links>li>a{font-size:18px;padding:15px 0;width:100%;justify-content:space-between}
  .nav-dropdown{position:static;transform:none;border:none;box-shadow:none;padding:0 0 10px 1rem;min-width:auto}
  .nav-dropdown a{font-size:15px!important;padding:8px 0!important}
  .nav-dropdown a:hover{background:transparent}
}
@media (max-width:820px){
  .hero-badge{display:none}
  .access-grid{grid-template-columns:repeat(5,1fr)}
  .access-cell{padding:1rem 0.4rem}
  .access-cell svg{width:20px;height:20px}
  .access-cell span{font-size:12px}
  .impact-grid{grid-template-columns:1fr 1fr;gap:1.75rem 1.25rem}
  .media-divider{display:none}
}
@media (max-width:560px){
  body{font-size:16px}
  .access-grid{grid-template-columns:1fr 1fr 1fr}
  .access-cell:nth-child(n+4){border-top:1px solid rgba(255,255,255,0.1)}
  .cat-specs{grid-template-columns:1fr 1fr}
  .nl-wrap{gap:1.75rem}
  .people-grid{grid-template-columns:1fr}
}
@media (max-width:600px){
  /* Phones: the full wordmark is too wide to fit the logo, Donate pill and
     hamburger on one row. Keep the circular logo mark; drop the text so the
     Donate CTA and the menu button both stay on-screen and tappable. */
  .nav{gap:0.75rem}
  .nav-name{display:none}
}

/* ─── COOKIE CONSENT BANNER ─── */
.cookie-banner{
  position:fixed;left:1rem;right:1rem;bottom:1rem;z-index:10000;
  max-width:760px;margin:0 auto;
  display:flex;flex-wrap:wrap;align-items:center;gap:1rem 1.5rem;
  padding:1.1rem 1.35rem;
  background:var(--navy);color:#fff;
  border-radius:14px;
  box-shadow:0 12px 40px rgba(11,34,54,0.35);
  animation:cookieIn .35s ease both;
}
@keyframes cookieIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
.cookie-banner__text{
  flex:1 1 320px;margin:0;
  font-size:14px;line-height:1.5;color:rgba(255,255,255,0.92);
}
.cookie-banner__text a{color:#fff;text-decoration:underline;font-weight:600}
.cookie-banner__text a:hover{color:var(--teal-soft)}
.cookie-banner__actions{display:flex;gap:.6rem;flex:0 0 auto}
.cookie-banner__btn{
  font:inherit;font-size:14px;font-weight:600;cursor:pointer;
  padding:10px 20px;min-height:44px;border-radius:8px;border:1px solid transparent;
  transition:background .15s,border-color .15s,color .15s;
}
.cookie-banner__btn--accept{background:var(--teal);color:#fff}
.cookie-banner__btn--accept:hover{background:var(--teal-700)}
.cookie-banner__btn--decline{background:transparent;color:#fff;border-color:rgba(255,255,255,0.45)}
.cookie-banner__btn--decline:hover{border-color:#fff;background:rgba(255,255,255,0.08)}
@media (prefers-reduced-motion: reduce){.cookie-banner{animation:none}}
@media (max-width:520px){
  .cookie-banner{flex-direction:column;align-items:stretch;text-align:left}
  .cookie-banner__actions{justify-content:flex-end}
}
