/* ============================================================
   CES — The Center for Entrepreneurial Studies
   Farmington · Franklin County · Maine

   Design notes
   ------------
   Ground:     birch paper + navy ink. Buoy vermilion is the only
               action color; spruce is reserved for land/agriculture.
   Signature:  the hang tag. Everything a young person makes here gets
               a kraft tag with a punched hole and a price. So every
               eyebrow, stat and caption on this site is one.
   Type:       Bricolage Grotesque (display — variable width/optical),
               Instrument Sans (body), Martian Mono (tags, data, dates).
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Bricolage';
  src: url('../fonts/bricolage.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument';
  src: url('../fonts/instrument-sans.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument';
  src: url('../fonts/instrument-sans-italic.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Martian';
  src: url('../fonts/martian-mono.woff2') format('woff2-variations');
  font-weight: 100 800;
  font-stretch: 75% 112.5%;
  font-display: swap;
}


/* Metrics-matched fallbacks. Without these the headline reflows when the
   webfont lands and CLS spikes to ~0.24 on the homepage. Numbers derived
   from each font's own hhea/OS-2 tables against Arial's. */
@font-face {
  font-family: 'Bricolage Fallback';
  src: local('Arial'), local('Helvetica Neue'), local('Liberation Sans'), local('DejaVu Sans');
  size-adjust: 104.95%;
  ascent-override: 88.61%;
  descent-override: 25.73%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: 'Instrument Fallback';
  src: local('Arial'), local('Helvetica Neue'), local('Liberation Sans'), local('DejaVu Sans');
  size-adjust: 111.62%;
  ascent-override: 86.90%;
  descent-override: 22.40%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: 'Martian Fallback';
  src: local('Courier New'), local('Liberation Mono'), local('DejaVu Sans Mono');
  size-adjust: 124.98%;
  ascent-override: 80.01%;
  descent-override: 16.00%;
  line-gap-override: 0.00%;
}

/* ---------- tokens ---------- */
:root {
  --ink:        #0E1C2E;
  --ink-2:      #17293F;
  --ink-3:      #23384F;
  --navy:       #1D4079;
  --paper:      #F2F1EC;
  --paper-2:    #FAFAF7;
  --white:      #FFFFFF;
  --buoy:       #C8341A;   /* on light: white-on = 5.3, on-paper = 4.7 */
  --buoy-dark:  #9E2712;
  --buoy-lt:    #F0795C;   /* on dark:   on-ink = 6.2, on-ink-2 = 5.3 */
  --spruce:     #14624A;
  --kraft:      #DCC7A1;
  --kraft-2:    #C9B085;
  --kraft-ink:  #4E3D22;
  --slate:      #54677A;
  --hairline:   #D8D6CE;
  --hairline-d: rgba(255,255,255,.16);

  --display: 'Bricolage', 'Bricolage Fallback', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Instrument', 'Instrument Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --mono:    'Martian', 'Martian Fallback', ui-monospace, 'SF Mono', Menlo, monospace;

  --t-hero:  clamp(2.75rem, 6.6vw, 6.25rem);
  --t-h1:    clamp(2.4rem, 5.2vw, 4.6rem);
  --t-h2:    clamp(1.9rem, 3.6vw, 3.25rem);
  --t-h3:    clamp(1.25rem, 1.9vw, 1.7rem);
  --t-lede:  clamp(1.05rem, 1.25vw, 1.28rem);

  --gap:     clamp(1.5rem, 3vw, 2.75rem);
  --pad-x:   clamp(1.15rem, 4vw, 3.5rem);
  --sect-y:  clamp(4rem, 8vw, 7.5rem);
  --wrap:    1260px;

  --accent:  var(--buoy);
  --muted:   var(--slate);   /* secondary text  */
  --muted-2: var(--ink-3);   /* body copy       */
  --ease:    cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-variation-settings: 'wght' 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.024em;
  margin: 0;
  font-variation-settings: 'wght' 800, 'opsz' 48;
  text-wrap: balance;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--buoy); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--buoy);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: .85rem 1.25rem; font-family: var(--mono); font-size: .75rem;
}
.skip:focus { left: .5rem; top: .5rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.wrap--wide { max-width: 1480px; }

/* ============================================================
   THE HANG TAG  — signature element
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .625rem;
  font-variation-settings: 'wght' 500, 'wdth' 100;
  letter-spacing: .17em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--kraft-ink);
  background: var(--kraft);
  padding: .58rem .85rem .58rem 1.7rem;
  clip-path: polygon(.85rem 0, 100% 0, 100% 100%, .85rem 100%, 0 50%);
  -webkit-mask: radial-gradient(circle at 1.15rem 50%, transparent .2rem, #000 .21rem);
          mask: radial-gradient(circle at 1.15rem 50%, transparent .2rem, #000 .21rem);
  transform: rotate(-1.1deg);
  transform-origin: 1.15rem 50%;
  white-space: nowrap;
  text-decoration: none;
  align-self: flex-start;   /* don't stretch when inside a flex-column parent (e.g. phero__lead) */
  width: -moz-fit-content;
  width: fit-content;
}
.tag--buoy   { background: var(--buoy);   color: #fff; }
.tag--spruce { background: var(--spruce); color: #fff; }
.tag--ink    { background: var(--ink);    color: var(--kraft); }
.tag--ghost  {
  background: transparent; color: var(--slate);
  border: 1px solid var(--hairline);
  clip-path: none; -webkit-mask: none; mask: none;
  padding: .5rem .8rem; transform: none;
}

/* the string on a tag: a hairline that runs back to the margin */
.tag-line { display: flex; align-items: center; gap: 0; }
.tag-line::after {
  content: '';
  height: 1px; flex: 1;
  background: var(--hairline);
  margin-left: .1rem;
  max-width: 90px;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--mono); font-size: .72rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .95rem 1.4rem; border: 0; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform .28s var(--ease), background-color .28s var(--ease), box-shadow .28s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(14,28,46,.55); }
.btn:active { transform: translateY(0); }
.btn .arw { transition: transform .28s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }
.btn--buoy  { --btn-bg: var(--buoy); --btn-fg: #fff; }
.btn--buoy:hover { background: var(--buoy-dark); }
.btn--paper { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--line  {
  --btn-bg: transparent; --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn--line:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--line-light {
  --btn-bg: transparent; --btn-fg: var(--paper);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4);
}
.btn--line-light:hover { --btn-bg: var(--paper); --btn-fg: var(--ink); box-shadow: none; }
.btn--sm { padding: .7rem 1.05rem; font-size: .65rem; }

/* text link with a buoy rule that draws in */
.tlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono); font-size: .72rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding-bottom: .3rem;
  background-image: linear-gradient(var(--buoy), var(--buoy));
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .4s var(--ease), color .3s var(--ease);
}
.tlink:hover { background-size: 100% 2px; }
.tlink .arw { transition: transform .3s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }
.tlink--light { color: var(--paper); }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,241,236,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--hairline); }
.hdr__in {
  display: flex; align-items: center; gap: clamp(.6rem, 2vw, 1.5rem);
  min-height: 74px;
  max-width: 1480px; margin-inline: auto; padding-inline: var(--pad-x);
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; min-width: 0; }
.brand__short { display: none; }
.brand__seal { width: 40px; height: 40px; flex-shrink: 0; }
.ftr__seal { width: 46px; height: 46px; flex-shrink: 0; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display); font-size: .95rem;
  overflow-wrap: anywhere;
  font-variation-settings: 'wght' 800, 'wdth' 88;
  letter-spacing: -.02em; color: var(--ink);
}
.brand__sub {
  font-family: var(--mono); font-size: .48rem;
  font-variation-settings: 'wght' 400;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--slate); margin-top: .28rem;
}
.nav { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav a {
  font-family: var(--mono); font-size: .66rem;
  font-variation-settings: 'wght' 500;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding: .55rem .6rem; border-radius: 4px;
  position: relative; white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: .6rem; right: .6rem; bottom: .28rem;
  height: 1.5px; background: var(--buoy);
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { font-variation-settings: 'wght' 700; }
.hdr__cta { display: flex; align-items: center; gap: .5rem; margin-left: .75rem; }
.hdr__cta .btn { white-space: nowrap; flex-shrink: 0; }
.burger {
  display: none; margin-left: auto;
  background: none; border: 0; padding: .6rem; cursor: pointer;
  color: var(--ink);
}
.burger span {
  display: block; width: 22px; height: 2px; background: currentColor;
  margin: 4px 0; transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mnav {
  --accent: var(--buoy-lt);
  position: fixed; inset: 74px 0 0; z-index: 99;
  background: var(--ink); color: var(--paper);
  padding: 2rem var(--pad-x) 3rem;
  overflow-y: auto;
  display: none; flex-direction: column; gap: .25rem;
}
.mnav.is-open { display: flex; }
.mnav a {
  font-family: var(--display); font-size: 2rem;
  font-variation-settings: 'wght' 800, 'wdth' 88;
  letter-spacing: -.03em;
  text-decoration: none; color: var(--paper);
  padding: .5rem 0; border-bottom: 1px solid var(--hairline-d);
}
.mnav a:hover { color: var(--accent); }
.mnav__cta { display: flex; gap: .6rem; margin-top: 1.75rem; flex-wrap: wrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4.75rem, 8vw, 7.75rem); position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-size: var(--t-hero);
  font-variation-settings: 'wght' 800, 'wdth' 92, 'opsz' 96;
  line-height: .9;
  letter-spacing: -.035em;
  margin: 1.4rem 0 0;
  text-wrap: balance;
}
/* each line masks in from below on load */
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: block; }
.js .hero__title .ln > span {
  transform: translateY(102%);
  animation: lineUp .95s var(--ease) forwards;
}
.hero__title .ln:nth-child(1) > span { animation-delay: .06s; }
.hero__title .ln:nth-child(2) > span { animation-delay: .15s; }
.hero__title .ln:nth-child(3) > span { animation-delay: .24s; }
.hero__title .ln:nth-child(4) > span { animation-delay: .33s; }
.hero__title em {
  font-style: normal;
  color: var(--buoy);
}
@keyframes lineUp { to { transform: translateY(0); } }

.hero__lede {
  font-size: var(--t-lede); line-height: 1.55;
  max-width: 44ch; margin-top: 1.5rem; color: var(--ink-3);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.9rem; }

/* --- the photo stack --- */
.stack { position: relative; }
.stack__main {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(14,28,46,.5);
}
.stack__main img { width: 100%; height: 100%; object-fit: cover; }
.stack__sub {
  position: absolute;
  left: -7%; bottom: -13%;
  width: 44%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 7px solid var(--paper);
  border-radius: 2px;
  box-shadow: 0 22px 40px -20px rgba(14,28,46,.55);
}
.stack__sub img { width: 100%; height: 100%; object-fit: cover; }
.stack__cap {
  position: absolute; z-index: 3;
  font-family: var(--mono); font-size: .55rem;
  font-variation-settings: 'wght' 500;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--kraft); color: var(--kraft-ink);
  padding: .45rem .7rem .45rem 1.45rem;
  clip-path: polygon(.7rem 0, 100% 0, 100% 100%, .7rem 100%, 0 50%);
  -webkit-mask: radial-gradient(circle at 1rem 50%, transparent .16rem, #000 .17rem);
          mask: radial-gradient(circle at 1rem 50%, transparent .16rem, #000 .17rem);
  white-space: nowrap;
}
.stack__cap--now  { bottom: 1rem; right: 1rem; transform: rotate(1.2deg); }
.stack__cap--then { bottom: .55rem; left: .55rem; transform: rotate(-1.6deg); font-size: .5rem; padding: .4rem .6rem .4rem 1.3rem; }
.stack__cap--then { -webkit-mask: radial-gradient(circle at .9rem 50%, transparent .14rem, #000 .15rem); mask: radial-gradient(circle at .9rem 50%, transparent .14rem, #000 .15rem); }

/* the seal turns, slowly, like it's been on the wall a while */
.seal-spin {
  position: absolute; z-index: 4;
  right: -2.4rem; top: -2.4rem;
  width: clamp(104px, 10vw, 140px); height: clamp(104px, 10vw, 140px);
  display: grid; place-items: center;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 14px 30px -14px rgba(14,28,46,.5);
  animation: seal-float 6s ease-in-out infinite;
}
.seal-spin__mark {
  width: 82%; height: 82%;
}
@keyframes seal-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  --accent: var(--buoy-lt);
  background: var(--ink); color: var(--paper);
  padding: .95rem 0; overflow: hidden;
  border-block: 1px solid var(--ink);
}
.marquee__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__grp { display: flex; flex-shrink: 0; }
.marquee span {
  font-family: var(--mono); font-size: .7rem;
  font-variation-settings: 'wght' 400;
  letter-spacing: .17em; text-transform: uppercase;
  padding-inline: 1.35rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 1.35rem;
}
.marquee span::after { content: '✦'; color: var(--accent); font-size: .65rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.sect { padding-block: var(--sect-y); position: relative; }
.sect--dark {
  background: var(--ink); color: var(--paper);
  --hairline: var(--hairline-d);
  --accent: var(--buoy-lt);
  --muted: rgba(242,241,236,.68);
  --muted-2: rgba(242,241,236,.80);
}
.sect--dark h1, .sect--dark h2, .sect--dark h3 { color: var(--paper); }
.sect--navy {
  background: var(--ink); color: var(--paper); --hairline: var(--hairline-d);
  --accent: var(--buoy-lt);
  --muted: rgba(242,241,236,.68);
  --muted-2: rgba(242,241,236,.80);
}
.sect--paper2 { background: var(--paper-2); }
.sect--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.sect__head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 1.5rem; align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.sect__title { font-size: var(--t-h2); font-variation-settings: 'wght' 800, 'wdth' 94, 'opsz' 72; max-width: 18ch; }
.sect__title--wide { max-width: 26ch; }
.sect__intro { max-width: 52ch; margin-top: 1.1rem; color: var(--muted-2); font-size: 1.075rem; }
.eyebrow { margin-bottom: 1.15rem; }

/* ============================================================
   IMPACT — stat tags
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.9rem, 1.6vw, 1.5rem);
  position: relative;
}
.stat {
  position: relative;
  background:
    linear-gradient(158deg, rgba(255,255,255,.28), rgba(255,255,255,0) 42%),
    var(--kraft);
  color: var(--kraft-ink);
  padding: 1.7rem 1.4rem 1.55rem 2.4rem;
  clip-path: polygon(1.25rem 0, 100% 0, 100% 100%, 1.25rem 100%, 0 50%);
  -webkit-mask: radial-gradient(circle at 1.55rem 50%, transparent .26rem, #000 .27rem);
          mask: radial-gradient(circle at 1.55rem 50%, transparent .26rem, #000 .27rem);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  transform-origin: 1.55rem 50%;
  box-shadow: 0 10px 22px -14px rgba(0,0,0,.55);
}
.stat:nth-child(odd)  { transform: rotate(-.7deg); }
.stat:nth-child(even) { transform: rotate(.6deg); }
.stat:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 26px 40px -20px rgba(0,0,0,.6);
}
/* a printed vermilion accent bar that grows under the number on reveal */
.stat__n {
  position: relative;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.6vw, 3.9rem);
  font-variation-settings: 'wght' 800, 'wdth' 88, 'opsz' 96;
  line-height: .86; letter-spacing: -.04em;
  color: var(--ink);
  display: inline-block;
  padding-bottom: .18em;
}
.stat__n::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  height: 5px; width: 100%;
  background: var(--buoy);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease) .15s;
}
.rv-in .stat__n::after,
.stat.rv-in .stat__n::after { transform: scaleX(1); }
.stat:hover .stat__n::after { background: var(--buoy-dark); }
.stat__n sup { font-size: .42em; vertical-align: super; letter-spacing: 0; color: var(--buoy); }
.stat__l {
  font-family: var(--mono); font-size: .58rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin-top: 1rem; display: block;
  color: var(--kraft-ink);
}
.stat__d { font-size: .84rem; line-height: 1.45; margin-top: .6rem; color: #5C4A2E; }

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}
.cards--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  position: relative;
  display: block; text-decoration: none; color: inherit;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.sect--dark .card, .sect--navy .card { background: var(--ink-2); }
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -24px rgba(14,28,46,.55); }
.card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-2); }
.card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 1.25rem 1.35rem 1.5rem; }
.card__t {
  font-family: var(--display); font-size: 1.2rem;
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em; line-height: 1.05;
}
.sect--dark .card__t, .sect--navy .card__t { color: var(--paper); }
.card__x { font-size: .93rem; line-height: 1.5; margin-top: .55rem; color: var(--muted); }
.card__go {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .6rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
}
.card__go .arw { transition: transform .3s var(--ease); }
.card:hover .card__go .arw { transform: translateX(4px); }

