/* ============================================================
   ZOLLHOF × Yunus Social Innovation — Impact Fellowship 2026
   Bold Swiss grid. Black hairline lattice via "gap reveals ink".
   Equal gutters on every side. Freisteller imagery on colour blocks.
   ============================================================ */

:root {
  --ink:        #242927;
  --ink-soft:   #4a4f4c;
  --paper:      #ffffff;
  --cream:      #f4ecdd;
  --cream-deep: #ece0ca;
  --lilac:      #d9bbf6;
  --lilac-2:    #e8d8fa;
  --sage:       #93a79a;
  --sage-2:     #b8c6bc;
  --sage-deep:  #5d7468;
  --orange:     #f1532e;
  --blue:       #2e1fd9;
  --grape:      #d9bbf6;   /* was dark purple — now light lilac per request */

  --line: 2.5px;                       /* black grid hairline           */
  --gutter: clamp(16px, 3.6vw, 56px);  /* equal outer padding, all sides */
  --cell: clamp(24px, 3vw, 56px);      /* inner cell padding            */
  --maxw: 1320px;

  --ff: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.4;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;            /* belt-and-braces: never allow sideways scroll */
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lilac); color: var(--ink); }

/* ---- typography ---- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}
.display { font-size: clamp(40px, 6.4vw, 96px); letter-spacing: -0.04em; }
.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.serif-note { font-style: italic; font-weight: 500; text-transform: none; letter-spacing: -0.01em; }

/* reveal */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].rise { transform: translateY(66px); }
[data-reveal].rise.in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   PAGE FRAME  — equal gutters, black lattice
   ========================================================= */
.page {
  max-width: none;
  margin-inline: auto;
  padding: 0;
}
.frame {
  background: var(--ink);                 /* the gridline colour       */
  border: none;
  display: flex; flex-direction: column;
  gap: var(--line);                       /* horizontal rules between bands */
  overflow: hidden;                       /* keep the outer frame crisp */
}

/* a band that is a column grid: gaps reveal ink = vertical + inner rules */
.row { display: grid; gap: var(--line); background: var(--ink); }
/* a section that stacks several rows behind the same lattice */
.stack { display: flex; flex-direction: column; gap: var(--line); background: var(--ink); }

/* default cell surface */
.cell { background: var(--cream); padding: var(--cell); position: relative; }

/* =========================================================
   NAV  — prominent logo
   ========================================================= */
.nav { grid-template-columns: auto 1fr auto; align-items: stretch; position: relative; z-index: 40; }
.nav:has(.nav__links) { grid-template-columns: auto auto 1fr auto; }   /* main page: countdown fills the gap */
.nav__brand {
  display: flex; align-items: center; gap: 14px;
  padding: 14px clamp(18px, 2vw, 30px);
  background: var(--cream);
}
.nav__brand img { height: clamp(40px, 4.4vw, 56px); width: auto; aspect-ratio: 1924 / 1450; object-fit: contain; }   /* logo bigger, undistorted */
.nav__links { display: flex; background: var(--cream); }
.nav__links a {
  display: flex; align-items: center; background: var(--cream);
  padding: 0 clamp(16px, 1.6vw, 26px);
  border-right: var(--line) solid var(--ink);
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .2s, color .2s;
}