/* ============================================================
   FEATURE (image + text, alternating)
   ============================================================ */
.feat {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.feat--flip .feat__media { order: 2; }
.feat__media { position: relative; }
.feat__media::before {
  content: '';
  position: absolute; inset: 0;
  transform: translate(14px, 14px);
  border: 1.5px solid var(--kraft-2);
  border-radius: 3px; opacity: .5;
  pointer-events: none; z-index: 0;
}
/* on dark sections the kraft frame reads brighter */
.sect--dark .feat__media::before,
.sect--navy .feat__media::before { border-color: rgba(220,199,161,.42); opacity: 1; }
.feat__media img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 5/4; object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 24px 48px -28px rgba(14,28,46,.5);
}
.feat__media--tall img { aspect-ratio: 4/5; }
.feat__t { font-size: var(--t-h2); font-variation-settings: 'wght' 800, 'wdth' 94, 'opsz' 72; margin-top: 1.15rem; }
.feat__x { margin-top: 1.1rem; font-size: 1.075rem; color: var(--muted-2); max-width: 48ch; }
.feat__cta { margin-top: 1.6rem; }
.feat__inset {
  position: absolute; right: -8%; bottom: -10%; width: 42%; z-index: 2;
  border: 7px solid var(--paper); border-radius: 2px; overflow: hidden;
  box-shadow: 0 20px 40px -22px rgba(14,28,46,.5);
}
.sect--dark .feat__inset { border-color: var(--ink); }
.feat__inset img { aspect-ratio: 1/1; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote { position: relative; overflow: hidden; }
.quote__bg { position: absolute; inset: 0; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; }
.quote__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,28,46,.95) 0%, rgba(14,28,46,.86) 46%, rgba(14,28,46,.45) 100%);
}
.quote {
  --accent: var(--buoy-lt);
  --muted: rgba(242,241,236,.68);
  --muted-2: rgba(242,241,236,.80);
}
.quote__in { position: relative; z-index: 2; padding-block: clamp(4rem, 9vw, 8rem); max-width: 60ch; }
.quote__mark {
  font-family: var(--display); font-size: 5rem; line-height: .6;
  color: var(--accent); display: block; margin-bottom: .5rem;
  font-variation-settings: 'wght' 800;
}
.quote__t {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.9vw, 2.5rem);
  font-variation-settings: 'wght' 700, 'wdth' 96, 'opsz' 48;
  line-height: 1.14; letter-spacing: -.025em;
  color: var(--paper); text-wrap: balance;
}
.quote__by { display: flex; align-items: center; gap: .9rem; margin-top: 2rem; }
.quote__ph {
  width: 54px; height: 54px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  display: block; background: var(--kraft);
}
.quote__ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote__nm { font-family: var(--display); font-size: 1rem; font-variation-settings: 'wght' 700; color: var(--paper); }
.quote__rl { font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(242,241,236,.6); margin-top: .3rem; }

/* ============================================================
   VIDEO / STORY CARDS
   ============================================================ */
.vid {
  position: relative; display: block; text-decoration: none; color: inherit;
  border-radius: 2px; overflow: hidden; background: var(--ink-2);
  aspect-ratio: 3 / 4;
}
.vid img, .vid video { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.vid:hover img, .vid:hover video { transform: scale(1.05); }
.vid::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,28,46,.9) 0%, rgba(14,28,46,.1) 55%);
}
.vid__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.25rem; }
.vid__nm {
  font-family: var(--display); font-size: 1.5rem; color: var(--paper);
  font-variation-settings: 'wght' 800, 'wdth' 92; letter-spacing: -.02em;
}
.vid__x { font-family: var(--mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(242,241,236,.7); margin-top: .35rem; }
.vid__play {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--buoy); color: #fff;
  display: grid; place-items: center;
  transition: transform .4s var(--ease);
}
.vid:hover .vid__play { transform: scale(1.12); }

.embed { position: relative; aspect-ratio: 16/9; background: var(--ink-2); border-radius: 2px; overflow: hidden; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   EVENT ROWS
   ============================================================ */
.erow {
  display: grid; grid-template-columns: 8rem 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hairline);
  text-decoration: none; color: inherit;
  transition: padding-left .4s var(--ease);
}
.erow:last-of-type { border-bottom: 1px solid var(--hairline); }
.erow:hover { padding-left: .75rem; }
.erow__d {
  font-family: var(--mono); font-size: .68rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
}
.erow__t { font-family: var(--display); font-size: clamp(1.25rem,2.1vw,1.7rem); font-variation-settings: 'wght' 800, 'wdth' 94; letter-spacing: -.02em; }
.erow__x { font-size: .93rem; color: var(--muted); margin-top: .3rem; max-width: 60ch; }
.erow__go { font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   PHOTO RAIL
   ============================================================ */
.rail {
  display: flex; gap: .85rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.25rem;
  scrollbar-width: thin;
}
.rail::-webkit-scrollbar { height: 5px; }
.rail::-webkit-scrollbar-track { background: var(--hairline); }
.rail::-webkit-scrollbar-thumb { background: var(--slate); }
.rail figure {
  margin: 0; flex: 0 0 clamp(220px, 26vw, 330px);
  scroll-snap-align: start;
}
.rail img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px;
  transition: filter .5s var(--ease);
  filter: saturate(.92);
}
.rail figure:hover img { filter: saturate(1.08); }
.rail figcaption {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--muted); margin-top: .6rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.band { background: var(--buoy); color: #fff; }
.band__in { display: grid; grid-template-columns: 1.3fr auto; gap: 2.5rem; align-items: center; padding-block: clamp(3rem,6vw,4.75rem); }
.band__t { font-size: var(--t-h2); font-variation-settings: 'wght' 800, 'wdth' 94, 'opsz' 72; color: #fff; max-width: 20ch; }
.band__x { margin-top: 1rem; max-width: 46ch; color: rgba(255,255,255,.93); }
.band__cta { display: flex; gap: .6rem; flex-wrap: wrap; }
.band .btn--paper:hover { background: var(--ink); color: var(--paper); }
.band .tag { background: var(--white); color: var(--buoy-dark); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.phero {
  --accent: var(--buoy-lt);
  --muted: rgba(242,241,236,.68);
  --muted-2: rgba(242,241,236,.80);
  background: var(--ink); color: var(--paper);
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(3.5rem, 6vw, 6rem);
  position: relative; overflow: hidden;
}
/* ambient detail so the navy is never dead: a faint oversized seal-arc + grid */
.phero::before {
  content: '';
  position: absolute; top: 50%; left: -12%; transform: translateY(-50%);
  width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  border: 1px solid rgba(242,241,236,.05);
  border-radius: 50%;
  pointer-events: none;
}
.phero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(242,241,236,.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(115deg, #000 0%, transparent 42%);
  -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 42%);
  pointer-events: none;
}
.phero .wrap { position: relative; z-index: 2; }

.phero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch;
}
/* the text column is a flex stack that fills the media's height:
   eyebrow pinned top, headline in the middle, lede + rule anchored to the
   bottom — so the column reads as deliberately composed, never marooned. */
.phero__lead {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(.5rem, 2vw, 1.5rem) 0;
}
.phero__t {
  font-size: var(--t-h1); color: var(--paper);
  font-variation-settings: 'wght' 800, 'wdth' 92, 'opsz' 96;
  letter-spacing: -.035em; line-height: .92; margin-top: 1.4rem;
}
.phero__x {
  font-size: var(--t-lede); color: var(--muted-2);
  max-width: 44ch; margin-top: 1.6rem; line-height: 1.55;
  padding-left: 1.25rem; border-left: 2px solid var(--buoy);
}
/* a thin baseline rule that stretches under the lede toward the photo,
   giving the lower half of the column visual weight */
.phero__lead::after {
  content: '';
  display: block; margin-top: clamp(1.5rem, 3vw, 2.5rem);
  height: 1px; width: 100%;
  background: linear-gradient(90deg, rgba(242,241,236,.28), transparent);
}

/* layered photo: a kraft frame offset behind + caption tag on top */
.phero__media { position: relative; }
.phero__media::before {
  content: '';
  position: absolute; inset: 0;
  transform: translate(18px, 18px);
  border: 1.5px solid rgba(220,199,161,.4);
  border-radius: 3px;
  pointer-events: none;
}
.phero__media img {
  position: relative;
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.55);
}
/* optional caption on the photo */
.phero__cap {
  position: absolute; left: 14px; bottom: 14px; z-index: 3;
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper);
  background: rgba(14,28,46,.72);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  padding: .5rem .75rem; border-radius: 2px;
}
/* optional floating stat chip that overlaps the photo corner */
.phero__stat {
  position: absolute; z-index: 4;
  right: -14px; top: -18px;
  background: var(--buoy); color: #fff;
  border-radius: 3px; padding: .85rem 1.05rem;
  box-shadow: 0 18px 34px -18px rgba(0,0,0,.6);
  transform: rotate(2deg);
}
.phero__stat b {
  display: block; font-family: var(--display);
  font-size: 1.75rem; font-variation-settings: 'wght' 800, 'wdth' 88;
  line-height: .9; letter-spacing: -.02em;
}
.phero__stat span {
  display: block; font-family: var(--mono); font-size: .5rem;
  letter-spacing: .1em; text-transform: uppercase; margin-top: .3rem; opacity: .9;
}

.phero--plain .phero__grid { grid-template-columns: 1fr; }
.phero--plain .phero__t { max-width: 16ch; }
.phero--plain .phero__x { border-left: 0; padding-left: 0; }

/* ============================================================
   PROSE / LONG FORM
   ============================================================ */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.6rem,2.6vw,2.2rem); margin: 2.75rem 0 1rem; font-variation-settings: 'wght' 800, 'wdth' 94; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--t-h3); margin: 2rem 0 .7rem; font-variation-settings: 'wght' 700, 'wdth' 96; }