.nav__links a:hover { background: var(--lilac); }
.nav__links a:last-child { border-right: 0; }   /* avoid doubling with the grid gap line */
.nav__cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 0 clamp(20px, 2.2vw, 34px);
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  transition: filter .2s;
}
.nav__cta:hover { filter: brightness(1.08); }
.nav .navcd { margin-top: 0; gap: 2px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: var(--lilac); padding: 0 clamp(12px, 1.5vw, 22px); }
.navcd__lbl { font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.navcd__t { font-size: clamp(12px, 1.05vw, 14px); font-weight: 800; letter-spacing: -0.01em; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.navcd__t b { font-weight: 800; }
.nav__right { display: flex; gap: var(--line); background: var(--lilac); align-items: stretch; }

/* ---- hamburger toggle + drop menu (mobile/tablet) ---- */
.nav__toggle { display: none; }
.nav__bars { position: relative; display: block; width: 24px; height: 16px; }
.nav__bars span { position: absolute; left: 0; right: 0; height: 2.5px; background: #fff; border-radius: 2px;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .2s; }
.nav__bars span:nth-child(1) { top: 0; }
.nav__bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__bars span:nth-child(3) { bottom: 0; }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }
.navmenu { display: none; }

@media (max-width: 700px) {
  .nav__right .navcd { display: none; }
  .nav:has(.nav__links) .navcd { display: none; }
  .nav:has(.nav__links) { grid-template-columns: 1fr auto auto; }
}
@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav:has(.nav__links) { grid-template-columns: auto 1fr auto auto; }
  .nav__links { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: clamp(54px, 15vw, 64px); background: var(--ink); color: #fff;
    border: none; cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .navmenu {
    display: grid; position: absolute; top: 100%; left: 0; right: 0; z-index: 39;
    background: var(--ink); gap: var(--line); padding-bottom: var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .26s ease, transform .3s cubic-bezier(.2,.8,.2,1), visibility .26s;
    box-shadow: 0 18px 42px rgba(0,0,0,.32);
  }
  .navmenu[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
  .navmenu a {
    background: var(--cream); padding: 16px var(--cell);
    font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    transition: background .18s, color .18s, padding-left .18s;
  }
  .navmenu a::after { content: "\2192"; opacity: .32; font-weight: 700; }
  .navmenu a:hover, .navmenu a:active { background: var(--lilac); padding-left: calc(var(--cell) + 6px); }
  .navmenu__cta { background: var(--orange) !important; color: #fff; }
  .navmenu__cta::after { content: "\2197"; opacity: 1; }
  .navmenu__cta:hover, .navmenu__cta:active { background: var(--orange) !important; filter: brightness(1.07); }
}
@media (max-width: 480px) {
  .nav__cta { padding: 0 clamp(14px, 4vw, 20px); font-size: 12px; letter-spacing: 0.04em; }
}
@media (prefers-reduced-motion: reduce) {
  .navmenu { transition: opacity .2s ease, visibility .2s; transform: none; }
  .navmenu[data-open="true"] { transform: none; }
  .nav__bars span { transition: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; background: var(--cream); overflow: hidden; padding: 0 var(--cell) 0; min-height: clamp(520px, 56vw, 660px);
  display: grid; grid-template-columns: 1.28fr 1fr; align-items: stretch; gap: clamp(20px,3vw,52px); }
.hero__inner { position: relative; z-index: 3; max-width: none; display: flex; flex-direction: column; justify-content: center; gap: 16px; padding-top: clamp(30px,3.6vw,58px); padding-bottom: clamp(30px,3.6vw,58px); border-right: var(--line) solid var(--ink); }
.hero__media { position: relative; align-self: stretch; min-height: clamp(340px, 40vw, 520px); }
.hero__inner h1 { max-width: 14ch; color: var(--ink); }
.hero__inner h1 em { font-style: normal; color: var(--ink); position: relative; display: inline-block; }
.hero__inner h1 em::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -22%; width: 152%;
  top: -40%; height: 240%;
  background: url('assets/scribble-circle-lilac.png') center/100% 100% no-repeat;
}
.hero__lede { font-size: clamp(16px, 1.45vw, 21px); max-width: 36ch; font-weight: 500; }
.hero__kicker {
  font-size: clamp(15px,1.3vw,18px); font-weight: 700; color: var(--sage-deep);
  text-transform: none; letter-spacing: -0.01em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__stats {
  margin-top: 10px; padding-top: 16px;
  display: flex; flex-wrap: wrap; gap: 6px 20px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  border-top: var(--line) solid var(--ink); max-width: 62%;
}
.hero__stats b { color: var(--ink); font-weight: 800; }

.hero__photo {
  position: absolute; right: 0; bottom: 0;
  width: 100%; max-width: clamp(400px, 56vw, 720px); height: auto; z-index: 2;
  filter: drop-shadow(11px 11px 0 var(--lilac)) drop-shadow(22px 22px 0 var(--orange)); pointer-events: none;
}
.hero__shape { position: absolute; z-index: 1; pointer-events: none; }
.hero__shape.arch { right: clamp(0px, 4%, 48px); bottom: 0; width: 86%; height: 90%; background: var(--sage); border-radius: 999px 999px 0 0; }
.hero__shape.diamond { top: 12%; right: 33%; width: 64px; height: 64px; background: var(--lilac); border-radius: 16%; transform: rotate(16deg); }
/* logo-echo accents floating around the hero image */
.hero__shape.half-green{ z-index: 3; top: 16%;  left: 18%; width: clamp(76px,7.8vw,112px); height: clamp(38px,3.9vw,56px); background: var(--sage-deep); border-radius: 999px 999px 0 0; animation: floaty-a 6.4s ease-in-out infinite; }
.hero__shape.tri-blue  { z-index: 3; bottom: 30%; left: 15%; width: clamp(46px,5.2vw,72px); height: clamp(40px,4.6vw,64px); background: var(--blue); clip-path: polygon(50% 0, 100% 100%, 0 100%); animation: floaty-b 7.6s ease-in-out infinite; }
.hero__shape.dot-orange{ z-index: 1; top: 7%;   left: 34%; width: clamp(26px,3vw,42px);  height: clamp(26px,3vw,42px); background: var(--orange); border-radius: 50%; animation: floaty-c 6.9s ease-in-out infinite .4s; }
.hero__shape.ring-lilac{ z-index: 3; top: 30%; right: 9%; width: clamp(36px,3.8vw,54px); height: clamp(36px,3.8vw,54px); border: clamp(5px,.55vw,8px) solid var(--lilac); border-radius: 50%; background: none; animation: floaty-b 7.1s ease-in-out infinite .6s; }
.hero__shape.sq-orange{ z-index: 3; bottom: 17%; left: 9%; width: clamp(26px,2.8vw,40px); height: clamp(26px,2.8vw,40px); background: var(--orange); border-radius: 5px; transform: rotate(12deg); animation: floaty-a 6.2s ease-in-out infinite .2s; }
@keyframes floaty-a { 0%,100% { translate: 0 0; }   50% { translate: 0 -15px; } }
@keyframes floaty-b { 0%,100% { translate: 0 0; }   50% { translate: 0 13px; } }
@keyframes floaty-c { 0%,100% { translate: 0 0; }   50% { translate: 6px -11px; } }
@media (prefers-reduced-motion: reduce) {
  .hero__shape.sq-ink, .hero__shape.circ-blue, .hero__shape.dot-orange { animation: none; }
}
.applybadge {
  position: absolute; top: clamp(6px,2vw,18px); right: clamp(6px,2vw,18px);
  width: clamp(96px,9vw,124px); aspect-ratio: 1; border-radius: 50%;
  background: var(--orange); color: #fff; z-index: 4;
  display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: 14px; line-height: 1.05; text-transform: uppercase;
  transform: rotate(-7deg); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.applybadge:hover { transform: rotate(6deg) scale(1.06); }
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-bottom: 0; gap: 0; }
  .hero__inner { max-width: 100%; padding-bottom: clamp(18px,5vw,28px); border-right: 0; }   /* drop stray vertical hairline when stacked */
  /* portrait photo is ~1.5x taller than wide — give the media box room so it can't spill up into the headline */
  .hero__media { min-height: clamp(420px, 118vw, 560px); }
  .hero__photo { width: auto; height: 92%; max-width: 90%; right: 5%; bottom: 0; }
  .hero__shape.arch { width: 82%; height: 96%; right: 5%; }
}
@media (max-width: 480px) {
  /* declutter the smallest scattered accents so they don't stack on the photo */
  .hero__shape.dot-orange, .hero__shape.sq-orange, .hero__shape.diamond { display: none; }
}
@media (max-width: 420px) {
  .display { font-size: clamp(34px, 11vw, 44px); letter-spacing: -0.03em; }
  .hero__inner h1 { max-width: 100%; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--lilac); overflow: hidden; white-space: nowrap; padding: 13px 0; }
.marquee__track { display: inline-flex; will-change: transform; animation: scroll-x 72s linear infinite; }
.marquee__track span {
  font-size: 15px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 22px;
}
.marquee__track span::after { content: "✺"; margin-left: 22px; color: var(--orange); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* =========================================================
   WHAT IS A FELLOWSHIP  — blue band, huge headline + text beside
   ========================================================= */
.defn { grid-template-columns: 1.04fr 0.96fr; gap: 0; }
.defn__head { background: var(--blue); display: flex; align-items: center; min-height: clamp(180px, 20vw, 280px); }
.defn__big { color: #fff; font-size: clamp(40px, 5.8vw, 92px); line-height: 0.92; letter-spacing: -0.035em; text-transform: uppercase; }
.defn__body { background: var(--blue); display: flex; align-items: center; }
.defn__txt { color: #fff; font-size: clamp(18px, 1.85vw, 27px); font-weight: 500; line-height: 1.34; letter-spacing: -0.012em; max-width: 34ch; text-transform: none; text-wrap: pretty; }
.defn__txt .hl-marker { font-weight: 800; color: #fff; }
.defn__txt .hl-marker::before { display: none; }
@media (max-width: 820px) {
  .defn { grid-template-columns: 1fr; }
  .defn__head { min-height: 0; }
}

/* =========================================================
   SECTION HEADINGS (shared)
   ========================================================= */
.sechead { display: flex; align-items: baseline; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap; }
.sechead h2 { font-size: clamp(30px, 4.2vw, 60px); }
.label { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* =========================================================
   THE NEED
   ========================================================= */
.need { grid-template-columns: 1.15fr 0.85fr; min-height: clamp(500px, 52vw, 620px); }
.need__text { background: var(--cream); padding: var(--cell); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.need__text h2 { font-size: clamp(30px, 4vw, 56px); max-width: 14ch; position: relative; isolation: isolate; color: #fff; }
.need__text h2::before {
  content: ""; position: absolute; z-index: -1;
  left: -26%; right: -8%; top: -34%; bottom: -34%;
  background: url('assets/scribble-black.png') center/100% 100% no-repeat;
}
.need__text .hl-marker::before { display: none; }
.need__text p { font-size: clamp(15.5px, 1.25vw, 18px); max-width: 56ch; color: var(--ink-soft); line-height: 1.5; }
.hl-marker { position: relative; white-space: nowrap; }
.hl-marker::before {
  content: ""; position: absolute; z-index: -1;
  left: -.12em; right: -.14em; top: 8%; bottom: 4%;
  background: var(--lilac);
  transform: rotate(-1.4deg) skewX(-9deg);
  clip-path: polygon(1% 14%, 99% 2%, 100% 84%, 97% 100%, 2% 96%, 0 22%);
}
.need__aside {
  background: var(--lilac-2); padding: var(--cell);
  display: block; overflow: hidden; position: relative;
}
.pullquote {
  font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; line-height: 1.04;
  letter-spacing: -0.02em; text-transform: none; text-wrap: balance;
}
.pullquote .mark { color: var(--blue); }
.need__aside--photo {
  display: flex; align-items: flex-end; justify-content: center;
  padding: clamp(20px,2.4vw,34px) clamp(8px,1vw,16px) 0; overflow: hidden;
}
.need__aside--photo .freisteller {
  float: none; width: auto; max-width: 100%; height: auto; max-height: clamp(460px, 50vw, 600px); margin: 0 auto -7%;
  shape-outside: none; object-fit: contain;
  filter: drop-shadow(11px 11px 0 var(--lilac)) drop-shadow(22px 22px 0 var(--orange));
}
@media (max-width: 820px) { .need { grid-template-columns: 1fr; } }

/* =========================================================
   THE DEAL
   ========================================================= */
.deal__head { grid-template-columns: 1.4fr 0.6fr; }
.deal__head .cell:first-child h2 { font-size: clamp(30px, 4.4vw, 60px); }
.deal__head .cell:last-child { display: flex; align-items: flex-end; justify-content: flex-end; background: var(--blue); color: #fff; }
.deal__head .cell:last-child .label { color: rgba(255,255,255,.85); }

.statrow { grid-template-columns: repeat(3, 1fr); }
.stat { padding: var(--cell); min-height: clamp(160px, 17vw, 240px); display: flex; flex-direction: column; justify-content: center; }
.stat:nth-child(1) { background: var(--lilac-2); }
.stat:nth-child(2) { background: var(--sage-2); }
.stat:nth-child(3) { background: var(--cream-deep); }
.stat__num { font-size: clamp(46px, 6.4vw, 90px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.86; }
.stat:nth-child(1) .stat__num { color: var(--blue); }
.stat:nth-child(2) .stat__num { color: var(--sage-deep); }
.stat:nth-child(3) .stat__num { color: var(--grape); }
.stat__label { margin-top: 10px; font-weight: 600; font-size: 14px; color: var(--ink-soft); }

.deal__lead .cell { background: var(--cream); }
.deal__lead p { font-size: clamp(18px, 1.9vw, 27px); font-weight: 600; line-height: 1.3; letter-spacing: -0.015em; color: var(--ink); max-width: 44ch; }

.deal__eco { grid-template-columns: 0.82fr 1.18fr; }
.deal__eco .q { background: var(--blue); color: #fff; padding: var(--cell); min-height: clamp(170px, 18vw, 260px); display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.deal__eco .q .tag { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; opacity: .8; }
.deal__eco .q h3 { font-size: clamp(20px, 2.2vw, 30px); text-transform: none; letter-spacing: -0.02em; line-height: 1.05; }
.deal__eco .a { background: var(--cream); padding: var(--cell); display: flex; align-items: center; }
.deal__eco .a p { font-size: clamp(15px, 1.25vw, 17px); color: var(--ink-soft); line-height: 1.55; max-width: 60ch; }

.paths { grid-template-columns: 1fr 1fr; }
.path { padding: var(--cell); display: flex; flex-direction: column; gap: 10px; }
.path--a { background: var(--sage); }
.path--b { background: var(--lilac); }
.path__tag {
  align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; background: var(--cream); border: var(--line) solid var(--ink);
}
.path h3 { font-size: clamp(20px, 2.1vw, 27px); text-transform: none; letter-spacing: -0.02em; }
.path p { color: var(--ink); opacity: .84; }

.dealbar { background: var(--ink); color: var(--paper); padding: clamp(20px,2.4vw,30px) var(--cell);
  font-size: clamp(17px, 1.9vw, 23px); font-weight: 700; letter-spacing: -0.01em; text-transform: none; }

.focus { grid-template-columns: 1fr 1fr; }
.focus__media { background: var(--lilac); position: relative; overflow: hidden; min-height: 300px; }
.focus__media img { width: 100%; max-width: none; margin-left: 0; height: 100%; object-fit: contain; object-position: center bottom; transform: scale(1.24); transform-origin: 50% 100%;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), filter .3s;
  filter: drop-shadow(9px 9px 0 var(--sage-deep)) drop-shadow(18px 18px 0 var(--orange)); }
@media (hover: hover) { .focus__media:hover img { transform: scale(1.24) translate(-3px,-3px); filter: drop-shadow(13px 13px 0 var(--sage-deep)) drop-shadow(24px 24px 0 var(--orange)); } }
.focus__text { background: var(--grape); padding: var(--cell); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.focus__text h3 { color: var(--sage-deep); }
.focus__text .ink-grape { color: var(--sage-deep); }
.focus__text p { color: var(--ink) !important; }
.focus__mark { width: 54px; height: 54px; border-radius: 50%; background: var(--orange); color: var(--cream); display: grid; place-items: center; font-size: 30px; font-weight: 800; transform: rotate(-6deg); }
.focus__text h3 { font-size: clamp(22px, 2.5vw, 34px); text-transform: none; letter-spacing: -0.02em; }
.focus__title { font-size: clamp(38px, 5vw, 72px) !important; font-weight: 800; line-height: .98; letter-spacing: -0.03em; }
.ink-grape { color: var(--grape); }
.ink-orange { color: var(--orange); }
.focus__text p { color: var(--ink-soft); max-width: 44ch; font-size: clamp(15px,1.3vw,17px); line-height: 1.5; }
@media (max-width: 820px) {
  .deal__head, .statrow, .deal__eco, .paths, .focus { grid-template-columns: 1fr; }
  .focus__media { min-height: 240px; }
}

/* =========================================================
   PROGRAM
   ========================================================= */
.program__head { grid-template-columns: 1fr; }
.program__head--solo { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; text-align: left; }
.program__head .program__head--solo .lede { color: #fff; max-width: 60ch; align-self: center; text-align: center; }
.program__head--solo .label { color: #fff; }
.program__head .cell:first-child h2 { font-size: clamp(30px, 4.4vw, 60px); margin-top: 12px; }
.program__head .cell:first-child.has-blob { background: var(--orange); color: #fff; }
.program__head .cell:first-child.has-blob h2 { text-shadow: none; }
.program__head .cell:first-child.has-blob .label { color: rgba(255,255,255,.92); }
.program__head .cell:last-child { background: var(--cream-deep); display: flex; align-items: center; }
.program__head .lede { font-weight: 500; color: var(--ink-soft); font-size: clamp(15px,1.3vw,18px); }

.phases { grid-template-columns: repeat(5, 1fr); }
.phase { cursor: pointer; display: flex; flex-direction: column; background: var(--cream); }
.phase__top { padding: 16px 15px 18px; min-height: 150px; display: flex; flex-direction: column; gap: 9px; position: relative; }
.phase--1 .phase__top { background: var(--orange); color: #fff; }
.phase--2 .phase__top { background: var(--cream-deep); }
.phase--3 .phase__top { background: var(--sage); }
.phase--4 .phase__top { background: var(--lilac); }
.phase--5 .phase__top { background: var(--blue); color: #fff; }
.phase__wk { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; opacity: .82; }
.phase__name { font-size: clamp(16px, 1.35vw, 20px); text-transform: uppercase; letter-spacing: -0.01em; }
.phase__q { font-size: 12.5px; font-weight: 500; line-height: 1.3; margin-top: auto; text-transform: none; }
.phase__detail {
  max-height: 0; overflow: hidden; background: var(--cream);
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.5;
  transition: max-height .4s ease, padding .4s ease; padding: 0 15px;
}
.phase.open .phase__detail { max-height: 320px; padding: 15px; }
.phase__plus {
  position: absolute; top: 13px; right: 13px; width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid currentColor; display: grid; place-items: center; font-size: 15px; font-weight: 800; line-height: 1;
  transition: transform .3s;
}
.phase.open .phase__plus { transform: rotate(45deg); }
.program__note { background: var(--lilac); padding: clamp(20px,2.4vw,30px) var(--cell); font-size: 15px; font-weight: 500; position: relative; }
.program__note { --w: 14px;
  -webkit-mask: radial-gradient(var(--w) at 50% calc(100% - var(--w)), #000 99%, transparent 101%) calc(50% - 2*var(--w)) 0/calc(4*var(--w)) 100% repeat-x,
                radial-gradient(var(--w) at 50% calc(100% + var(--w)), transparent 99%, #000 101%) 50% calc(100% - var(--w))/calc(4*var(--w)) 100% repeat-x;
          mask: radial-gradient(var(--w) at 50% calc(100% - var(--w)), #000 99%, transparent 101%) calc(50% - 2*var(--w)) 0/calc(4*var(--w)) 100% repeat-x,
                radial-gradient(var(--w) at 50% calc(100% + var(--w)), transparent 99%, #000 101%) 50% calc(100% - var(--w))/calc(4*var(--w)) 100% repeat-x;
  padding-bottom: calc(clamp(20px,2.4vw,30px) + var(--w)); }
.program__note b { font-weight: 800; }
@media (max-width: 1080px) {
  /* graceful tablet flow — cards reflow instead of cramming 5-up */
  .phases { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
}
@media (max-width: 560px) {
  .program__head, .phases { grid-template-columns: 1fr; }
  .phase__top { min-height: 0; }
}

/* program — recurring cadence band (always-on activities) */
.cadence { grid-template-columns: 2fr 3fr; }
.cadence__head { background: var(--lilac); display: flex; flex-direction: column; justify-content: center; gap: 10px; position: relative; overflow: hidden; }
.cadence__head > .label, .cadence__head > h3 { position: relative; z-index: 2; }
.cadence__head .label { color: var(--ink-soft); }
.cadence__head h3 { color: var(--ink); font-size: clamp(24px, 2.8vw, 40px); text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.0; }

/* confetti-in-a-snowglobe: small geometric shapes bobbing & spinning */
.cf-globe { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cf { position: absolute; left: var(--x); top: var(--y); width: var(--s,14px); height: var(--s,14px); background: var(--c,#fff); animation: cf-bob var(--t,7s) ease-in-out var(--d,0s) infinite; will-change: transform; }
.cf--dot { border-radius: 50%; }
.cf--sq { border-radius: 2px; }
.cf--diamond { border-radius: 3px; transform: rotate(45deg); }
.cf--tri { background: var(--c); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.cf--ring { background: none; border: 3px solid var(--c); border-radius: 50%; }
@keyframes cf-bob {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  25% { translate: 7px -11px; rotate: 95deg; }
  50% { translate: -5px -18px; rotate: 185deg; }
  75% { translate: -9px -7px; rotate: 275deg; }
}
@media (prefers-reduced-motion: reduce) { .cf { animation: none; } }
.cadence__list { background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.cadence__list ul { list-style: none; display: flex; flex-direction: column; width: 100%; }
.cadence__list li { display: flex; align-items: center; gap: 16px; padding: clamp(11px,1.3vw,17px) 0; border-bottom: var(--line) solid rgba(36,41,39,.12); font-size: clamp(15px,1.35vw,19px); font-weight: 600; color: var(--ink); }
.cadence__list li:last-child { border-bottom: 0; }
.cadence__list li::before { content: ""; flex: none; width: 13px; height: 13px; background: var(--orange); border-radius: 50%; }
@media (max-width: 820px) { .cadence { grid-template-columns: 1fr; } }

/* =========================================================
   BADGE
   ========================================================= */
.badge { grid-template-columns: 1fr 0.82fr; }
.badge__text { background: var(--cream); padding: var(--cell); display: flex; flex-direction: column; gap: 16px; }
.badge__text h2 { font-size: clamp(28px, 3.6vw, 52px); }
.badge__text h2 em { font-style: normal; color: var(--ink); }
.badge__text p { max-width: 50ch; color: var(--ink-soft); }
.badge__visual { background: var(--lilac-2); padding: var(--cell); display: grid; place-items: center; }
.credential {
  width: 100%; max-width: 340px; background: var(--cream);
  border: var(--line) solid var(--ink); box-shadow: 13px 13px 0 var(--sage);
  transform: rotate(-2.5deg); overflow: hidden;
}
.credential__top { background: var(--ink); color: var(--paper); padding: 18px; display: flex; align-items: center; gap: 14px; }
.credential__disc { width: 44px; height: 44px; border-radius: 50%; background: var(--lilac); flex: none; display: grid; place-items: center; font-weight: 800; color: var(--ink); }
.credential__top b { display: block; font-size: 17px; font-weight: 800; }
.credential__top span { font-size: 11px; color: #b9beba; letter-spacing: 0.08em; text-transform: uppercase; }
.credential__body { padding: 18px; }
.credential__body p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.credential__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.credential__tags span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 10px; border: 1.5px solid var(--ink); border-radius: 999px; }
@media (max-width: 880px) { .badge { grid-template-columns: 1fr; } }

/* =========================================================
   PEOPLE  — freisteller showcase
   ========================================================= */
.people__head { grid-template-columns: 1fr; }
.people__head .cell.people__head--solo:first-child { display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; text-align: center; }
.people__head .cell.people__head--solo h2 { margin-inline: auto; }
.people__head .cell:first-child h2 { font-size: clamp(28px, 4vw, 56px); max-width: 18ch; }
.people__head .cell:last-child { display: flex; align-items: flex-end; justify-content: flex-end; }
.profiles { grid-template-columns: repeat(4, 1fr); gap: clamp(22px,2.6vw,38px); background: transparent; padding: clamp(12px,1.4vw,18px) var(--cell) clamp(30px,3.2vw,46px); }
.profile { padding: 0; position: relative; display: flex; flex-direction: column; box-shadow: 9px 9px 0 var(--lilac), 18px 18px 0 var(--orange); }
.profile:nth-child(1) { background: var(--sage-2); }
.profile:nth-child(2) { background: var(--lilac-2); }
.profile:nth-child(3) { background: var(--cream-deep); }
.profile:nth-child(4) { background: var(--sage-2); }
.profile__media { position: relative; overflow: hidden; height: clamp(170px, 19vw, 230px); flex-shrink: 0; }
.profile__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transform-origin: 50% 24%; }
.profile__media::before { content: none; }
.profile__dot { position: absolute; top: 14px; left: 14px; width: 32px; height: 32px; z-index: 3; }
.profile__txt { position: relative; z-index: 2; padding: clamp(16px,1.8vw,22px); display: flex; flex-direction: column; gap: 8px; }
.profile h3 { font-size: clamp(17px,1.5vw,21px); text-transform: none; letter-spacing: -0.01em; color: var(--ink); }
.profile p { font-size: 13.5px; color: var(--ink-soft); }
.peoplequote {
  background: var(--sage-deep); padding: clamp(34px,4.4vw,64px) var(--cell);
  font-size: clamp(20px, 2.6vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12;
  text-transform: none; text-wrap: balance; color: var(--lilac);
  text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.peoplequote em { font-style: normal; color: #fff; }
.peoplequote--photo { background: var(--cream); padding: clamp(30px,4vw,60px) var(--cell); display: flex; justify-content: center; }
.peoplequote--photo img { width: auto; max-width: min(560px, 82%); height: auto;
  filter: drop-shadow(12px 12px 0 var(--lilac)) drop-shadow(24px 24px 0 var(--orange)); }
@media (max-width: 900px) { .people__head { grid-template-columns: 1fr; } .profiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .profiles { grid-template-columns: 1fr; } }

/* =========================================================
   PROOF
   ========================================================= */
.proof { grid-template-columns: 0.56fr 1.64fr; }
.proof__num { background: var(--blue); color: #fff; padding: var(--cell); min-height: clamp(240px, 26vw, 380px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.proof__num .big { font-size: clamp(64px, 10vw, 132px); font-weight: 800; letter-spacing: -0.05em; line-height: 0.82; }
.proof__num .cap { margin-top: 12px; font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: .85; }
.proof__text { background: var(--cream); padding: var(--cell); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.proof__text .label { color: var(--ink-soft); }
.proof__text h3 { font-size: clamp(24px, 2.7vw, 37px); }
.proof__text h3 .ln { display: block; white-space: nowrap; }
.proof__text p { color: var(--ink-soft); font-size: clamp(15px,1.3vw,18px); max-width: 52ch; }
.proof__media { background: transparent; position: relative; overflow: visible; display: flex; align-items: flex-end; justify-content: center; padding: clamp(14px,1.6vw,24px) clamp(10px,1.2vw,18px) 0; }
.proof__media img { width: 100%; max-width: 100%; height: auto; max-height: clamp(280px, 30vw, 440px); object-fit: contain; transition: transform .3s cubic-bezier(.2,.8,.2,1), filter .3s; filter: drop-shadow(9px 9px 0 var(--lilac)) drop-shadow(18px 18px 0 var(--blue)); }
.proof__combo { background: var(--cream); display: grid; grid-template-columns: 1.32fr 1fr; align-items: stretch; overflow: hidden; }
@media (hover: hover) { .proof__media:hover img { transform: translate(-3px,-3px); filter: drop-shadow(13px 13px 0 var(--lilac)) drop-shadow(24px 24px 0 var(--blue)); } }
/* proof text slides in from the right */
.proof__text[data-reveal], .proof__text [data-reveal] { transform: translateX(64px); }
.proof__text[data-reveal].in, .proof__text [data-reveal].in { transform: none; }
.proof__text h3[data-reveal] { transform: none; }
.proof__text h3[data-reveal].in { animation: none; }
@keyframes fly-to-image {
  0% { opacity: 0; transform: translateX(150px) rotate(9deg) scale(.88); }
  45% { opacity: 1; transform: translateX(-28px) rotate(-6deg) scale(1.05); }
  70% { transform: translateX(14px) rotate(4deg) scale(.99); }
  85% { transform: translateX(-6px) rotate(-2deg); }
  100% { transform: translateX(0) rotate(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) { .proof__text h3[data-reveal].in { animation: none; } }
@media (max-width: 760px) { .proof { grid-template-columns: 1fr; } .proof__combo { grid-template-columns: 1fr; } .proof__text[data-reveal], .proof__text [data-reveal] { transform: translateY(28px); } }

/* =========================================================
   TESTIMONIAL REELS  — vertical 9:16 placeholders
   ========================================================= */
.reels__head { grid-template-columns: 1fr; }
.reels__head .cell { background: var(--cream); display: flex; flex-direction: column; gap: 10px; justify-content: center; min-height: clamp(120px, 12vw, 180px); }
.reels__head h2 { font-size: clamp(30px, 4.2vw, 60px); }
.reels__head h2 em { font-style: normal; color: var(--ink); }
.reels { grid-template-columns: repeat(3, 1fr); }
.reel { background: var(--cream); padding: var(--cell); display: flex; flex-direction: column; gap: clamp(20px, 2.2vw, 32px); }
.reel__ph {
  position: relative; width: 100%; max-width: clamp(170px, 15vw, 230px); margin-inline: auto; aspect-ratio: 9 / 16;
  border: var(--line) solid var(--ink);
  display: grid; place-items: center; overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(36,41,39,.06) 0 11px, rgba(36,41,39,0) 11px 22px),
    var(--lilac-2);
  box-shadow: 9px 9px 0 var(--lilac), 18px 18px 0 var(--orange);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.reel:nth-child(2) .reel__ph { background: repeating-linear-gradient(45deg, rgba(36,41,39,.06) 0 11px, rgba(36,41,39,0) 11px 22px), var(--sage-2); }
.reel:nth-child(3) .reel__ph { background: repeating-linear-gradient(45deg, rgba(36,41,39,.06) 0 11px, rgba(36,41,39,0) 11px 22px), var(--cream-deep); }
@media (hover: hover) { .reel__ph:hover { transform: translate(-3px,-3px); box-shadow: 12px 12px 0 var(--lilac), 22px 22px 0 var(--orange); } }
.reel__play {
  position: relative; width: clamp(58px, 6vw, 80px); aspect-ratio: 1; border-radius: 50%;
  background: var(--orange); border: var(--line) solid var(--ink); z-index: 2;
}
.reel__play::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #fff;
}
.reel__note {
  position: absolute; left: 0; right: 0; bottom: 14px; text-align: center;
  font-family: "Courier New", ui-monospace, monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.5; color: var(--ink-soft);
}
.reel__cap { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.reel__cap span { display: block; margin-top: 3px; font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }
@media (max-width: 820px) { .reels { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .reels { grid-template-columns: 1fr; } }

/* ---- mobile: horizontal swipe slider (both directions, native scroll-snap) ---- */
.reels__hint { display: none; }
@media (max-width: 600px) {
  .reels {
    display: flex; grid-template-columns: none;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scroll-padding-inline: var(--cell);
    scrollbar-width: none; touch-action: pan-x pan-y;
  }
  .reels::-webkit-scrollbar { display: none; }
  .reel { flex: 0 0 84%; scroll-snap-align: center; }
  .reels__hint {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 14px;
    font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-soft);
  }
  .reels__hint-ar { font-size: 17px; line-height: 1; color: var(--orange); display: inline-block; }
  .reels__hint-ar.l { animation: hint-nudge-l 1.6s ease-in-out infinite; }
  .reels__hint-ar.r { animation: hint-nudge-r 1.6s ease-in-out infinite; }
}
@keyframes hint-nudge-l { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-4px); } }
@keyframes hint-nudge-r { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@media (prefers-reduced-motion: reduce) { .reels__hint-ar { animation: none !important; } }

/* =========================================================
   FINAL CTA
   ========================================================= */
.finalcta { grid-template-columns: 2fr 1fr; }
.finalcta__text { background: var(--orange); color: #fff; padding: clamp(34px,4.4vw,72px) var(--cell); }
.finalcta__text h2 { font-size: clamp(40px, 6.2vw, 96px); letter-spacing: -0.04em; color: #fff; }
.finalcta__text p { margin-top: 16px; font-size: clamp(16px,1.5vw,20px); font-weight: 600; max-width: 46ch; }
.finalcta__text p .serif-note { display: block; margin-top: 10px; color: #fff; }
.finalcta__text .btn--primary { background: var(--cream); color: var(--ink); border-color: var(--ink); box-shadow: 5px 5px 0 var(--grape); }
.finalcta__text .btn--primary:hover { background: #fff; box-shadow: 8px 8px 0 var(--grape); }
.finalcta__actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
/* countdown — minimal + cheeky */
.countdown { margin-top: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 10px; }
.countdown__cap { font-style: italic; font-weight: 600; font-size: clamp(14px, 1.2vw, 18px); color: #fff; }
.countdown__row { display: flex; align-items: flex-start; gap: clamp(8px, 1vw, 16px); }
.cd { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.cd b { font-size: clamp(34px, 4.6vw, 60px); font-weight: 800; letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums; }
.cd i { font-style: normal; font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 7px; color: rgba(255,255,255,.78); }
.cd__sep { font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: rgba(255,255,255,.45); line-height: 1; }
.cd-blink { animation: cd-pop .35s ease; }
@keyframes cd-pop { 0% { transform: translateY(-2px); opacity: .55; } 100% { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .cd-blink { animation: none; } }
.finalcta__art { background: var(--lilac-2); position: relative; overflow: hidden; min-height: 300px; }
.finalcta__art .shape { position: absolute; }
.finalcta__art .shape, .finalcta__art .cta-arrow { top: 50%; left: 50%; right: auto; bottom: auto; }
.sh-square { width: 120px; height: 100px; background: var(--orange); margin: -50px 0 0 -60px; --r: 150px; animation: orbit 20s linear infinite; }
.sh-hex { width: 140px; height: 140px; background: var(--sage); clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); margin: -70px 0 0 -70px; --r: 116px; animation: orbit 27s linear infinite reverse; }
.startnow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 5;
  width: 140px; height: 140px; border-radius: 50%; background: var(--cream);
  border: var(--line) solid var(--ink); display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: 21px; text-transform: uppercase; line-height: 1; z-index: 3;
  animation: spin-soft 22s linear infinite;
}
.startnow:hover { animation-play-state: paused; }
.cta-arrow {
  position: absolute; z-index: 4; pointer-events: none;
  width: 150px; aspect-ratio: 1548 / 958;
  background: url('assets/arrow-curve.png') center/contain no-repeat;
}
/* planets orbit the START NOW sun */
.cta-arrow--1 { margin: -46px 0 0 -75px; --r: 190px; animation: orbit 16s linear infinite; }
.cta-arrow--2 { margin: -46px 0 0 -75px; --r: 190px; animation: orbit 23s linear infinite reverse; animation-delay: -8s; }
@keyframes orbit {
  from { transform: rotate(0deg) translateX(var(--r)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--r)) rotate(-360deg); }
}
@keyframes spin-soft { to { transform: translate(-50%,-50%) rotate(360deg); } }
@media (max-width: 880px) { .finalcta { grid-template-columns: 1fr; } .startnow { animation: none; } .sh-square, .sh-hex, .cta-arrow { animation: none; } .sh-square { margin: 0; top: 24px; left: auto; right: 30px; } .sh-hex { margin: 0; top: auto; bottom: 26px; left: 26px; } .cta-arrow--1 { margin: 0; top: 8%; left: 4%; --r: 0; transform: rotate(-135deg); } .cta-arrow--2 { margin: 0; top: auto; bottom: 8%; left: auto; right: 4%; transform: rotate(45deg); } }
@media (prefers-reduced-motion: reduce) { .startnow, .sh-square, .sh-hex, .cta-arrow { animation: none; } }

/* =========================================================
   FOOTER  — prominent logo
   ========================================================= */
.foot__top { grid-template-columns: 1fr; }
.foot__brand { background: var(--cream); padding: var(--cell); display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.foot__brand img { height: clamp(48px, 5vw, 68px); width: auto; align-self: flex-start; aspect-ratio: 1924 / 1450; object-fit: contain; }  /* logo prominent, left, undistorted */
.foot__brand p { font-size: 13px; color: var(--ink-soft); max-width: 32ch; }
.foot__social { background: var(--cream); padding: var(--cell); display: flex; align-items: center; justify-content: center; gap: 12px; }
.foot__social a:nth-child(odd) { color: var(--orange); border-color: var(--orange); }
.foot__social a:nth-child(even) { color: var(--grape); border-color: var(--grape); }
.foot__social a {
  width: 42px; height: 42px; border-radius: 50%; border: var(--line) solid var(--ink);
  display: grid; place-items: center; transition: background .2s, transform .2s;
}
.foot__social a:hover { background: var(--lilac); transform: translateY(-3px) rotate(-6deg); }
.foot__social svg { width: 18px; height: 18px; }
.foot__bar { background: var(--cream); padding: 16px var(--cell); border-top: var(--line) solid var(--ink); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12px; color: var(--ink-soft); }
.foot__bar .links { display: flex; gap: 16px; }
.foot__bar a:hover { color: var(--ink); }
@media (max-width: 720px) { .foot__top { grid-template-columns: 1fr; } .foot__social { justify-content: flex-start; } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.02em;
  padding: 13px 26px; border: var(--line) solid var(--ink); border-radius: 999px;
  text-transform: uppercase; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), background .2s, color .2s, box-shadow .18s;
}
.btn { box-shadow: 5px 5px 0 var(--lilac); }
.btn:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--lilac); }
.btn--primary { background: var(--orange); color: #fff; border-color: var(--ink); box-shadow: 5px 5px 0 var(--lilac); }
.btn--primary:hover { box-shadow: 8px 8px 0 var(--lilac); }
.btn--ink { background: var(--ink); color: var(--paper); box-shadow: 5px 5px 0 var(--orange); }
.btn--ink:hover { background: #000; box-shadow: 8px 8px 0 var(--orange); }
.btn--ghost { background: var(--cream); color: var(--ink); box-shadow: 5px 5px 0 var(--sage); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); box-shadow: 8px 8px 0 var(--sage); }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* =========================================================
   PLAYFUL LAYER — collage doodles, stickers, parallax
   (Gen-Z energy, kept on the ZOLLHOF palette)
   ========================================================= */
.doodle { position: absolute; z-index: 5; pointer-events: none; }
.doodle svg { display: block; width: 100%; height: 100%; overflow: visible; }

/* hand-drawn "draw-on" once the doodle scrolls in */
.doodle--draw svg path { stroke-dasharray: 1600; stroke-dashoffset: 1600; }
.doodle--draw.in svg path { animation: draw-on 1.2s cubic-bezier(.6,.1,.2,1) forwards; }
@keyframes draw-on { to { stroke-dashoffset: 0; } }

/* sparkle twinkle */
.sparkle { animation: twinkle 2.8s ease-in-out infinite; transform-origin: center; }
.sparkle.s2 { animation-delay: .9s; }
.sparkle.s3 { animation-delay: 1.7s; }
@keyframes twinkle {
  0%,100% { transform: scale(.65) rotate(-6deg); opacity: .55; }
  50%     { transform: scale(1.08) rotate(10deg); opacity: 1; }
}

/* sticker wobble on hover */
.sticker { transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.sticker:hover { animation: wobble .5s ease-in-out; }
@keyframes wobble {
  0%,100% { transform: rotate(var(--rot,0deg)); }
  25%     { transform: rotate(calc(var(--rot,0deg) - 8deg)) scale(1.05); }
  75%     { transform: rotate(calc(var(--rot,0deg) + 8deg)) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .sparkle { animation: none; }
  .doodle--draw svg path { stroke-dashoffset: 0; }
  .sticker:hover { animation: none; }
}
@media (max-width: 700px) { .doodle.hide-sm { display: none; } }

/* =========================================================
   CREATIVE LAYER — organic blobs, air, scroll build-up
   ========================================================= */
.has-blob { overflow: visible; }
.has-blob > *:not(.blob) { position: relative; z-index: 2; }
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 62% 38% 54% 46% / 52% 44% 56% 48%;
  will-change: transform; animation: blob-morph 17s ease-in-out infinite;
}
.blob.b-sage   { background: var(--sage-2); }
.blob.b-lilac  { background: var(--lilac-2); }
.blob.b-cream  { background: var(--cream-deep); }
.blob.b-orange { background: var(--orange); }
.blob.b-blue   { background: var(--blue); }
@keyframes blob-morph {
  0%,100% { border-radius: 62% 38% 54% 46% / 52% 44% 56% 48%; }
  50%     { border-radius: 44% 56% 48% 52% / 56% 46% 54% 44%; }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

/* more air around section headlines */
.deal__head .cell:first-child,
.program__head .cell:first-child,
.people__head .cell:first-child {
  min-height: clamp(150px, 17vw, 240px);
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}

/* deal — headline + text band on top, Path A / B as columns below */
.dealgrid { /* vertical stack via .stack */ }
.dealhead { grid-template-columns: 0.92fr 1.08fr; gap: var(--line); }
@media (min-width: 821px) { .dealhead__media { order: -1; } }
.dealhead__text { background: var(--sage-deep); display: flex; flex-direction: column; justify-content: center; gap: clamp(14px,1.4vw,20px); }
.dealhead__text .label { color: var(--lilac); }
.dealhead__text h2 { color: #fff; font-size: clamp(40px, 5.2vw, 80px); }
.dealhead__lead { color: #fff; font-size: clamp(15px,1.25vw,18px); line-height: 1.55; max-width: 50ch; }
.dealhead__lead b { font-weight: 800; }
.dealhead__text .dealgrid__kicker { color: rgba(255,255,255,.82); }
.dealhead__text .btn { align-self: flex-start; margin-top: 4px; }
.dealhead__more { margin-top: 2px; }
.dealhead__more summary { cursor: pointer; font-weight: 800; font-size: clamp(13px,1.05vw,15px); color: #fff; text-decoration: underline; text-underline-offset: 3px; list-style: none; display: inline-flex; align-items: center; gap: 7px; }
.dealhead__more summary::-webkit-details-marker { display: none; }
.dealhead__more summary::after { content: "+"; font-weight: 700; font-size: 1.15em; line-height: 1; }
.dealhead__more[open] summary::after { content: "\2013"; }
.dealhead__more p { margin-top: 10px; color: rgba(255,255,255,.85); font-size: clamp(14px,1.1vw,16px); line-height: 1.55; max-width: 54ch; }
.dealpaths__intro { background: #e3ede7; display: flex; align-items: center; justify-content: center; text-align: center; padding: clamp(22px, 2.6vw, 44px) var(--cell); }
.dealpaths__intro .serif-note { position: relative; isolation: isolate; font-style: normal; font-weight: 800; font-size: clamp(24px, 3.4vw, 46px); line-height: 1.12; letter-spacing: -0.025em; color: #fff; max-width: none; padding: clamp(34px, 4.2vw, 64px) clamp(74px, 9.5vw, 180px) clamp(82px, 10vw, 172px); animation: po-float 6s ease-in-out infinite; }
.dealpaths__intro .serif-note::before { content: ""; position: absolute; z-index: -1; inset: 0; background: url('assets/scribble-arrow.png') center / 100% 100% no-repeat; filter: drop-shadow(9px 9px 0 var(--lilac)) drop-shadow(18px 18px 0 var(--orange)); }
.po-red { color: var(--orange); }
.po-purple { color: var(--grape); }
@keyframes po-float { 0%, 100% { transform: translateY(0) rotate(-1.4deg); } 50% { transform: translateY(-10px) rotate(1.4deg); } }
@media (prefers-reduced-motion: reduce) { .dealpaths__intro .serif-note { animation: none; } }
@media (max-width: 560px) {
  /* shrink the scribble-arrow frame's padding so text isn't squeezed on phones */
  .dealpaths__intro .serif-note { font-size: clamp(21px, 6vw, 28px); padding: 40px 30px 58px; }
}
.dealhead__media { background: var(--sage-deep); position: relative; overflow: hidden; min-height: clamp(300px, 30vw, 440px); }
.dealgrid__paths { grid-template-columns: 1fr 1fr; }
.dealgrid__paths .dealstep--v { align-items: start; }
.dealgrid__paths .dealstep--v .dealstep__n { display: inline-block; transform-origin: 50% 100%; font-size: clamp(86px, 11.5vw, 176px); line-height: .8; }
.dealgrid__paths .dealstep--v:nth-child(2):hover .dealstep__n { animation: letter-dance .65s ease-in-out infinite; }
.dealgrid__paths .dealstep--v:nth-child(1):hover .dealstep__n { animation: letter-jump .55s ease-in-out infinite; }
@keyframes letter-jump {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-18px); }
  50% { transform: translateY(0); }
  68% { transform: translateY(-8px); }
  84% { transform: translateY(0); }
}
@keyframes letter-dance {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  20% { transform: rotate(-13deg) translateY(-7px); }
  40% { transform: rotate(11deg) translateY(0); }
  60% { transform: rotate(-9deg) translateY(-5px); }
  80% { transform: rotate(7deg) translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .dealgrid__paths .dealstep--v:hover .dealstep__n { animation: none; } }.dealstep--v .dealstep__t h3 { color: var(--ink); }
.dealstep--v { grid-template-columns: 1fr; align-items: start; gap: clamp(10px,1.2vw,16px); }
.dealstep--v .dealstep__n { line-height: .8; }
/* deal — headline column + numbered "how you win" list (screenshot layout) */
.dealgrid__head { display: flex; flex-direction: column; justify-content: center; gap: clamp(15px,1.5vw,22px); min-height: clamp(440px, 50vw, 640px); }
/* when head carries the full-bleed cutout, text + cta float above it */
.dealgrid__head:has(.dealgrid__photo--cut) { justify-content: flex-end; overflow: hidden; min-height: clamp(340px, 34vw, 460px); background: var(--sage-deep); }
.dealgrid__head:has(.dealgrid__photo--cut) > :not(.dealgrid__photo--cut) { position: relative; z-index: 2; }
.dealgrid__head:has(.dealgrid__photo--cut) h2,
.dealgrid__head:has(.dealgrid__photo--cut) .dealgrid__kicker { color: #fff; }
.dealgrid__head:has(.dealgrid__photo--cut) .label { color: var(--lilac); }
/* image sits flush with no gradient scrim */
/* free-standing photo with hard colorful shadow */
.dealgrid__photo { margin-top: clamp(14px,1.8vw,26px); align-self: flex-start; max-width: 90%; line-height: 0;
  border: 3px solid var(--ink); border-radius: 6px; overflow: hidden;
  box-shadow: 14px 14px 0 var(--lilac), 26px 26px 0 var(--orange);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s; }
.dealgrid__photo img { width: 100%; height: auto; display: block; }
@media (hover:hover){ .dealgrid__photo:hover { transform: translate(-3px,-3px); box-shadow: 17px 17px 0 var(--lilac), 30px 30px 0 var(--orange); } }
/* transparent freisteller — full-bleed background of the head cell, shadow follows silhouette */
.dealgrid__photo--cut { position: absolute; inset: 0; margin: 0; padding: 0; z-index: 0;
  border: 0; border-radius: 0; overflow: visible; box-shadow: none; background: none;
  width: 100%; max-width: none; height: 100%; aspect-ratio: auto; line-height: 0; }
.dealgrid__photo--cut img { width: 100%; height: 100%; object-fit: contain; object-position: center top;
  transform: none;
  filter: drop-shadow(9px 9px 0 var(--lilac)) drop-shadow(18px 18px 0 var(--orange)); }
@media (hover:hover){ .dealgrid__photo--cut:hover { transform: none; box-shadow: none; } }
.dealgrid__head h2 { font-size: clamp(40px, 5.2vw, 80px); }
.dealgrid__kicker { font-size: clamp(16px,1.4vw,20px); font-weight: 600; color: var(--ink); max-width: 28ch; }
.dealgrid__head .btn { align-self: flex-start; margin-top: 4px; }
.dealgrid__head .label { color: var(--grape); }
.dealgrid__list .dealstep:last-child { flex-grow: 1; }
.dealgrid__list { background: var(--ink); }
.dealstep { background: var(--cream); display: grid; grid-template-columns: clamp(76px,11vw,150px) 1fr; gap: clamp(16px,2.2vw,36px); align-items: center; padding: clamp(26px,3.2vw,52px) var(--cell); }
.dealstep__n { font-size: clamp(60px, 8.5vw, 132px); font-weight: 800; line-height: .78; letter-spacing: -0.05em; }
.dealstep__n--tag { font-size: clamp(15px, 1.5vw, 20px); font-weight: 800; line-height: 1.05; letter-spacing: 0.02em; text-transform: uppercase; }
.dealstep:nth-child(1) .dealstep__n { color: var(--orange); }
.dealstep:nth-child(2) .dealstep__n { color: var(--blue); }
.dealstep:nth-child(3) .dealstep__n { color: var(--grape); }
/* Path A / Path B — graded mint/green backgrounds (Julia) */
.dealgrid__paths .dealstep--v:nth-child(1) { background: #b8c6bc; }
.dealgrid__paths .dealstep--v:nth-child(2) { background: #8fa699; }
.dealstep__t h3 { font-size: clamp(19px,1.8vw,26px); text-transform: none; letter-spacing: -0.01em; margin-bottom: 6px; }
.dealstep__t p { color: var(--ink-soft); font-size: clamp(14.5px,1.2vw,17px); line-height: 1.5; max-width: 46ch; }
@media (max-width: 820px) {
  .dealgrid { grid-template-columns: 1fr; }
  .dealhead, .dealgrid__paths { grid-template-columns: 1fr; }
  .dealhead__media { min-height: 280px; }
  .dealgrid__head { min-height: 0; }
  .dealstep { grid-template-columns: auto 1fr; }
  .dealstep--v { grid-template-columns: 1fr; }
  .dealstep__n { font-size: clamp(48px,16vw,84px); }
}

/* =========================================================
   ANIMATED GRID — interactive hover (Everline-style)
   ========================================================= */
.profile { transition: opacity .35s ease; }
.profile__media::after {
  content: ""; position: absolute; inset: 0; background: #242927; z-index: 1;
  opacity: 0; transition: opacity .45s ease; pointer-events: none;
}
.profile__media img { transition: transform .9s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.profile__dot { transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.profile h3 { transition: transform .45s cubic-bezier(.2,.8,.2,1); }
@media (hover: hover) {
  .profiles:hover .profile { opacity: .5; }
  .profiles:hover .profile:hover { opacity: 1; }
  .profile:hover .profile__media img { transform: scale(1.12); }
  .profile:hover .profile__media::after { opacity: .14; }
  .profile:hover .profile__dot { transform: scale(1.2) rotate(12deg); }
  .profile:hover h3 { transform: translateX(5px); }
}

/* numbered deal steps — hover motion */
.dealstep { transition: background .35s ease; }
.dealstep__n { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
@media (hover: hover) {
  .dealstep:hover { background: var(--cream-deep); }
  .dealstep:hover .dealstep__n { transform: translateX(10px); }
  /* keep Path A/B green on hover (slightly deeper shade) */
  .dealgrid__paths .dealstep--v:nth-child(1):hover { background: #abbbb0; }
  .dealgrid__paths .dealstep--v:nth-child(2):hover { background: #819a8c; }
}
@media (prefers-reduced-motion: reduce) {
  .profile__media img, .profile__dot, .profile h3, .dealstep__n { transition: none; }
}

/* program — editorial services list (Everline-style) */
.svclist { background: var(--ink); }
.svc {
  background: var(--cream); position: relative;
  display: grid; grid-template-columns: 0.42fr 0.58fr; gap: clamp(16px, 3vw, 56px);
  align-items: start; padding: clamp(26px, 3vw, 50px) var(--cell);
  transition: background .35s ease;
}
.svc__head { display: flex; flex-direction: column; gap: 8px; }
.svc__wk { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.svc:nth-child(1) .svc__wk { color: var(--sage-deep); }
.svc:nth-child(2) .svc__wk { color: var(--sage-deep); }
.svc:nth-child(3) .svc__wk { color: #214034; }
.svc:nth-child(4) .svc__wk { color: #cfe0d6; }
.svc:nth-child(5) .svc__wk { color: #cfe0d6; }
/* every week gets its own green tone (light → deep) */
.svc:nth-child(1) { background: #dde7e0; }
.svc:nth-child(2) { background: #b8c6bc; }
.svc:nth-child(3) { background: #93a79a; }
.svc:nth-child(4) { background: #6c8678; color: #fff; }
.svc:nth-child(5) { background: #4f6459; color: #fff; }
.svc:nth-child(4) .svc__q, .svc:nth-child(4) .svc__desc,
.svc:nth-child(5) .svc__q, .svc:nth-child(5) .svc__desc { color: rgba(255,255,255,.9); }
.svc__title { font-size: clamp(26px, 3.2vw, 46px); text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.98; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.svc__body { display: flex; flex-direction: column; gap: 12px; max-width: 56ch; }
.svc__q { font-size: clamp(16px, 1.5vw, 21px); font-weight: 700; letter-spacing: -0.01em; }
.svc__desc { font-size: clamp(14.5px, 1.2vw, 17px); color: var(--ink-soft); line-height: 1.55; }
@media (hover: hover) {
  .svc:hover { filter: brightness(.96); }
  .svc:hover .svc__title { transform: translateX(10px); }
}
@media (max-width: 820px) { .svc { grid-template-columns: 1fr; gap: 10px; } }

/* =========================================================
   COOKIE CONSENT  — bottom sheet on the black lattice
   ========================================================= */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: var(--cream); border-top: var(--line) solid var(--ink);
  display: flex; align-items: flex-start; gap: clamp(20px, 3vw, 52px);
  padding: clamp(22px, 2.8vw, 44px) var(--cell);
  box-shadow: 0 -12px 44px rgba(36,41,39,.16);
  transform: translateY(112%); transition: transform .5s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.cookie.show { transform: none; }
.cookie__accent { position: absolute; top: 0; right: 0; bottom: 0; width: clamp(10px, 1.4vw, 22px); background: var(--blue); }
.cookie__dots { display: flex; flex-direction: column; gap: clamp(10px,1vw,14px); padding-right: clamp(20px, 2.2vw, 36px); border-right: var(--line) solid var(--ink); flex: none; }
.cookie__dots span { width: clamp(30px, 3vw, 46px); aspect-ratio: 1; border: 2.5px solid var(--ink); }
.cookie__dots .d-circle { border-radius: 50%; }
.cookie__dots .d-square { border-radius: 5px; }
.cookie__dots .d-diamond { border-radius: 4px; transform: rotate(45deg); }
.cookie__dots .d-triangle { border: 0; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.cookie__dots .d-ring { background: transparent !important; border-width: 4px; border-radius: 50%; }
.cookie__main { flex: 1; min-width: 0; padding-right: clamp(12px,2vw,30px); }
.cookie__title { font-size: clamp(26px, 3.4vw, 48px); text-transform: uppercase; font-weight: 800; letter-spacing: -0.02em; line-height: 0.95; color: var(--ink); }
.cookie__txt { margin-top: clamp(10px,1.2vw,16px); font-size: clamp(14px, 1.12vw, 16.5px); line-height: 1.5; color: var(--ink-soft); max-width: 72ch; }
.cookie__actions { margin-top: clamp(18px, 2vw, 28px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; }
.cookie__policy { font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.cookie__policy:hover { color: var(--blue); }
.cookie__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie__btn {
  font-family: var(--ff); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 26px; border: var(--line) solid var(--ink); cursor: pointer; border-radius: 0;
  transition: background .2s, filter .2s, transform .15s;
}
.cookie__btn--decline { background: var(--cream); color: var(--ink); }
.cookie__btn--decline:hover { background: var(--lilac); }
.cookie__btn--accept { background: var(--blue); color: #fff; display: inline-flex; align-items: center; gap: 9px; }
.cookie__btn--accept:hover { filter: brightness(1.12); }
.cookie__btn:active { transform: translateY(1px); }
@media (max-width: 720px) {
  .cookie { padding-bottom: clamp(20px,5vw,28px); }
  .cookie__dots { flex-direction: row; flex-wrap: wrap; border-right: 0; padding-right: 0; padding-bottom: 14px; border-bottom: var(--line) solid var(--ink); width: 100%; }
  .cookie { flex-direction: column; gap: 16px; }
  .cookie__dots span { width: 26px; }
  .cookie__btns { width: 100%; }
  .cookie__btn { flex: 1; text-align: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .cookie { transition: none; } }