.prose p { margin-bottom: 1.15rem; color: var(--ink-3); }
.prose > p:first-of-type { font-size: 1.18rem; line-height: 1.6; color: var(--ink); }
.prose ul { padding-left: 0; list-style: none; margin: 1.15rem 0; }
.prose li {
  position: relative; padding-left: 1.5rem; margin-bottom: .6rem; color: var(--ink-3);
}
.prose li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; background: var(--buoy); border-radius: 1px;
}
.prose a { color: var(--navy); text-decoration-color: var(--buoy); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.prose strong { font-variation-settings: 'wght' 700; color: var(--ink); }
.prose a.btn   { color: var(--btn-fg); text-decoration: none; }
.prose a.tlink { color: var(--ink); text-decoration: none; }

.split { display: grid; grid-template-columns: 260px 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.split__aside { position: sticky; top: 100px; }
.split__aside .tag { margin-bottom: 1rem; }
.split__note { font-family: var(--mono); font-size: .66rem; line-height: 1.8; color: var(--muted); letter-spacing: .02em; }

/* ---------- pull ---------- */
.pull {
  border-left: 3px solid var(--buoy);
  padding: .3rem 0 .3rem 1.4rem;
  margin: 2rem 0;
  font-family: var(--display);
  font-size: clamp(1.15rem,1.9vw,1.5rem);
  font-variation-settings: 'wght' 700, 'wdth' 96;
  line-height: 1.24; letter-spacing: -.02em;
  color: var(--ink);
}

/* ---------- people ---------- */
.people { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: clamp(1.5rem,3vw,2.5rem); }
.person__ph { aspect-ratio: 1/1; background: var(--kraft); border-radius: 2px; overflow: hidden; margin-bottom: 1rem; position: relative; }
.person__ph img { width: 100%; height: 100%; object-fit: cover; }
.person__ph--empty { display: grid; place-items: center; }
.person__ini {
  font-family: var(--display); font-size: 3rem; color: var(--kraft-ink);
  font-variation-settings: 'wght' 800, 'wdth' 85; opacity: .5;
}
.person__n { font-family: var(--display); font-size: 1.28rem; font-variation-settings: 'wght' 800, 'wdth' 92; letter-spacing: -.02em; }
.person__r { font-family: var(--mono); font-size: .58rem; letter-spacing: .11em; text-transform: uppercase; color: var(--accent); margin-top: .45rem; }
.person__b { font-size: .93rem; line-height: 1.55; color: var(--muted); margin-top: .75rem; }

/* ---------- timeline ---------- */
.tl { position: relative; padding-left: 2.25rem; }
.tl::before { content: ''; position: absolute; left: 6px; top: .6rem; bottom: .6rem; width: 2px; background: var(--hairline); }
.tl__i { position: relative; padding-bottom: 2.25rem; }
.tl__i::before {
  content: ''; position: absolute; left: -2.25rem; top: .4rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--accent);
}
.sect--dark .tl__i::before { background: var(--ink); }
.tl__y { font-family: var(--mono); font-size: .68rem; font-variation-settings:'wght' 600; letter-spacing: .12em; color: var(--accent); }
.tl__t { font-family: var(--display); font-size: 1.3rem; font-variation-settings: 'wght' 800, 'wdth' 92; letter-spacing: -.02em; margin-top: .35rem; }
.tl__x { font-size: .96rem; color: var(--muted); margin-top: .45rem; max-width: 56ch; }

/* ---------- info blocks ---------- */
.info { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; }
.info__k { font-family: var(--mono); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.info__v { font-size: 1rem; line-height: 1.5; }
.info__v a { color: inherit; text-decoration-color: var(--buoy); text-underline-offset: 3px; }

/* ---------- checklist ---------- */
.ways { display: grid; gap: 0; }
.way {
  display: grid; grid-template-columns: 2.6rem 1fr auto; gap: 1.25rem; align-items: baseline;
  padding: 1.35rem 0; border-top: 1px solid var(--hairline);
}
.ways .way:last-child { border-bottom: 1px solid var(--hairline); }
.way__n { font-family: var(--mono); font-size: .68rem; color: var(--accent); font-variation-settings: 'wght' 600; }
.way__t { font-family: var(--display); font-size: 1.2rem; font-variation-settings: 'wght' 800, 'wdth' 94; letter-spacing: -.02em; }
.way__x { font-size: .95rem; color: var(--muted); margin-top: .35rem; max-width: 62ch; }

/* ---------- price/give tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: clamp(1rem,2vw,1.5rem); }
.tier {
  background: var(--white); border-radius: 2px; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  border-top: 4px solid var(--kraft-2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -26px rgba(14,28,46,.5); }
.tier--hero { border-top-color: var(--buoy); }
.tier__amt { font-family: var(--display); font-size: 2.6rem; font-variation-settings: 'wght' 800, 'wdth' 88; letter-spacing: -.04em; line-height: 1; }
.tier__per { font-family: var(--mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .55rem; }
.tier__x { font-size: .95rem; color: var(--ink-3); margin-top: 1rem; flex: 1; }
.tier__cta { margin-top: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.ftr {
  background: var(--ink); color: var(--paper);
  padding-block: clamp(3.5rem,6vw,5rem) 2rem;
  --accent: var(--buoy-lt);
  --muted: rgba(242,241,236,.68);
  --muted-2: rgba(242,241,236,.80);
}
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(1.75rem,3vw,3rem); padding-bottom: 3rem; border-bottom: 1px solid var(--hairline-d); }
.ftr__brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.15rem; }
.ftr__brand svg { width: 46px; height: 46px; }
.ftr__nm { font-family: var(--display); font-size: 1.05rem; font-variation-settings: 'wght' 800, 'wdth' 88; letter-spacing: -.02em; line-height: 1.1; }
.ftr__x { font-size: .93rem; color: var(--muted); max-width: 34ch; }
.ftr h2 { font-family: var(--mono); font-size: .58rem; font-variation-settings: 'wght' 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(242,241,236,.62); margin-bottom: 1.1rem; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: .55rem; }
.ftr li a { font-size: .95rem; text-decoration: none; color: rgba(242,241,236,.85); transition: color .25s var(--ease); }
.ftr li a:hover { color: var(--accent); }
.ftr__place { margin-bottom: 1.35rem; }
.ftr__place b { font-family: var(--mono); font-size: .58rem; font-variation-settings:'wght' 600; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .35rem; }
.ftr__place span { font-size: .9rem; color: rgba(242,241,236,.72); line-height: 1.45; display: block; }
.ftr__bot { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; padding-top: 1.75rem; }
.ftr__c { font-family: var(--mono); font-size: .6rem; letter-spacing: .06em; color: rgba(242,241,236,.6); line-height: 1.8; }
.ftr__soc { display: flex; gap: .5rem; }
.ftr__soc a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--hairline-d);
  display: grid; place-items: center; color: var(--paper);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.ftr__soc a:hover { background: var(--buoy); border-color: var(--buoy); transform: translateY(-2px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Only hide reveal blocks if JS is actually running to reveal them again.
   Without the .js class (script blocked/failed) everything renders normally. */
.js [data-rv] { opacity: 0; transform: translateY(22px); }
[data-rv].rv-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .8s var(--ease);
}
[data-rv][data-d="1"].rv-in { transition-delay: .07s; }
[data-rv][data-d="2"].rv-in { transition-delay: .14s; }
[data-rv][data-d="3"].rv-in { transition-delay: .21s; }
[data-rv][data-d="4"].rv-in { transition-delay: .28s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .hdr__cta .btn:not(.btn--buoy) { display: none; }
  .burger { display: block; }
  .hdr__cta { margin-left: auto; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .ftr__top { grid-template-columns: 1fr 1fr; }
  .cards--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 4.2rem); }
  .stack { max-width: 480px; margin-inline: auto; }
  .stack__sub { left: -4%; bottom: -9%; width: 38%; }
  .stack__cap--then { font-size: .46rem; }
  .seal-spin { right: -1rem; top: -1.4rem; width: 84px; height: 84px; }
  .feat { grid-template-columns: 1fr; gap: 2.25rem; }
  .feat--flip .feat__media { order: 0; }
  .feat__inset { right: 4%; bottom: -8%; width: 34%; }
  .phero__grid { grid-template-columns: 1fr; align-items: start; gap: 2.75rem; }
  .phero__media { max-width: 520px; }
  .phero__media::before { transform: translate(12px, 12px); }
  .phero__stat { right: 8px; top: -14px; }
  .split { grid-template-columns: 1fr; }
  .split__aside { position: static; }
  .band__in { grid-template-columns: 1fr; gap: 1.75rem; }
  .sect__head { grid-template-columns: 1fr; align-items: start; }
  .erow { grid-template-columns: 1fr; gap: .5rem; }
  .erow__go { display: none; }
  .quote__in { max-width: none; }
  .quote__bg::after { background: linear-gradient(to top, rgba(14,28,46,.96) 30%, rgba(14,28,46,.7) 100%); }
}
@media (max-width: 700px) {
  .brand__full { display: none; }
  .brand__short { display: inline; }
  .brand__sub { font-size: .44rem; letter-spacing: .14em; }
  .brand__seal { width: 34px; height: 34px; }
  .hdr__in { min-height: 64px; }
  .mnav { top: 64px; }
  .hdr__cta .btn { padding: .62rem .85rem; font-size: .6rem; }
  .seal-spin { width: 72px; height: 72px; right: 0; top: -1rem; }
}
@media (max-width: 620px) {
  .stats { grid-template-columns: 1fr; }
  .cards--3, .cards--2 { grid-template-columns: 1fr; }
  .ftr__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .ftr__top > :first-child { grid-column: 1 / -1; }   /* brand + blurb: full width */
  .ftr__top > :last-child  { grid-column: 1 / -1; }   /* find us: full width */
  .way { grid-template-columns: 1.9rem 1fr; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__title .ln > span { transform: none; }
  .js [data-rv] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .seal-spin { animation: none; }
}

@media print {
  .hdr, .mnav, .marquee, .band, .seal-spin { display: none; }
  body { background: #fff; color: #000; }
}

/* ============================================================
   GALLERY — masonry, so photos keep their own shape
   ============================================================ */
.gal { columns: 4 230px; column-gap: clamp(.7rem, 1.2vw, 1rem); }
.gal figure { break-inside: avoid; margin: 0 0 clamp(1.2rem, 2vw, 1.6rem); }
.gal img {
  width: 100%; height: auto; border-radius: 2px;
  filter: saturate(.94);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.gal figure:hover img { filter: saturate(1.1); transform: scale(1.015); }
.gal figcaption {
  font-family: var(--mono); font-size: .54rem;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--muted); margin-top: .55rem;
}
@media (max-width: 700px) { .gal { columns: 2 140px; } }

/* ============================================================
   INSTAGRAM FEED — CES-styled grid, live via Behold JSON
   ============================================================ */
.ig {
  display: grid;
  gap: clamp(.5rem, 1vw, .85rem);
}
.ig--12 { grid-template-columns: repeat(4, 1fr); }
.ig--6  { grid-template-columns: repeat(6, 1fr); }
.ig__tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink-2);
  text-decoration: none;
}
.ig__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
  filter: saturate(.96);
}
.ig__tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,28,46,.55), rgba(14,28,46,0) 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.ig__tile:hover img { transform: scale(1.06); filter: saturate(1.08); }
.ig__tile:hover::after { opacity: 1; }
.ig__glyph {
  position: absolute; top: .55rem; right: .55rem; z-index: 2;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  color: #fff;
  opacity: 0; transform: translateY(-3px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.ig__glyph svg { width: 16px; height: 16px; }
.ig__tile:hover .ig__glyph { opacity: 1; transform: none; }

/* caption that rises in on hover, tag-style */
.ig__cap {
  position: absolute; left: .5rem; bottom: .5rem; right: .5rem; z-index: 2;
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff; line-height: 1.3;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ig__tile:hover .ig__cap { opacity: 1; transform: none; }

.ig__btnglyph { display: inline-flex; }
.ig__btnglyph svg { width: 14px; height: 14px; }

.ig__note {
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 1.25rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.ig__note::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: ig-pulse 2.4s ease-in-out infinite;
}
@keyframes ig-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}

/* skeleton while live posts load */
.ig__tile.is-loading { background: var(--hairline); }
.ig__tile.is-loading img { opacity: 0; }

@media (max-width: 900px) {
  .ig--12 { grid-template-columns: repeat(3, 1fr); }
  .ig--6  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .ig--12, .ig--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .ig__note::before { animation: none; }
}

/* ============================================================
   NAV DROPDOWNS
   ============================================================ */
.nav__group { position: relative; }
.nav__top {
  display: inline-flex; align-items: center; gap: .3rem;
}
.nav__caret { transition: transform .28s var(--ease); opacity: .6; }
.nav__group:hover .nav__caret,
.nav__group:focus-within .nav__caret { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + .35rem); left: 0;
  min-width: 232px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: 0 22px 40px -22px rgba(14,28,46,.4);
  padding: .5rem;
  display: flex; flex-direction: column; gap: .1rem;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  z-index: 40;
}
.nav__group:hover .nav__menu,
.nav__group:focus-within .nav__menu,
.nav__group.is-open .nav__menu { opacity: 1; visibility: visible; transform: none; }
.nav__menu a {
  padding: .6rem .75rem; border-radius: 4px;
  font-family: var(--mono); font-size: .68rem;
  font-variation-settings: 'wght' 500;
  letter-spacing: .04em; text-transform: none;
  color: var(--ink); text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), padding-left .2s var(--ease);
}
.nav__menu a::after { display: none; }
.nav__menu a:hover {
  background: var(--ink); color: var(--paper);
  padding-left: 1rem;
}
/* a hover bridge so the menu doesn't vanish crossing the gap */
.nav__group::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: .5rem;
}

/* mobile sub-links */
.mnav__sub {
  display: flex; flex-direction: column;
  margin: -.15rem 0 .4rem .9rem;
  padding-left: .9rem;
  border-left: 1px solid var(--hairline-d);
}
.mnav__sub a {
  font-family: var(--body) !important;
  font-size: 1rem !important;
  font-variation-settings: 'wght' 500 !important;
  letter-spacing: 0 !important;
  padding: .45rem 0 !important;
  border-bottom: 0 !important;
  color: rgba(242,241,236,.72) !important;
}
.mnav__sub a:hover { color: var(--buoy-lt) !important; }

/* ============================================================
   GIVING PAGE — the one big number
   ============================================================ */
.give-hero {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 2rem;
  background: var(--ink); color: var(--paper);
  border-radius: 4px;
  padding: clamp(2rem, 5vw, 3.5rem);
}
.give-hero__amt { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.give-hero__n {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-variation-settings: 'wght' 800, 'wdth' 88, 'opsz' 96;
  letter-spacing: -.04em; line-height: .85; color: var(--paper);
}
.give-hero__eq { font-family: var(--display); font-size: clamp(2rem,4vw,3rem); color: var(--buoy-lt); font-variation-settings: 'wght' 600; }
.give-hero__what {
  font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-variation-settings: 'wght' 700, 'wdth' 96; line-height: 1.05;
  letter-spacing: -.02em; color: var(--paper);
}

/* ============================================================
   LOGOS / FUNDERS WALL
   ============================================================ */
.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 4px; overflow: hidden;
}
.logos__i {
  background: var(--paper-2);
  padding: 1.75rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-size: 1rem;
  font-variation-settings: 'wght' 700, 'wdth' 90;
  letter-spacing: -.01em; line-height: 1.15;
  color: var(--ink);
  min-height: 108px;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.logos__i:hover { background: var(--ink); color: var(--paper); }

/* denser variant for long supporter lists */
.logos--supporters {
  grid-template-columns: repeat(auto-fill, minmax(clamp(200px, 24%, 260px), 1fr));
}
.logos--supporters .logos__i {
  padding: 1.15rem 1rem;
  min-height: 84px;
  font-size: .92rem;
  font-variation-settings: 'wght' 600, 'wdth' 92;
}
@media (max-width: 560px) {
  .logos--supporters { grid-template-columns: repeat(2, 1fr); }
  .logos--supporters .logos__i { font-size: .82rem; padding: .9rem .7rem; min-height: 72px; }
}

/* ============================================================
   JOURNAL
   ============================================================ */
.jfeat {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  text-decoration: none; color: inherit;
  background: var(--ink); color: var(--paper);
  border-radius: 4px; overflow: hidden;
  --accent: var(--buoy-lt);
}
.jfeat__media { align-self: stretch; }
.jfeat__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.jfeat__body { padding: clamp(1.75rem, 4vw, 3rem) clamp(1.75rem,4vw,3rem) clamp(1.75rem,4vw,3rem) 0; }
.jfeat__t {
  font-family: var(--display); color: var(--paper);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-variation-settings: 'wght' 800, 'wdth' 92, 'opsz' 60;
  letter-spacing: -.03em; line-height: 1.02; margin: 1rem 0 .9rem;
}
.jfeat__x { font-size: 1.05rem; color: rgba(242,241,236,.76); max-width: 46ch; margin-bottom: 1.2rem; }
.jfeat__media img { transition: transform .8s var(--ease); }
.jfeat:hover .jfeat__media img { transform: scale(1.04); }

.jgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.jcard {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  background: var(--white);
  border-radius: 3px; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.jcard:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -24px rgba(14,28,46,.5); }
.jcard__img { aspect-ratio: 16/10; overflow: hidden; background: var(--ink-2); }
.jcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.jcard:hover .jcard__img img { transform: scale(1.06); }
.jcard__body { padding: 1.35rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.jcard__kicker {
  font-family: var(--mono); font-size: .56rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--buoy);
}
.jcard__t {
  font-family: var(--display); font-size: 1.28rem;
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em; line-height: 1.08; margin: .55rem 0 .5rem;
}
.jcard__x { font-size: .95rem; color: var(--muted); line-height: 1.5; flex: 1; }
.jcard .card__go { margin-top: 1rem; }

@media (max-width: 860px) {
  .logos { grid-template-columns: repeat(2, 1fr); }
  .jfeat { grid-template-columns: 1fr; }
  .jfeat__media img { min-height: 240px; }
  .jfeat__body { padding: 1.75rem; }
  .jgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .logos { grid-template-columns: 1fr; }
  .jgrid { grid-template-columns: 1fr; }
  .give-hero { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   THE CHANGEMAKER CIRCLE
   ============================================================ */
.circle {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.circle__svg {
  width: 100%; height: auto;
  max-width: 560px; margin-inline: auto;
  overflow: visible;
}
.circle__node { transition: transform .5s var(--ease); transform-origin: center; }
.circle:hover .circle__node { animation: none; }
.circle__legend { display: flex; flex-direction: column; gap: 1.25rem; }
.circle__li {
  font-size: 1.02rem; line-height: 1.5; color: var(--muted-2);
  padding-left: 1.6rem; position: relative;
}
.circle__li b { color: var(--ink); font-variation-settings: 'wght' 700; }
.sect--dark .circle__li b, .sect--navy .circle__li b { color: var(--paper); }
.circle__dot {
  position: absolute; left: 0; top: .5em;
  width: 11px; height: 11px; border-radius: 3px;
  background: var(--kraft-2);
}
.circle__dot--maker  { background: var(--buoy); }
.circle__dot--mentor { background: var(--spruce); }
.circle__dot--parent { background: var(--navy); }
.circle__cap {
  text-align: center; margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
/* draw the ring arcs in once on reveal */
.circle__svg path[marker-end] {
  stroke-dasharray: 340; stroke-dashoffset: 340;
}
.rv-in .circle__svg path[marker-end],
[data-rv].rv-in .circle__svg path[marker-end] {
  animation: circle-draw 1.1s var(--ease) forwards;
}
.circle__svg path[marker-end]:nth-of-type(2) { animation-delay: .25s; }
.circle__svg path[marker-end]:nth-of-type(3) { animation-delay: .5s; }
@keyframes circle-draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   THE CIRCLE → OUTCOMES  (horizontal flow)
   ============================================================ */
.circle-intro--top { max-width: 42ch; }
/* enlarge the intro so it fills the row and balances the videos */
.circle-intro--top .circle-block__t {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin: .85rem 0 1.15rem;
}
.circle-intro--top .circle-block__x {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* top row: intro on the left, the three video voices stacked on the right */
.circle-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(1.75rem, 4.5vw, 3.75rem);
  align-items: start;
}
.circle-top .circle__voices {
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0;
}
@media (max-width: 860px) {
  .circle-top { grid-template-columns: 1fr; gap: clamp(1.5rem, 5vw, 2.25rem); }
  .circle-top .circle-block__intro { max-width: none; }
}

.flow {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3.2vw, 3rem);
  margin-top: clamp(1.75rem, 4vw, 3rem);
}
.flow__circle { min-width: 0; }
/* inside the flow, stack the circle diagram over its legend */
.flow__circle .circle { grid-template-columns: 1fr; gap: clamp(1rem, 2.5vw, 1.75rem); }
.flow__circle .circle__svg { max-width: 430px; }

/* connector between circle and outcomes */
.flow__link {
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  align-self: center;
}
.flow__lead {
  font-family: var(--mono); font-size: .56rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  font-variation-settings: 'wght' 600;
}
.flow__arw { width: clamp(60px, 8vw, 118px); height: auto; overflow: visible; }
.flow__arw-line { stroke-dasharray: 120; stroke-dashoffset: 120; }
[data-rv].flow.rv-in .flow__arw-line { animation: circle-draw 1s var(--ease) .15s forwards; }
.flow__arw-tip { opacity: 0; transition: opacity .3s var(--ease) .9s; }
[data-rv].flow.rv-in .flow__arw-tip { opacity: 1; }

/* outcomes list on the right */
.flow__out { min-width: 0; }
.flow__out > .tag { display: inline-block; margin-bottom: 1.15rem; }
.octo { list-style: none; display: flex; flex-direction: column; gap: clamp(1.1rem, 2.2vw, 1.6rem); }
.oc { display: flex; gap: 1rem; align-items: flex-start; --oc-accent: var(--kraft-2); }
.oc--maker  { --oc-accent: var(--buoy); }
.oc--mentor { --oc-accent: var(--spruce); }
.oc--parent { --oc-accent: var(--navy); }
.oc__badge {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%;
  background: var(--kraft); border: 2.5px solid var(--ink);
  display: grid; place-items: center;
}
.oc__icon { width: 27px; height: 27px; }
.oc__body { min-width: 0; }
.oc__t {
  display: block; font-family: var(--display); font-size: 1.15rem;
  font-variation-settings: 'wght' 800, 'wdth' 92; letter-spacing: -.01em;
  color: var(--ink); line-height: 1.15;
}
.oc__t::after {
  content: ''; display: block; width: 26px; height: 2.5px;
  margin-top: .42rem; background: var(--oc-accent); border-radius: 2px;
}
.oc__x { display: block; margin-top: .5rem; font-size: .95rem; line-height: 1.5; color: var(--muted-2); }

@media (max-width: 860px) {
  .flow {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 5vw, 2rem);
    max-width: 470px; margin-inline: auto;
    justify-items: center;
  }
  .flow__circle { width: 100%; }
  .flow__circle .circle__svg { max-width: 360px; margin-inline: auto; }
  .flow__link { flex-direction: row; gap: .75rem; }
  .flow__arw { transform: rotate(90deg); width: 60px; }   /* point down when stacked */
  .flow__out { width: 100%; max-width: 400px; }
}

/* ============================================================
   VIDEO STORY CARDS
   ============================================================ */
.vids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.vid--play {
  border: 0; padding: 0; cursor: pointer; text-align: left;
  background: var(--ink-2); color: inherit;
  font: inherit;
  aspect-ratio: 4 / 5;
}
.vid__role {
  position: absolute; top: .8rem; left: .8rem; z-index: 3;
  font-family: var(--mono); font-size: .56rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .38rem .6rem; border-radius: 2px;
  color: #fff;
}
.vid__role--maker  { background: var(--buoy); }
.vid__role--mentor { background: var(--spruce); }
.vid__role--parent { background: var(--navy); }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.vmodal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.vmodal[hidden] { display: none; }
.vmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(8,15,26,.86);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: vfade .3s var(--ease);
}
.vmodal__box {
  position: relative; z-index: 2;
  width: min(960px, 100%);
  animation: vpop .4s var(--ease);
}
@keyframes vfade { from { opacity: 0; } }
@keyframes vpop { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.vmodal__frame {
  position: relative; aspect-ratio: 16/9;
  background: #000; border-radius: 4px; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.vmodal__frame video { position: absolute; inset: 0; width: 100%; height: 100%; }
.vmodal__close {
  position: absolute; top: -3.2rem; right: 0;
  background: none; border: 0; cursor: pointer;
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  transition: background-color .25s var(--ease);
}
.vmodal__close:hover { background: rgba(255,255,255,.14); }
.vmodal__cap {
  margin-top: 1rem; text-align: center;
  font-family: var(--display); font-size: 1.3rem;
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em; color: var(--paper);
}
.vmodal__role {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--buoy-lt); margin-left: .5rem;
  vertical-align: middle;
}

@media (max-width: 820px) {
  .circle { grid-template-columns: 1fr; }
  .vids { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .vmodal__close { top: -3rem; }
}
@media (max-width: 560px) {
  .circle__svg { max-width: 340px; }
}
@media (prefers-reduced-motion: reduce) {
  .circle__svg path[marker-end] { animation: none !important; stroke-dashoffset: 0 !important; }
}

/* ============================================================
   SHOP — live product grid + cart drawer
   ============================================================ */
.prods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.prod {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: 3px; overflow: hidden;
  border: 1px solid var(--hairline);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.prod:hover { transform: translateY(-5px); box-shadow: 0 24px 42px -26px rgba(14,28,46,.5); }
.prod__media { display: block; aspect-ratio: 1/1; overflow: hidden; background: var(--ink-2); }
.prod__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.prod:hover .prod__media img { transform: scale(1.06); }
.prod__body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.prod__t {
  font-family: var(--display); font-size: 1.05rem;
  font-variation-settings: 'wght' 700, 'wdth' 94;
  letter-spacing: -.01em; line-height: 1.12; color: var(--ink);
}
.prod__price {
  font-family: var(--mono); font-size: .78rem;
  font-variation-settings: 'wght' 600; color: var(--buoy);
  letter-spacing: .02em;
}
.prod__btn { margin-top: .65rem; align-self: flex-start; }

.shop__note {
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.shop__note::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: ig-pulse 2.4s ease-in-out infinite;
}
.shop__fallback-note {
  margin-top: 1.5rem; font-size: .95rem; color: var(--muted); line-height: 1.5;
}
.shop__fallback-note a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }

/* Shopify-injected product nodes get the same look as .prod via the buy-button
   config (see site.js), but we also style the wrapper so it lines up. */
#shopify-products[hidden] { display: none; }
.prods[data-shop-fallback][hidden] { display: none; }

@media (max-width: 960px) { .prods { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .prods { grid-template-columns: repeat(2, 1fr); } }
@media (prefers-reduced-motion: reduce) {
  .cart__panel, .cart__scrim { animation: none; }
  .shop__note::before { animation: none; }
}

/* ============================================================
   PRESS ARCHIVE
   ============================================================ */
.pfilters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.75rem;
}
.pfilter {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem .85rem; border-radius: 2px;
  background: transparent; color: var(--paper);
  border: 1px solid rgba(242,241,236,.28);
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  display: inline-flex; align-items: center; gap: .45rem;
}
.pfilter:hover { border-color: var(--buoy-lt); color: var(--buoy-lt); }
.pfilter[aria-pressed="true"] {
  background: var(--buoy); color: #fff; border-color: var(--buoy);
}
.pfilter__n {
  font-size: .56rem; opacity: .7;
  padding: .05rem .3rem; border-radius: 6px;
  background: rgba(242,241,236,.14);
}
.pfilter[aria-pressed="true"] .pfilter__n { background: rgba(255,255,255,.22); opacity: .9; }

.press { border-top: 1px solid rgba(242,241,236,.16); }
.prow {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 1.25rem; align-items: center;
  padding: 1.15rem .25rem;
  border-bottom: 1px solid rgba(242,241,236,.16);
  text-decoration: none; color: var(--paper);
  transition: background-color .25s var(--ease), padding-left .25s var(--ease);
}
.prow:hover { background: rgba(242,241,236,.05); padding-left: 1rem; }
.prow__date {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .04em; color: var(--buoy-lt);
  white-space: nowrap;
}
.prow__outlet {
  display: block;
  font-family: var(--display); font-size: 1.15rem;
  font-variation-settings: 'wght' 700, 'wdth' 94;
  letter-spacing: -.01em; line-height: 1.15; color: var(--paper);
}
.prow__meta {
  display: block; margin-top: .2rem;
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(242,241,236,.55);
}
.prow__go { color: var(--buoy-lt); opacity: 0; transform: translateX(-6px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.prow:hover .prow__go { opacity: 1; transform: none; }
.prow[hidden] { display: none; }

/* cabin masters — where to watch */
.watch-row { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: 1.5rem; }
.watch-row__lbl {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-right: .3rem;
}
.watch {
  font-family: var(--mono); font-size: .64rem;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .5rem .8rem; border-radius: 2px;
  border: 1px solid var(--hairline-d);
  color: var(--ink); text-decoration: none;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.watch:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

@media (max-width: 620px) {
  .prow { grid-template-columns: 1fr auto; gap: .5rem .9rem; }
  .prow__date { grid-column: 1 / -1; }
}

/* ============================================================
   IMPACT SNAPSHOT — ambient backdrop + dynamic stat cards
   ============================================================ */
.impact { position: relative; overflow: hidden; }
/* a huge faint numeral-grid wash so the navy reads as designed, not empty */
.impact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(242,241,236,.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(120% 90% at 85% 20%, #000, transparent 62%);
  -webkit-mask-image: radial-gradient(120% 90% at 85% 20%, #000, transparent 62%);
  pointer-events: none;
}
/* an oversized buoy ring drifting off the right edge for depth */
.impact::after {
  content: '';
  position: absolute; right: -8%; top: 8%;
  width: 34vw; height: 34vw; max-width: 460px; max-height: 460px;
  border: 1.5px solid rgba(240,121,92,.10);
  border-radius: 50%;
  pointer-events: none;
}
.impact .wrap { position: relative; z-index: 2; }

/* ============================================================
   YOUTH STORIES — Rosie + Sophie pair
   ============================================================ */
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.pair__card {
  display: flex; flex-direction: column;
  text-align: left; text-decoration: none; color: inherit;
  background: var(--white);
  border-radius: 3px; overflow: hidden;
  border: 1px solid var(--hairline);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  cursor: pointer;
  font: inherit;
}
button.pair__card { padding: 0; }
.pair__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 46px -26px rgba(14,28,46,.55);
}
.pair__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-2);
}
.pair__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.pair__card:hover .pair__media img { transform: scale(1.05); }
.pair__play {
  position: absolute; left: 50%; top: 50%;
  width: 62px; height: 62px;
  transform: translate(-50%, -50%);
  background: var(--buoy); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.5);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.pair__play svg { margin-left: 3px; }
.pair__card--video:hover .pair__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--buoy-dark);
}
.pair__badge {
  position: absolute; left: .75rem; bottom: .75rem;
  font-family: var(--mono); font-size: .58rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .45rem .7rem;
  background: rgba(14,28,46,.78);
  color: #fff; border-radius: 2px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.pair__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.pair__kicker {
  font-family: var(--mono); font-size: .58rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--buoy);
}
.pair__t {
  font-family: var(--display); font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em; line-height: 1.08;
  margin: .55rem 0 .65rem;
}
.pair__x {
  font-size: .98rem; line-height: 1.5;
  color: var(--muted-2); flex: 1;
}
.pair__card .card__go { margin-top: 1rem; }

/* ============================================================
   CIRCLE — mentor + parent voice buttons under the graphic
   ============================================================ */
.circle__voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 1.6vw, 1.1rem);
  max-width: 1000px; margin: clamp(1.75rem, 3.5vw, 2.75rem) auto 0;
}
.voice {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  text-align: left; font: inherit; color: var(--ink);
  cursor: pointer;
  aspect-ratio: auto;   /* override .vid--play's 4/5 — these are short horizontal cards */
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.voice:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 16px 30px -18px rgba(14,28,46,.35);
}
.voice__thumb {
  display: block; width: 64px; height: 64px;
  border-radius: 50%; overflow: hidden;
  background: var(--kraft);
}
.voice__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.voice:hover .voice__thumb img { transform: scale(1.06); }
.voice__badge {
  font-family: var(--mono); font-size: .48rem;
  font-variation-settings: 'wght' 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .45rem; border-radius: 2px;
  color: #fff;
  display: inline-block; margin-bottom: .3rem;
  align-self: flex-start;
}
.voice__badge--maker  { background: var(--buoy); }
.voice__badge--mentor { background: var(--spruce); }
.voice__badge--parent { background: var(--navy); }
.voice__body { display: flex; flex-direction: column; }
.voice__nm {
  font-family: var(--display); font-size: 1rem;
  font-variation-settings: 'wght' 700, 'wdth' 94;
  letter-spacing: -.01em; line-height: 1.1;
}
.voice__x {
  font-family: var(--body); font-size: .78rem;
  color: var(--muted); line-height: 1.35; margin-top: .15rem;
}
.voice__play {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: #fff;
  transition: background-color .3s var(--ease);
  flex-shrink: 0;
}
.voice:hover .voice__play { background: var(--buoy); }
.voice__play svg { margin-left: 2px; }

@media (max-width: 720px) {
  .pair { grid-template-columns: 1fr; }
  .circle__voices { grid-template-columns: 1fr; }
}
@media (max-width: 900px) and (min-width: 721px) {
  .circle__voices { grid-template-columns: 1fr; max-width: 520px; }
}

/* ============================================================
   STORY VIDEO CARD — homepage Rosie video button
   ============================================================ */
.story-vid {
  position: relative;
  display: block;
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  border-radius: 3px;
}
.story-vid__el {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
/* the clickable cover that sits over the poster until play */
.story-vid__cover {
  position: absolute; inset: 0;
  border: 0; padding: 0; margin: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  z-index: 2;
  transition: opacity .25s var(--ease);
}
.story-vid__cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,28,46,.55) 0%, transparent 45%);
  pointer-events: none;
}
/* once playing, hide the cover so native controls are usable */
.story-vid.is-playing .story-vid__cover {
  opacity: 0; pointer-events: none;
}
.story-vid__play {
  position: absolute; left: 50%; top: 50%;
  width: 72px; height: 72px;
  transform: translate(-50%, -50%);
  background: var(--buoy); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,.5);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
  z-index: 3;
}
.story-vid__play svg { margin-left: 3px; }
.story-vid__cover:hover .story-vid__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--buoy-dark);
}
.story-vid__badge {
  position: absolute; left: .85rem; bottom: .85rem; z-index: 3;
  font-family: var(--mono); font-size: .6rem;
  font-variation-settings: 'wght' 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem .75rem;
  background: rgba(14,28,46,.85);
  color: #fff; border-radius: 2px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* ============================================================
   FILM — full-width cinematic video banner
   ============================================================ */
.film {
  position: relative;
  width: 100%;
  background: var(--ink);
}
.film__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.film__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gfilters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.75rem;
}
.gfilter {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .55rem .9rem; border-radius: 2px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.gfilter:hover { border-color: var(--buoy); color: var(--buoy); }
.gfilter[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery-grid {
  columns: 4 220px;
  column-gap: clamp(.6rem, 1.2vw, 1rem);
}
.gtile {
  position: relative;
  break-inside: avoid;
  margin: 0 0 clamp(.6rem, 1.2vw, 1rem);
  border-radius: 3px; overflow: hidden;
  background: var(--ink-2);
}
.gtile img { width: 100%; height: auto; display: block; transition: transform .7s var(--ease); }
.gtile:hover img { transform: scale(1.05); }
.gtile__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem .8rem .7rem;
  font-family: var(--mono); font-size: .56rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(14,28,46,.82), transparent);
  opacity: 0; transition: opacity .3s var(--ease);
}
.gtile:hover .gtile__cap { opacity: 1; }
.gtile[hidden] { display: none; }

@media (max-width: 900px) { .gallery-grid { columns: 3 180px; } }
@media (max-width: 560px) { .gallery-grid { columns: 2 140px; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.contact-card {
  padding: 1.6rem 1.7rem;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: 4px;
}
.contact-card__k {
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--buoy); display: block; margin-bottom: .5rem;
}
.contact-card__v {
  font-family: var(--display); font-size: 1.3rem;
  font-variation-settings: 'wght' 700, 'wdth' 94;
  letter-spacing: -.01em; line-height: 1.2; color: var(--ink);
  text-decoration: none; display: block;
}
a.contact-card__v:hover { color: var(--buoy); }
.contact-card__x { font-size: .9rem; color: var(--muted); margin-top: .6rem; line-height: 1.5; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.8rem, 1.6vw, 1.2rem);
}
.social-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  text-decoration: none; color: var(--ink);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.social-card:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: 0 16px 30px -18px rgba(14,28,46,.3); }
.social-card__ico {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%; background: var(--ink); color: var(--paper);
}
.social-card:hover .social-card__ico { background: var(--buoy); }
.social-card__body { display: flex; flex-direction: column; flex: 1; }
.social-card__nm { font-family: var(--display); font-size: 1.05rem; font-variation-settings: 'wght' 700, 'wdth' 94; }
.social-card__hn { font-family: var(--mono); font-size: .64rem; color: var(--muted); margin-top: .15rem; }
.social-card__arw { color: var(--buoy); }

/* ============================================================
   INTEGRATION PLACEHOLDERS (Givebutter, Eventbrite, Calendly)
   ============================================================ */
.gb-placeholder, .eb-placeholder, .calendly-placeholder {
  border: 1.5px dashed var(--hairline);
  border-radius: 5px;
  background: var(--paper-2);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.gb-placeholder__inner, .eb-placeholder__inner, .calendly-placeholder__inner {
  max-width: 460px; margin-inline: auto;
}
.gb-placeholder__icon, .eb-placeholder__icon, .calendly-placeholder__icon {
  display: inline-grid; place-items: center;
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--kraft); color: var(--kraft-ink);
  margin-bottom: 1.25rem;
}
.gb-placeholder h3, .eb-placeholder h3, .calendly-placeholder h3 {
  font-family: var(--display); font-size: 1.35rem;
  font-variation-settings: 'wght' 800, 'wdth' 92; letter-spacing: -.02em;
  margin-bottom: .6rem; color: var(--ink);
}
.gb-placeholder p, .eb-placeholder p, .calendly-placeholder p {
  color: var(--muted-2); line-height: 1.6; margin-bottom: 1.5rem;
}
.gb-placeholder__actions, .calendly-placeholder__actions {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
.calendly-wrap, .gb-embed, .eb-widget { min-height: 100px; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EDITORIAL ARTICLE LAYOUT — mission & our-story body sections
   Replaces the flat split/prose wall with scannable blocks:
   a standout lede, a feature pull-quote, and heading-in-rail
   article rows with hairline dividers.
   ============================================================ */
/* ============================================================
   ARTICLE — editorial long-form layout (Mission, Our Story)
   Centered single column with strong chapter anchors, no dead
   side-rail. Numbered markers + inline headings give the eye
   real entry points instead of a uniform wall of text.
   ============================================================ */
.article {
  max-width: 1080px;
  margin-inline: auto;
}

/* the opening statement — large, sets the tone, full measure */
.article__lede {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-variation-settings: 'wght' 500, 'wdth' 96, 'opsz' 40;
  line-height: 1.26;
  letter-spacing: -.015em;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 2px solid var(--ink);
}
.article__lede--wide { max-width: 34ch; }
.article__lede em { font-style: italic; color: var(--buoy-dark); }

/* a feature callout that breaks the flow — offset, kraft panel */
.article__feature {
  position: relative;
  margin: clamp(2.25rem, 4vw, 3rem) 0;
  margin-left: auto;
  width: min(100%, 62ch);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--kraft);
  border-radius: 4px;
  box-shadow: 0 18px 34px -22px rgba(78,61,34,.5);
}
.article__feature p {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  font-variation-settings: 'wght' 700, 'wdth' 92, 'opsz' 40;
  line-height: 1.24;
  letter-spacing: -.02em;
  color: var(--kraft-ink);
  margin: 0;
}
.article__feature .article__kicker {
  display: block;
  font-family: var(--mono);
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--buoy-dark); margin-bottom: .85rem;
}

/* each themed block: a big chapter number, heading inline above body */
.article__block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 290px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  border-top: 1px solid var(--hairline);
}
.article__block:last-child { border-bottom: 1px solid var(--hairline); }

.article__head {
  position: sticky;
  top: 6.5rem;
  align-self: start;
  height: fit-content;
}
/* oversized chapter number as the anchor */
.article__idx {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-variation-settings: 'wght' 800, 'wdth' 86;
  line-height: .9;
  color: #867349;
  letter-spacing: -.04em;
  margin-bottom: .5rem;
}
.article__idx span {
  display: block;
  font-family: var(--mono);
  font-size: .56rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--buoy); margin-top: .5rem;
  font-variation-settings: 'wght' 600;
}
.article__h {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0;
}
.article__body { max-width: 68ch; }
.article__body > p {
  margin: 0 0 1.2rem;
  color: var(--ink-3);
  font-size: 1.08rem;
  line-height: 1.68;
}
.article__body > p:last-child { margin-bottom: 0; }
/* first paragraph of each block gets emphasis so the eye lands there */
.article__body > p:first-child {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.55;
}
.article__body em { font-style: italic; color: var(--buoy-dark); }
.article__body strong { font-variation-settings: 'wght' 700; color: var(--ink); }

@media (max-width: 820px) {
  /* collapse to single column: number + heading stack above the body */
  .article__block { grid-template-columns: 1fr; gap: 1.1rem; padding: 2.25rem 0; }
  .article__head { position: static; }
  .article__idx { font-size: 2.6rem; margin-bottom: .25rem; }
  .article__idx span { display: inline-block; margin-left: .6rem; margin-top: 0; }
  .article__h { font-size: 1.55rem; }
  .article__lede, .article__lede--wide { max-width: none; }
  .article__feature { width: 100%; margin-left: 0; }
}

/* ============================================================
   SUPPORTERS — donor roll (printed-program style)
   ============================================================ */
.roll-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  border-top: 1px solid var(--hairline);
}
.roll-block:last-child { border-bottom: 1px solid var(--hairline); }
.roll-block__head { position: relative; }
.roll-block__t {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em; line-height: 1.05;
  color: var(--ink);
  margin: .6rem 0 .75rem;
}
.roll-block__x {
  font-size: .95rem; line-height: 1.55;
  color: var(--muted-2);
  max-width: 30ch;
}
.roll-block__n {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--buoy);
  padding: .4rem .65rem;
  border: 1px solid var(--buoy);
  border-radius: 2px;
}
/* the names themselves — flow in tidy columns, each on its own line */
.roll {
  list-style: none; margin: 0; padding: 0;
  columns: 2;
  column-gap: clamp(1.5rem, 3vw, 2.75rem);
}
@media (min-width: 1100px) { .roll { columns: 3; } }
.roll__i {
  break-inside: avoid;
  padding: .55rem 0 .55rem 1.1rem;
  position: relative;
  font-family: var(--display);
  font-size: 1.02rem;
  font-variation-settings: 'wght' 600, 'wdth' 94;
  line-height: 1.3;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}
/* a small kraft tick before each name */
.roll__i::before {
  content: '';
  position: absolute; left: 0; top: 1.15rem;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--kraft-2);
}
.roll__i:hover { color: var(--buoy); }
.roll__i:hover::before { background: var(--buoy); }

@media (max-width: 720px) {
  .roll-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .roll { columns: 2; }
}
@media (max-width: 460px) {
  .roll { columns: 1; }
}

/* ============================================================
   NBRC GRANT — distinct featured section on supporters page
   ============================================================ */
.nbrc {
  /* clear separation from the plain intro above */
  border-top: 1px solid var(--hairline);
}
.nbrc__body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: stretch;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--kraft);
  border-radius: 5px;
  box-shadow: 0 22px 44px -28px rgba(78,61,34,.55);
}
.nbrc__media {
  border-radius: 3px; overflow: hidden;
  background: var(--kraft-2);
  min-height: 100%;
}
.nbrc__media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; display: block; }
.nbrc__text > p {
  margin: 0 0 1.15rem;
  color: var(--kraft-ink);
  font-size: 1.06rem;
  line-height: 1.6;
}
.nbrc__text > p:last-child { margin-bottom: 0; }
.nbrc__text > p:first-child {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-variation-settings: 'wght' 600, 'wdth' 94;
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--ink);
}
.nbrc__text strong { font-variation-settings: 'wght' 800; color: var(--buoy-dark); }

@media (max-width: 760px) {
  .nbrc__body { grid-template-columns: 1fr; }
  .nbrc__media { aspect-ratio: 16/10; max-height: 320px; }
}

/* ============================================================
   TIMELINE WITH MEDIA — alternating image + text milestones
   ============================================================ */
.tlm {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(1rem, 2vw, 2rem) 0;
}
/* faint vertical spine down the center connecting the milestones */
.tlm::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--hairline);
  z-index: 0;
}

.tlm__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5.5rem) 0;   /* generous vertical breathing room */
  position: relative;
}
.tlm__row--flip { direction: rtl; }
.tlm__row--flip > * { direction: ltr; }

/* a dot on the spine marking each milestone */
.tlm__row::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--buoy);
  box-shadow: 0 0 0 6px var(--paper-2);
  z-index: 2;
}
.sect--paper2 .tlm__row::after { box-shadow: 0 0 0 6px var(--paper-2); }

.tlm__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-2);
  box-shadow: 0 22px 44px -28px rgba(14,28,46,.4);
}
.tlm__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.tlm__row:hover .tlm__media img { transform: scale(1.04); }

/* year label overlaid on each photo — mono, small, feels like a plate caption */
.tlm__year {
  position: absolute;
  left: .9rem; bottom: .9rem;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-variation-settings: 'wght' 600;
  padding: .45rem .7rem;
  background: rgba(14,28,46,.88);
  color: #fff;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tlm__body { position: relative; }
.tlm__t {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .9rem;
}
.tlm__x {
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--ink-3);
  margin: 0;
  max-width: 46ch;
}

@media (max-width: 800px) {
  .tlm::before { left: 24px; }
  .tlm__row, .tlm__row--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.25rem;
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(2rem, 5vw, 3rem) 3rem;
  }
  .tlm__row::after {
    left: 24px;
    top: clamp(2rem, 5vw, 3rem);
    transform: translate(-50%, 0);
  }
  .tlm__row--flip > * { direction: ltr; }
  .tlm__media { aspect-ratio: 16 / 10; }
}

/* ============================================================
   FOCUS AREAS — bulleted list of skills/topics inside a feat card
   ============================================================ */
.focus {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem clamp(1rem, 2vw, 1.6rem);
  max-width: 46ch;
}
.focus li {
  position: relative;
  padding: .3rem 0 .3rem 1.15rem;
  font-family: var(--body);
  font-size: .94rem;
  line-height: 1.4;
  color: var(--ink-3);
  break-inside: avoid;
}
.focus li::before {
  content: '';
  position: absolute;
  left: 0; top: .78rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--buoy);
}
@media (max-width: 560px) {
  .focus { grid-template-columns: 1fr; }
}

/* ============================================================
   STORY PAIR — Rosie (video) + Sophie (written), side by side
   Each card is fully self-contained with its own tag, heading,
   media/text, and CTA so it's unmistakable which is which.
   ============================================================ */
.story-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  position: relative;
}
.story-pair::before {
  /* subtle vertical divider between the two cards on desktop */
  content: '';
  position: absolute;
  left: 50%; top: 6%; bottom: 6%;
  width: 1px;
  background: var(--hairline);
  transform: translateX(-50%);
  pointer-events: none;
}
.story-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(.5rem, 1vw, 1rem);
}
.story-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}
.story-card__t {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
.story-card__x {
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink-3);
  margin: 0;
  max-width: 44ch;
}
.story-card__cta { margin-top: .3rem; }

@media (max-width: 800px) {
  .story-pair { grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem); }
  .story-pair::before {
    /* on mobile: turn the divider into a horizontal line between stacked cards */
    left: 6%; right: 6%; width: auto;
    top: 50%; bottom: auto; height: 1px;
    transform: none;
  }
}

/* ============================================================
   THE CHANGEMAKER CIRCLE — tight integrated block
   Intro on the left, diagram + legend on the right, all
   sharing the same row so no side of the block is empty.
   ============================================================ */
.circle-block {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(1rem, 2vw, 1.75rem) 0;
}
.circle-block__intro { max-width: 34ch; }
.circle-block__t {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.022em;
  line-height: 1.05;
  color: var(--ink);
  margin: .8rem 0 1.15rem;
}
.circle-block__x {
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--ink-3);
  margin: 0;
}

/* Tighter internal grid inside the diagram column:
   SVG above legend, both centered, close together. */
.circle-block__diagram .circle {
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.circle-block__diagram .circle__svg { max-width: 480px; }
.circle-block__diagram .circle__legend {
  max-width: 520px; margin-inline: auto;
  gap: .9rem;
}

@media (max-width: 900px) {
  .circle-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .circle-block__intro { max-width: none; }
}

/* ============================================================
   GIVEBUTTER LIVE WIDGET — the widget resizes as donors go through
   checkout, so the container must be free to grow/shrink (height: auto).
   Min-height gives the section space while the script loads.
   ============================================================ */
.gb-embed {
  min-height: 480px;
  height: auto;
  overflow: visible;
}
.gb-embed givebutter-widget { display: block; }

/* ============================================================
   GIVE FORM WRAP — two-column layout: portrait photo on the left,
   donation form on the right. Photo anchors the gift emotionally
   ("you're funding her"), form does the work.
   ============================================================ */
.give-form-wrap {
  max-width: 1100px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}
.give-form-wrap__aside {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 24px 44px -30px rgba(14,28,46,.35);
}
.give-form-wrap__aside img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.give-form-wrap__aside figcaption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: .75rem 1rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: .95rem;
  font-variation-settings: 'wght' 600;
  line-height: 1.3;
  border-radius: 3px;
}
.give-form-wrap__form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.give-form-wrap__form .gb-embed {
  max-width: none;
  min-height: 480px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  width: 100%;
}
/* Givebutter's custom element — center within the form column */
.give-form-wrap givebutter-widget {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.give-form-wrap givebutter-widget iframe {
  display: block;
  margin: 0 auto !important;
  max-width: 100%;
}

@media (max-width: 800px) {
  .give-form-wrap {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .give-form-wrap__aside {
    min-height: 320px;
    max-height: 400px;
  }
}

/* ============================================================
   FLOATING "SUPPORT CES" — persistent scroll-triggered CTA
   Fixed to bottom-right of viewport, hidden at top of page,
   fades in once the user has scrolled a bit, hidden entirely
   on the donate page (already there — no point).
   ============================================================ */
.floater {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.25rem;
  background: var(--buoy);
  color: #fff;
  font-family: var(--mono);
  font-size: .68rem;
  font-variation-settings: 'wght' 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 18px 36px -14px rgba(200,52,26,.55), 0 6px 14px -6px rgba(14,28,46,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .2s var(--ease), visibility 0s linear .3s;
}
.floater:hover {
  background: var(--buoy-dark);
  color: #fff;
}
.floater.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .2s var(--ease), visibility 0s linear 0s;
}
.floater--off { display: none !important; }
.floater svg { flex: none; }

@media (max-width: 480px) {
  .floater span { display: none; }
  .floater { padding: .85rem; }
  .floater svg { width: 20px; height: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .floater { transition: opacity .01s, visibility 0s; transform: none; }
  .floater.is-visible { transform: none; }
}

/* ============================================================
   MAIL CHOOSER — modal that pops up when a user clicks any
   mailto: link. Offers Gmail / Outlook web / Yahoo / default
   mail app / copy address. Prevents "Update Outlook" popups
   for users who don't have a mail client configured.
   ============================================================ */
.mchooser {
  position: fixed; inset: 0;
  z-index: 200;
  display: grid; place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.mchooser[hidden] { display: none; }
.mchooser__backdrop {
  position: absolute; inset: 0;
  background: rgba(14, 28, 46, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mchooser__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--paper);
  border-radius: 8px;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 40px 80px -30px rgba(14,28,46,.6), 0 12px 30px -12px rgba(14,28,46,.35);
  max-height: 90vh;
  overflow-y: auto;
}
.mchooser__close {
  position: absolute;
  top: .85rem; right: .85rem;
  width: 32px; height: 32px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink-3);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.mchooser__close:hover { background: var(--hairline); color: var(--ink); }
.mchooser__eyebrow {
  margin-bottom: .9rem;
}
.mchooser__t {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  font-variation-settings: 'wght' 800, 'wdth' 92;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 .5rem;
}
.mchooser__x {
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0 0 1.25rem;
}
.mchooser__opts {
  display: flex; flex-direction: column;
  gap: .55rem;
}
.mchooser__opt {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .85rem 1rem;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .1s var(--ease);
}
.mchooser__opt:hover {
  border-color: var(--buoy);
  background: #fff;
}
.mchooser__opt:active { transform: scale(.99); }
.mchooser__opt b {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  font-variation-settings: 'wght' 700;
  color: var(--ink);
  line-height: 1.2;
}
.mchooser__opt em {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--muted-2);
  margin-top: .18rem;
  text-transform: none;
}
.mchooser__ico {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 4px;
  background: var(--kraft);
  color: var(--kraft-ink);
  flex: none;
}
.mchooser__opt--copy .mchooser__ico { background: var(--spruce); color: #fff; }
.mchooser__toast {
  margin: 1rem 0 0;
  padding: .55rem .85rem;
  background: var(--spruce);
  color: #fff;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
}
.mchooser__toast[hidden] { display: none; }

@media (max-width: 480px) {
  .mchooser__box { padding: 1.5rem 1.25rem; }
  .mchooser__opt { padding: .75rem .85rem; grid-template-columns: 36px 1fr; }
  .mchooser__ico { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .mchooser__opt, .mchooser__close { transition: none; }
}

/* body lock when open (added by JS) */
body.mchooser-open { overflow: hidden; }

/* ============================================================
   IMPACT — partner invitation block + range stat treatment
   ============================================================ */
.partners {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 1.8vw, 1.5rem);
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--buoy);
  border-radius: 2px;
  padding: clamp(1.4rem, 2.4vw, 2rem) clamp(1.5rem, 2.6vw, 2.2rem);
}
.partners__t {
  font-family: var(--display);
  font-variation-settings: 'wght' 800, 'wdth' 92;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  letter-spacing: -.015em; line-height: 1.1; color: var(--ink);
  margin: .55rem 0 .5rem;
}
.partners__x { font-size: .96rem; line-height: 1.55; color: var(--ink-3); max-width: 60ch; margin: 0; }
.partners__cta { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 760px) {
  .partners { grid-template-columns: 1fr; }
}

/* numeric range stat (e.g. 10–24): loosen the tight display tracking so the dash breathes */
.stat__n--range { letter-spacing: -.005em; }
.stat__n--range .rdash { padding: 0 .06em; font-variation-settings: 'wght' 600, 'wdth' 88; }

/* impact — "free for young people" highlight callout */
.free-note {
  margin-top: 1.15rem;
  padding: .95rem 1.15rem;
  background: var(--kraft);
  border-left: 4px solid var(--buoy);
  border-radius: 2px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--kraft-ink);
  max-width: 54ch;
}
.free-note strong {
  color: var(--buoy-dark);
  font-weight: 700;
}

/* ============================================================
   YOUTH STORIES — prominent video cards
   ============================================================ */
.circle-top .circle-voices { min-width: 0; }
.voices__eyebrow { display: inline-block; margin-bottom: .6rem; }
.circle-top .circle-voices .circle__voices { grid-template-columns: 1fr; max-width: none; margin: 0; gap: 1rem; }

.voice {
  grid-template-columns: 172px 1fr;
  gap: 1.15rem;
  align-items: center;
  padding: .85rem;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.voice:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -22px rgba(14,28,46,.55);
  border-color: var(--kraft-2);
}
.voice__thumb {
  width: 172px; height: auto; aspect-ratio: 16 / 9;
  border-radius: 5px; overflow: hidden; position: relative;
  background: var(--kraft);
}
.voice__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voice__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(14,28,46,.02), rgba(14,28,46,.30));
}
.voice__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--buoy); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 5px 16px rgba(0,0,0,.32);
  z-index: 2;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.voice:hover .voice__play { transform: translate(-50%, -50%) scale(1.09); background: var(--buoy-dark); }
.voice__play svg { width: 17px; height: 17px; margin-left: 2px; }
.voice__nm { font-size: 1.18rem; }
.voice__body::after {
  content: "Watch the video →";
  font-family: var(--mono); font-size: .56rem; font-variation-settings: 'wght' 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--buoy);
  margin-top: .55rem;
}
@media (max-width: 860px) {
  .voice { grid-template-columns: 140px 1fr; }
  .voice__thumb { width: 140px; }
}
@media (max-width: 420px) {
  .voice { grid-template-columns: 110px 1fr; gap: .85rem; }
  .voice__thumb { width: 110px; }
  .voice__play { width: 42px; height: 42px; }
}
