/*
Theme Name: Hello Elementor Child — Feel Free Camp
Template: hello-elementor
Description: Custom child theme for Feel Free Camp. "FF Festival Lineup" — contemporary youth poster aesthetic.
Version: 3.0.0
Text Domain: ff-camp-child
*/

/* fonts loaded via <link> in document head for parallel loading */

/* --------- TOKENS — editorial white + single accent --------- */
:root {
  /* Neutral baseline — no surface tints */
  --bg:        #FFFFFF;     /* pure white */
  --bg-2:      #F6F5F1;     /* off-white, for cards & secondary surfaces */
  --bg-3:      #EDEAE1;     /* light gray for subtle blocking */

  --navy:      #0B2241;     /* primary ink — deep navy */
  --navy-2:    #143656;
  --ink:       #0B2241;
  --ink-soft:  rgba(11, 34, 65, 0.66);
  --ink-faint: rgba(11, 34, 65, 0.38);
  --line:      rgba(11, 34, 65, 0.10);
  --line-2:    rgba(11, 34, 65, 0.22);

  /* On-dark equivalents */
  --on-dark:        #FFFFFF;
  --on-dark-soft:   rgba(255, 255, 255, 0.72);
  --on-dark-faint:  rgba(255, 255, 255, 0.38);
  --on-dark-line:   rgba(255, 255, 255, 0.14);

  /* Single accent — yellow only for CTAs and one highlight */
  --yellow:    #F4C744;
  --yellow-2:  #E0AE1F;
  --hot:       #FF7A1E;     /* used very sparingly */
  --hot-2:     #E55A04;

  /* Legacy aliases — collapse to neutral */
  --cream:     var(--bg-2);
  --cream-2:   var(--bg-3);
  --paper:     var(--bg);
  --sky:       var(--bg-2);
  --sky-2:     var(--bg-2);
  --blue:      var(--navy);
  --slate:     var(--navy-2);

  /* Type */
  --display: 'Unbounded', system-ui, sans-serif;
  --body: 'Onest', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Layout */
  --wrap: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(96px, 12vw, 160px);
  --section-pad-tight: clamp(64px, 8vw, 112px);

  /* Radii (sharp by default — youth poster vibe) */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;

  --ease: cubic-bezier(.2, .65, .25, 1);
}

/* --------- RESET --------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body h1, body h2, body h3, body h4, body h5 { color: var(--navy); }
body p, body li { color: var(--navy); }
.lede { color: rgba(11, 34, 65, .72); }
.tag { color: var(--navy); }
em { color: var(--hot); }
strong { color: var(--navy); }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--hot); outline-offset: 4px; border-radius: 3px; }
::selection { background: var(--hot); color: var(--ink); }

/* --------- TYPE --------- */
h1,h2,h3,h4,h5 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: inherit;
  margin: 0;
  text-transform: none;
}
h1 { font-size: clamp(48px, 8.4vw, 132px); font-weight: 900; letter-spacing: -0.04em; }
h2 { font-size: clamp(32px, 5vw, 72px); font-weight: 800; letter-spacing: -0.034em; }
h3 { font-size: clamp(20px, 2vw, 28px); font-weight: 700; letter-spacing: -0.018em; }
h4 { font-size: clamp(16px, 1.3vw, 19px); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--ink); }
em { font-style: normal; color: var(--hot); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--hot);
  border-radius: 50%;
}
.tag.no-dot::before { display: none; }

.lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 56ch;
}

/* --------- LAYOUT --------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section {
  position: relative;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
section.tight { padding-top: var(--section-pad-tight); padding-bottom: var(--section-pad-tight); }

/* --------- WAVE-BG — paper-grain wavy bands like the logo --------- */
.wave-host {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.wave-host > .wave-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}
.wave-host > .wave-bg.flip-x   { transform: scaleX(-1); }
.wave-host > .wave-bg.flip-y   { transform: scaleY(-1); }
.wave-host > .wave-bg.flip-xy  { transform: scale(-1, -1); }
/* keep mid bands legible — gentle dim where text sits, optional */
.wave-host > .wave-tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 34, 65, 0) 0%, rgba(11, 34, 65, 0) 50%, rgba(11, 34, 65, 0.18) 100%);
}

/* --------- SURFACE BLOCKS — neutral whites + one dark inversion --------- */
/* Tinted variants collapse to neutrals (off-white) — editorial discipline */
.surface-yellow,
.surface-cream,
.surface-sky { background: var(--bg-2); }

/* On-navy: only dark inversion, used sparingly (1 section / page) */
.surface-navy {
  background: var(--navy);
  color: #fff;
}
.surface-navy h1, .surface-navy h2, .surface-navy h3, .surface-navy h4 { color: #fff; }
.surface-navy p, .surface-navy li { color: var(--on-dark-soft); }
.surface-navy .lede { color: var(--on-dark-soft); }
.surface-navy .tag { color: #fff; }
.surface-navy .tag::before { background: var(--yellow); }
.surface-navy em { color: var(--yellow); }
.surface-navy strong { color: #fff; }
.surface-navy a { color: #fff; }

/* --------- BUTTONS --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  padding: 18px 28px;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
  text-transform: none;
  width: max-content;
  max-width: 100%;
}
.btn .arr {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.btn:hover .arr { transform: translateX(5px); }
.btn-hot {
  background: var(--hot);
  color: var(--cream);
}
.btn-hot:hover { background: var(--hot-2); transform: translateY(-2px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}
.btn-yellow:hover { background: var(--yellow-2); transform: translateY(-2px); }

.btn-cream {
  background: var(--cream);
  color: var(--navy);
}
.btn-cream:hover { background: #fff; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn-ghost:hover { background: var(--navy); color: var(--cream); box-shadow: none; transform: translateY(-2px); }
.surface-navy .btn-ghost { color: var(--cream); box-shadow: inset 0 0 0 1.5px var(--on-dark-line); }
.surface-navy .btn-ghost:hover { background: var(--cream); color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: var(--cream);
}
.btn-navy:hover { background: #000; transform: translateY(-2px); }

/* --------- HEADER --------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(20px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-transform: uppercase;
}
.site-header .brand img {
  width: 40px; height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.site-header nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.site-header nav a {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(11, 34, 65, 0.66);
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-header nav a:hover, .site-header nav a.is-active { color: var(--navy); }
.site-header nav a.is-active::after, .site-header nav a:hover::after { transform: scaleX(1); }
.site-header .actions { justify-self: end; display: flex; gap: 10px; }

/* --------- MARQUEE STRIP --------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  background: var(--bg);
}
/* legacy color variants → all collapse to neutral / navy for editorial mode */
.marquee.yellow,
.marquee.cream { background: var(--bg-2); border-color: var(--line); }
.marquee.navy {
  background: var(--navy);
  border-color: var(--on-dark-line);
}
.marquee-track {
  display: flex;
  gap: 40px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: -0.012em;
  white-space: nowrap;
  width: max-content;
  animation: scroll 36s linear infinite;
  text-transform: uppercase;
  color: var(--navy);
}
.marquee-track > span { gap: 40px; }
.marquee-track .dot { width: 8px; height: 8px; }
.marquee.navy .marquee-track { color: var(--cream); }
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-track .dot {
  width: 14px; height: 14px;
  flex-shrink: 0;
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
}
.marquee-track .dot.hot { background: var(--hot); }
.marquee-track .dot.yellow { background: var(--yellow); }
.marquee.fast .marquee-track { animation-duration: 22s; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------- HERO (home) — clean editorial --------- */
.hero {
  padding-top: clamp(64px, 9vw, 130px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 80vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* --------- HERO PHOTO-BG variant (full-bleed editorial) --------- */
.hero-photo-bg {
  min-height: clamp(620px, 88vh, 820px);
  padding-top: clamp(72px, 10vw, 140px);
  padding-bottom: 0;
}
.hero-photo-bg .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
  user-select: none;
  -webkit-user-drag: none;
}
.hero-photo-bg .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* subtle radial vignette to focus center */
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(11, 34, 65, .25) 100%),
    /* main editorial gradient: clear top → dark navy bottom for text legibility */
    linear-gradient(180deg,
      rgba(11, 34, 65, 0.28) 0%,
      rgba(11, 34, 65, 0.10) 25%,
      rgba(11, 34, 65, 0.18) 45%,
      rgba(11, 34, 65, 0.72) 80%,
      rgba(11, 34, 65, 0.96) 100%);
}
.hero-photo-bg .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-photo-bg .hero-stack {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.hero-photo-bg h1 {
  color: #FFFFFF;
  text-shadow: 0 2px 32px rgba(11, 34, 65, .35);
}
.hero-photo-bg h1 em { color: var(--yellow); }
.hero-photo-bg .lede { color: rgba(255, 255, 255, .94); }
.hero-photo-bg .tag {
  display: inline-flex;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  padding: 8px 14px;
  border-radius: 999px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, .22);
}
.hero-photo-bg .tag::before { background: var(--yellow); }
.hero-photo-bg .btn-ghost {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .42);
}
.hero-photo-bg .btn-ghost:hover {
  background: #FFFFFF;
  color: var(--navy);
  box-shadow: none;
}
.hero-photo-bg .hero-meta {
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: clamp(28px, 4vw, 44px);
}
.hero-photo-bg .hero-meta .cell { border-right-color: rgba(255, 255, 255, .16); }
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 920px;
  gap: 28px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.hero h1 {
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(46px, 7.8vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.038em;
  font-weight: 900;
}
.hero h1 em {
  color: var(--yellow);
  font-weight: 900;
}
.hero .lede {
  max-width: 50ch;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}
/* On wave-bg the bottom of hero is dark navy → cream text reads cleanly */
.hero.wave-host h1 { color: #FFFFFF; }
.hero.wave-host h1 em { color: var(--yellow); }
.hero.wave-host .tag {
  display: inline-flex;
  background: rgba(11, 34, 65, .14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  color: #FFFFFF;
}
.hero.wave-host .tag::before { background: var(--yellow); }
.hero.wave-host .lede { color: rgba(255, 255, 255, .92); }
.hero.wave-host .btn-ghost {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .42);
}
.hero.wave-host .btn-ghost:hover { background: #FFFFFF; color: var(--navy); box-shadow: none; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  margin-bottom: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.hero-meta .cell {
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}
.hero-meta .cell:last-child { border-right: 0; }
.hero-meta .k {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 10px;
  display: block;
}
.hero-meta .v {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}
.hero-meta .v small {
  font-size: 0.42em;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0.04em;
  font-family: var(--mono);
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 0;
}

.hero-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 28px;
  min-height: 100%;
}
.hero-side .lede {
  text-align: right;
  max-width: 38ch;
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--navy);
}

/* Rotating sticker */
.sticker {
  width: 180px;
  height: 180px;
  position: relative;
  flex-shrink: 0;
  align-self: flex-end;
}
.sticker .ring {
  position: absolute;
  inset: 0;
  animation: spin 18s linear infinite;
}
.sticker .ring text {
  fill: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sticker .core {
  position: absolute;
  inset: 28px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 0.95;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.sticker .core small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-top: 6px;
  color: var(--navy);
  opacity: .75;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .sticker .ring { animation: none; }
}

.hero-photo {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--bg-2);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.hero-photo:hover img { transform: scale(1.03); }
.hero-photo .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 27, 51, .55));
  pointer-events: none;
}
.hero-photo .corner {
  position: absolute;
  bottom: 24px; left: 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}

/* --------- SECTION HEAD (poster style) --------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.section-head h2 {
  text-transform: uppercase;
  margin-top: 18px;
  max-width: 18ch;
  font-size: clamp(30px, 4.4vw, 60px);
}
.section-head .lede { align-self: end; }

/* --------- STORY SPLIT --------- */
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.story-split .story-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.story-split .story-text > .btn { align-self: flex-start; width: max-content; }
.story-split h2 {
  text-transform: uppercase;
  max-width: 16ch;
  margin-bottom: 24px;
  font-size: clamp(28px, 3.8vw, 56px);
}
.story-split p { font-size: 17px; line-height: 1.6; max-width: 56ch; }
.story-split .pull {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
  border-left: 4px solid var(--hot);
  padding: 4px 0 4px 22px;
  margin: 32px 0 36px;
  max-width: 30ch;
}
.surface-navy .story-split .pull { color: var(--cream); border-color: var(--yellow); }
.story-split .story-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--navy-2);
}
.story-split .story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.story-split .story-photo:hover img { transform: scale(1.04); }
.story-split .story-photo .corner {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 27, 51, .55);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* --------- BENTO --------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.bento-cell.hero-stat {
  min-height: clamp(280px, 32vw, 420px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  padding: clamp(40px, 5vw, 64px) clamp(36px, 5vw, 72px);
}
.bento-cell.hero-stat .head { grid-column: 1; align-self: start; margin-bottom: 0; }
.bento-cell.hero-stat .num { grid-column: 1; font-size: clamp(60px, 7vw, 120px); line-height: 0.9; }
.bento-cell.hero-stat .num em { font-size: 0.42em; display: block; line-height: 1.05; margin-left: 0; margin-top: 12px; font-weight: 800; }
.bento-cell.hero-stat .desc {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 36ch;
  margin: 0;
}
@media (max-width: 1100px) {
  .bento-cell.hero-stat {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .bento-cell.hero-stat .head,
  .bento-cell.hero-stat .num,
  .bento-cell.hero-stat .desc { grid-column: 1; grid-row: auto; }
}
.bento-cell {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  overflow: hidden;
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease);
}
.bento-cell:hover { transform: translateY(-4px); }
.bento-cell .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.bento-cell .head .label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.bento-cell .head .index {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(11, 34, 65, .42);
  letter-spacing: 0.04em;
}
.bento-cell .num {
  font-family: var(--display);
  font-size: clamp(40px, 4.2vw, 72px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.bento-cell .num em {
  color: var(--hot);
  font-style: normal;
  font-size: 0.6em;
  margin-left: 4px;
  font-weight: 700;
}
.bento-cell .desc {
  color: rgba(11, 34, 65, .68);
  font-size: 14px;
  line-height: 1.5;
  max-width: 32ch;
  margin-top: 18px;
}
.bento-cell .key {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  margin-top: 18px;
  margin-bottom: 8px;
}

/* Editorial mode: only ONE highlight cell — yellow for the hero stat */
.bento-cell.b-yellow,
.bento-cell.b-hot {
  background: var(--yellow);
  border-color: transparent;
}
.bento-cell.b-yellow .num em,
.bento-cell.b-hot .num em { color: var(--navy); }

/* Other variants → neutral off-white (no carnival) */
.bento-cell.b-cream,
.bento-cell.b-sky { background: var(--bg-2); border-color: var(--line); }

/* Navy cell: secondary dark inversion, used 1× per bento */
.bento-cell.b-navy,
.bento-cell.b-blue {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.bento-cell.b-navy .head .label,
.bento-cell.b-blue .head .label { color: #fff; }
.bento-cell.b-navy .head .index,
.bento-cell.b-blue .head .index { color: var(--on-dark-faint); }
.bento-cell.b-navy .num,
.bento-cell.b-blue .num { color: #fff; }
.bento-cell.b-navy .num em,
.bento-cell.b-blue .num em { color: var(--yellow); }
.bento-cell.b-navy .desc,
.bento-cell.b-blue .desc { color: var(--on-dark-soft); }
.bento-cell.b-navy .key,
.bento-cell.b-blue .key { color: #fff; }

.bento-cell.b-photo {
  padding: 0;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.bento-cell.b-photo .ovly {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 27, 51, .9));
  color: #fff;
}
.bento-cell.b-photo .ovly .t {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.bento-cell.b-photo .ovly .s {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .85;
}

.bento-cell.span-3 { grid-column: span 3; }
.bento-cell.span-4 { grid-column: span 4; }
.bento-cell.span-5 { grid-column: span 5; }
.bento-cell.span-6 { grid-column: span 6; }
.bento-cell.span-7 { grid-column: span 7; }
.bento-cell.span-8 { grid-column: span 8; }
.bento-cell.span-9 { grid-column: span 9; }
.bento-cell.span-12 { grid-column: span 12; }

/* --------- GALLERY (full-bleed) --------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  padding: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(11, 34, 65, .65);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--cream);
}
.gallery-item .tag::before { background: var(--yellow); }
.gallery-item.g-1 { grid-column: span 5; aspect-ratio: 5 / 6; }
.gallery-item.g-2 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery-item.g-3 { grid-column: span 3; aspect-ratio: 3 / 5; }
.gallery-item.g-4 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-item.g-5 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-item.g-6 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-item.g-7 { grid-column: span 6; aspect-ratio: 16 / 9; }
.gallery-item.g-8 { grid-column: span 6; aspect-ratio: 16 / 9; }

/* --------- EXPENSE BARS --------- */
.expense-totals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 56px;
}
.exp-tot {
  padding: 28px 28px 24px;
  border-radius: var(--r-md);
  background: var(--bg-2);
  color: var(--navy);
  border: 1px solid var(--line);
}
.exp-tot.dark {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.exp-tot.dark .v { color: #fff; }
.exp-tot.dark .l { color: var(--on-dark-soft); }
.exp-tot.yellow,
.exp-tot.hot {
  background: var(--yellow);
  color: var(--navy);
  border-color: transparent;
}
.exp-tot .v {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
  line-height: 0.96;
}
.exp-tot .l {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .72;
}
.exp-tot.dark .l { color: var(--ink-soft); opacity: 1; }

.bars { display: grid; gap: 0; border-top: 1px solid rgba(14, 31, 56, .14); }
.bar {
  display: grid;
  grid-template-columns: 60px minmax(0, 2fr) minmax(0, 2.4fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(14, 31, 56, .14);
}
.bar .idx {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(14, 31, 56, .5);
  letter-spacing: 0.04em;
}
.bar .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 21px);
  color: var(--navy);
  letter-spacing: -0.018em;
  text-transform: uppercase;
  line-height: 1.05;
}
.bar .meta {
  display: block;
  font-family: var(--body);
  font-size: 14px;
  color: rgba(14, 31, 56, .68);
  margin-top: 6px;
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  max-width: 56ch;
  letter-spacing: 0;
}
.bar .track {
  position: relative;
  height: 18px;
  background: rgba(14, 31, 56, .08);
  border-radius: 999px;
  overflow: hidden;
}
.bar .track i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--yellow);
  border-radius: 999px;
  width: 0;
  transition: width 1.4s cubic-bezier(.2,.65,.25,1) .15s;
}
.bar.is-venue .track i { background: var(--navy); }
.bar.is-food .track i  { background: var(--hot); }
.surface-navy .bar { border-color: var(--on-dark-line); }
.surface-navy .bars { border-top-color: var(--on-dark-line); }
.surface-navy .bar .name { color: var(--cream); }
.surface-navy .bar .meta { color: var(--on-dark-soft); }
.surface-navy .bar .num { color: var(--cream); }
.surface-navy .bar .num small { color: var(--on-dark-soft); }
.surface-navy .bar .idx { color: var(--on-dark-faint); }
.surface-navy .bar .track { background: var(--on-dark-line); }
.surface-navy .bar.is-venue .track i { background: var(--cream); }
.surface-navy .exp-foot .note { color: var(--on-dark-soft); }
.surface-navy .exp-foot .note strong { color: var(--cream); }
.surface-navy .exp-tot { background: var(--bg); color: var(--navy); }
.bar .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 1.7vw, 26px);
  color: var(--navy);
  letter-spacing: -0.022em;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bar .num small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(14, 31, 56, .55);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.exp-foot {
  display: grid;
  grid-template-columns: minmax(0, 2fr) auto;
  gap: 32px;
  padding-top: 32px;
  align-items: end;
  margin-top: 24px;
}
.exp-foot .note {
  color: rgba(14, 31, 56, .68);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 70ch;
  margin: 0;
}

/* --------- FAQ --------- */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.faq-grid .side { position: sticky; top: 100px; }
.faq-grid .side h2 { text-transform: uppercase; max-width: 14ch; margin-bottom: 20px; font-size: clamp(28px, 3.6vw, 52px); }
.faq-grid .side .lede { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 60px 1fr 36px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 700;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .25s;
  line-height: 1.15;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--hot); }
.faq-item .idx {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(11, 34, 65, .42);
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: none;
}
.faq-item .plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(11, 34, 65, .08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .25s;
}
.faq-item .plus svg { stroke: var(--navy); }
.faq-item[open] .plus { transform: rotate(45deg); background: var(--yellow); }
.faq-item[open] .plus svg { stroke: var(--navy); }
.faq-item .a {
  padding: 0 0 28px 84px;
  font-size: 16px;
  color: rgba(11, 34, 65, .68);
  line-height: 1.65;
  max-width: 70ch;
}
.surface-navy .faq-item { border-color: var(--on-dark-line); }
.surface-navy .faq-item:last-child { border-color: var(--on-dark-line); }
.surface-navy .faq-item summary { color: var(--cream); }
.surface-navy .faq-item summary:hover { color: var(--yellow); }
.surface-navy .faq-item .idx { color: var(--on-dark-faint); }
.surface-navy .faq-item .plus { background: var(--on-dark-line); }
.surface-navy .faq-item .plus svg { stroke: var(--cream); }
.surface-navy .faq-item[open] .plus { background: var(--yellow); }
.surface-navy .faq-item[open] .plus svg { stroke: var(--navy); }
.surface-navy .faq-item .a { color: var(--on-dark-soft); }
.faq-item .a ul { padding-left: 22px; margin: 8px 0; }
.faq-item .a li { margin-bottom: 4px; }

/* --------- DONATE BAND (apricot full-bleed) --------- */
.donate-band {
  background: var(--navy);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.donate-band::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 65%);
  opacity: .14;
  pointer-events: none;
}
.donate-band .wrap { position: relative; z-index: 1; }
.donate-band .tag::before { background: var(--yellow); }
.donate-band .tag { color: #fff; }
.donate-band h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(40px, 6.2vw, 104px);
  font-weight: 900;
  margin: 22px 0 28px;
  letter-spacing: -0.04em;
}
.donate-band h2 em {
  color: var(--yellow);
  font-style: normal;
  display: block;
}
.donate-band .lede {
  color: var(--on-dark-soft);
  max-width: 56ch;
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 32px;
}
.donate-band .lede strong { color: #fff; }

.donate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
.donate-band .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.donate-band .stat-cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--on-dark-line);
  color: #fff;
  padding: 26px 24px;
  border-radius: var(--r-md);
}
.donate-band .stat-cell .k {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 0.96;
  margin-bottom: 8px;
  color: #fff;
}
.donate-band .stat-cell .l {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.donate-band .stat-cell.full { grid-column: span 2; }
.donate-band .progress {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, .14);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 14px;
  margin-bottom: 14px;
}
.donate-band .progress > i {
  display: block;
  height: 100%;
  width: 38%;
  background: var(--yellow);
  border-radius: 999px;
}
.donate-band .progress-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-variant-numeric: tabular-nums;
}
.donate-band .donate-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------- PAGE HERO --------- */
.page-hero {
  padding-top: clamp(72px, 9vw, 130px);
  padding-bottom: clamp(64px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  text-transform: uppercase;
  max-width: 16ch;
  margin: 24px 0 28px;
  font-size: clamp(40px, 6.4vw, 100px);
}
.page-hero h1 em { color: var(--hot); }
.page-hero p { max-width: 60ch; font-size: clamp(17px, 1.3vw, 21px); color: var(--ink-soft); line-height: 1.55; }
.page-hero-orbit { display: none; }
.surface-navy .page-hero p { color: var(--on-dark-soft); }
.surface-navy .page-hero h1 em { color: var(--yellow); }

/* --------- MANIFESTO --------- */
.manifesto h2 {
  margin-bottom: 48px;
  max-width: 18ch;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 60px);
}
.manifesto-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
.manifesto p { font-size: 17px; line-height: 1.65; max-width: 56ch; }
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(11, 34, 65, .18);
  border-bottom: 1px solid rgba(11, 34, 65, .18);
}
.manifesto-stats .s { padding: 28px 18px; border-right: 1px solid rgba(11, 34, 65, .14); }
.manifesto-stats .s:last-child { border-right: 0; }
.manifesto-stats .v {
  display: block;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
  color: var(--navy);
}
.manifesto-stats .l {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 34, 65, .55);
}
.surface-navy .manifesto-stats { border-color: var(--on-dark-line); }
.surface-navy .manifesto-stats .s { border-color: var(--on-dark-line); }
.surface-navy .manifesto-stats .v { color: var(--cream); }
.surface-navy .manifesto-stats .l { color: var(--on-dark-faint); }

/* --------- SPLIT FEATURE --------- */
.split-feat {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.split-feat.reverse .split-text { order: 2; }
.split-feat .split-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.split-feat .split-text > .btn { align-self: flex-start; width: max-content; }
.split-feat h2 { text-transform: uppercase; max-width: 16ch; margin-bottom: 24px; font-size: clamp(28px, 3.6vw, 52px); }
.split-feat p { font-size: 16.5px; line-height: 1.65; max-width: 54ch; }
.split-feat .split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--navy-2);
  margin: 0;
}
.split-feat .split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.split-feat .split-media:hover img { transform: scale(1.04); }
.split-feat .split-media .corner {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 27, 51, .55);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* --------- PHOTO BLEED --------- */
.photo-bleed { padding: 0; position: relative; }
.photo-bleed-frame {
  position: relative;
  height: 75vh;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
}
.photo-bleed-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-bleed-frame .corner {
  position: absolute;
  top: 32px; left: clamp(20px, 4vw, 56px);
  font-family: var(--mono);
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(12, 27, 51, .55);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.photo-bleed-frame .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(28px, 5vw, 64px) clamp(20px, 4vw, 56px);
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(12, 27, 51, .92));
}
.photo-bleed-frame .caption .num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 18px;
  font-weight: 600;
}
.photo-bleed-frame .caption h3 {
  color: var(--cream);
  font-size: clamp(26px, 3.4vw, 48px);
  max-width: 26ch;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.028em;
  line-height: 1.02;
}
.photo-bleed-frame .caption h3 em { color: var(--hot); }

/* --------- BENEFITS --------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.b-card {
  position: relative;
  padding: 40px 36px 36px;
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.b-card:hover { background: var(--bg-2); border-color: var(--line-2); }
.b-card .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(11, 34, 65, .42);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.b-card h3 {
  font-size: clamp(18px, 1.6vw, 23px);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.022em;
  max-width: 22ch;
}
.b-card p { color: rgba(11, 34, 65, .68); font-size: 15.5px; line-height: 1.6; max-width: 42ch; margin: 0; }
.b-card:hover { transform: translateY(-4px); }
.b-card.b-yellow,
.b-card.b-hot { background: var(--yellow); border-color: transparent; }
.b-card.b-sky,
.b-card.b-cream { background: var(--bg-2); border-color: var(--line); }
.b-card.b-navy { background: var(--navy); color: #fff; border-color: transparent; }
.b-card.b-navy .idx { color: var(--on-dark-faint); }
.b-card.b-navy h3 { color: #fff; }
.b-card.b-navy p { color: var(--on-dark-soft); }

/* --------- WAYS --------- */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.way {
  position: relative;
  padding: 36px 32px;
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
}
.way .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 34, 65, .55);
  margin-bottom: 22px;
  font-weight: 500;
}
.way h3 { font-size: clamp(20px, 1.8vw, 26px); margin-bottom: 14px; text-transform: uppercase; color: var(--navy); }
.way > p {
  color: rgba(11, 34, 65, .68);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.way .price {
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  display: block;
}
.way .price small {
  font-family: var(--mono);
  font-size: 14px;
  color: rgba(11, 34, 65, .55);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.way ul {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(11, 34, 65, .14);
}
.way ul li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 34, 65, .14);
  font-size: 14.5px;
  color: rgba(11, 34, 65, .68);
  display: flex;
  align-items: center;
  gap: 12px;
}
.way ul li::before {
  content: "";
  flex-shrink: 0;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF7A1E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") no-repeat center / contain;
}
.way .btn { margin-top: auto; align-self: flex-start; }
.way.featured { background: var(--yellow); color: var(--navy); border-color: transparent; }
.way.featured .label { color: var(--navy); }
.way.featured h3 { color: var(--navy); }
.way.featured > p { color: rgba(11, 34, 65, .78); }
.way.featured .price { color: var(--navy); }
.way.featured .price small { color: rgba(11, 34, 65, .55); }
.way.featured ul { border-color: rgba(11, 34, 65, .18); }
.way.featured ul li { color: rgba(11, 34, 65, .78); border-color: rgba(11, 34, 65, .18); }
.way.featured ul li::before {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B2241' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") no-repeat center / contain;
}
.surface-navy .way { background: var(--bg-2); color: var(--cream); }
.surface-navy .way .label { color: var(--on-dark-faint); }
.surface-navy .way h3 { color: var(--cream); }
.surface-navy .way > p { color: var(--on-dark-soft); }
.surface-navy .way .price { color: var(--cream); }
.surface-navy .way .price small { color: var(--on-dark-soft); }
.surface-navy .way ul { border-color: var(--on-dark-line); }
.surface-navy .way ul li { color: var(--on-dark-soft); border-color: var(--on-dark-line); }
.surface-navy .way.featured { background: var(--yellow); color: var(--navy); }
.surface-navy .way.featured .label { color: var(--navy); }
.surface-navy .way.featured h3 { color: var(--navy); }
.surface-navy .way.featured > p { color: rgba(11, 34, 65, .78); }
.surface-navy .way.featured .price { color: var(--navy); }
.surface-navy .way.featured .price small { color: rgba(11, 34, 65, .55); }
.surface-navy .way.featured ul { border-color: rgba(11, 34, 65, .18); }
.surface-navy .way.featured ul li { color: rgba(11, 34, 65, .78); border-color: rgba(11, 34, 65, .18); }
.way.b-navy { background: var(--navy); color: var(--cream); }
.way.b-navy .label { color: var(--on-dark-faint); }
.way.b-navy h3 { color: var(--cream); }
.way.b-navy > p { color: var(--on-dark-soft); }
.way.b-navy .price { color: var(--cream); }
.way.b-navy .price small { color: var(--on-dark-faint); }
.way.b-navy ul { border-color: var(--on-dark-line); }
.way.b-navy ul li { color: var(--on-dark-soft); border-color: var(--on-dark-line); }

/* --------- FOUNDER --------- */
.founder {
  padding: clamp(56px, 8vw, 110px) clamp(36px, 5vw, 80px);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  color: var(--navy);
  border: 1px solid var(--line);
}
.surface-navy .founder {
  background: var(--navy);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px var(--on-dark-line);
}
.surface-navy .founder p { color: var(--on-dark-soft); }
.surface-navy .founder p strong { color: var(--cream); }
.surface-navy .founder .signature .role { color: var(--on-dark-faint); }
.surface-navy .founder::before { color: var(--yellow); opacity: .55; }
.surface-navy .founder h2 em { color: var(--yellow); }
.surface-navy .founder h2 { color: var(--cream); }
.founder::before {
  content: "“";
  position: absolute;
  top: -60px; left: 18px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(220px, 26vw, 380px);
  color: var(--yellow);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.founder > * { position: relative; z-index: 1; }
.founder .tag { margin-bottom: 22px; }
.founder h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 26ch;
  margin-bottom: 32px;
}
.founder h2 em { color: var(--hot); display: inline; }
.founder p { font-size: 16.5px; line-height: 1.7; max-width: 64ch; color: rgba(11, 34, 65, .72); }
.founder p strong { color: var(--navy); }
.founder .signature {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 34, 65, .25);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.founder .signature .name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.founder .signature .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 34, 65, .55);
}

/* --------- CTA SECTION --------- */
.cta-section {
  text-align: center;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.cta-section h2 {
  font-size: clamp(36px, 5.4vw, 88px);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin: 0 auto 28px;
  line-height: 0.98;
}
.cta-section h2 em { color: var(--hot); }
.surface-navy .cta-section h2 em { color: var(--yellow); }
.surface-yellow .cta-section h2 em { color: var(--hot); }
.surface-cream .cta-section h2 em { color: var(--hot); }
.surface-sky .cta-section h2 em { color: var(--hot); }
.cta-section .lede { margin: 0 auto 36px; max-width: 56ch; }
.cta-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --------- NUMBERS GRID (support / report) --------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.num-cell {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--r-md);
  background: var(--cream);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.num-cell .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 34, 65, .55);
  font-weight: 500;
  margin-bottom: 18px;
}
.num-cell .big {
  display: block;
  font-family: var(--display);
  font-size: clamp(40px, 4.2vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.034em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
  color: var(--navy);
}
.num-cell .big small {
  font-family: var(--mono);
  font-size: 0.32em;
  color: rgba(11, 34, 65, .55);
  font-weight: 500;
  margin-left: 12px;
  letter-spacing: 0.04em;
}
.num-cell .desc {
  color: rgba(11, 34, 65, .68);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 40ch;
  margin: 0;
}
.num-cell.dark { background: var(--navy); color: var(--cream); }
.num-cell.dark .label { color: var(--on-dark-faint); }
.num-cell.dark .big { color: var(--cream); }
.num-cell.dark .big small { color: var(--on-dark-soft); }
.num-cell.dark .desc { color: var(--on-dark-soft); }
.num-cell.hot,
.num-cell.yellow { background: var(--yellow); color: var(--navy); }
.num-cell.cream { background: var(--cream); color: var(--navy); }
.num-cell.sky { background: var(--sky-2); color: var(--navy); }
.num-cell.photo {
  padding: 0;
  overflow: hidden;
}
.num-cell.photo > img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.num-cell.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12, 27, 51, .92));
  z-index: 1;
}
.num-cell.photo > *:not(img.bg) { position: relative; z-index: 2; }
.num-cell.photo > .label { padding: 28px 28px 0; color: var(--yellow); }
.num-cell.photo > .big { padding: 0 28px; color: var(--cream); margin-bottom: 0; }
.num-cell.photo > .desc { padding: 18px 28px 28px; color: rgba(255, 243, 212, .88); }
.num-cell.span-3 { grid-column: span 3; }
.num-cell.span-4 { grid-column: span 4; }
.num-cell.span-6 { grid-column: span 6; }
.num-cell.span-8 { grid-column: span 8; }
.num-cell.span-12 { grid-column: span 12; }
.num-cell.editorial {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.32;
  text-transform: none;
  color: var(--navy);
  min-height: auto;
  padding: 36px 32px;
}
.num-cell.editorial .label { margin-bottom: 22px; }

/* --------- FOOTER --------- */
.site-footer {
  margin-top: clamp(96px, 12vw, 160px);
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.site-footer .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: 36px;
}
.site-footer .brand-col .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 18px;
}
.site-footer .brand-col .brand img {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: cover;
}
.site-footer .brand-col p {
  color: var(--on-dark-soft);
  max-width: 36ch;
  font-size: 14.5px;
  line-height: 1.6;
}
.site-footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 15px; color: var(--on-dark-soft); }
.site-footer li a { color: inherit; transition: color .2s; }
.site-footer li a:hover { color: var(--yellow); }
.site-footer .meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--on-dark-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}

/* --------- MOTION --------- */
[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-anim="fade-up"].in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-track, .sticker .ring { animation: none !important; }
  [data-anim="fade-up"] { opacity: 1; transform: none; }
}

/* --------- REGISTER PAGE --------- */
.register-hero h1 em { color: var(--hot); }
.register-hero p strong { color: var(--navy); }

/* hard reset for lists / inputs inside register page (override Elementor base) */
.register-form-section ul,
.register-side ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0;
}
.register-form-section li,
.register-side li {
  list-style: none !important;
  padding-left: 0;
}
.register-form-section li::marker,
.register-side li::marker { content: ""; }
.register-form input,
.register-form textarea,
.register-form select,
.register-form button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  font-family: var(--body) !important;
  margin: 0 !important;
  box-sizing: border-box;
}

/* facts strip */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.fact:last-child { border-right: 0; }
.fact .k {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.fact .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.022em;
  color: var(--navy);
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact .v small {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
}

/* expect grid */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.expect-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: background .25s, border-color .25s;
}
.expect-card:hover { background: var(--bg-2); border-color: var(--line-2); }
.expect-card .i {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.expect-card h4 {
  font-size: clamp(17px, 1.4vw, 21px);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--navy);
}
.expect-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0;
}

/* pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
.price-card {
  padding: 36px 32px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.price-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.price-card__label {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.022em;
  color: var(--navy);
}
.price-card--featured .price-card__label { color: #fff; }
.price-card__pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.price-card--featured .price-card__pill { background: rgba(255,255,255,.12); color: #fff; }
.price-card__sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 32ch;
}
.price-card--featured .price-card__sub { color: var(--on-dark-soft); }

.price-tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.price-tier-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  gap: 16px;
}
.price-tier-list .when {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-tier-list .when em {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--navy);
  background: var(--yellow);
  padding: 3px 7px;
  border-radius: 999px;
  font-style: normal;
}
.price-tier-list .sum {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.price-tier-list .sum i {
  font-style: normal;
  font-size: 0.6em;
  color: var(--on-dark-soft);
  margin-left: 4px;
  font-weight: 600;
}

.price-card__big {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-card__big .sum {
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
.price-card__big .sum i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--ink-soft);
  margin-left: 6px;
  font-weight: 700;
}
.price-card__big small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pricing-note {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.pn-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: baseline;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.5;
}
.pn-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.pn-tag--warn { color: var(--hot); }
.pn-row--warn { color: var(--navy); font-weight: 600; }

/* tests grid */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.test-card {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--navy);
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.test-card:hover { background: var(--bg-2); border-color: var(--line-2); transform: translateY(-2px); }
.test-card__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.test-card h4 {
  font-size: clamp(20px, 1.8vw, 26px);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.022em;
  margin-bottom: 8px;
}
.test-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 32ch;
}
.test-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hot);
  font-weight: 600;
}
.test-card--featured {
  background: var(--yellow);
  border-color: transparent;
}
.test-card--featured:hover { background: var(--yellow-2); }
.test-card--featured .test-card__num { color: rgba(11, 34, 65, .55); }
.test-card--featured p { color: rgba(11, 34, 65, .7); }
.test-card--featured .test-card__cta { color: var(--navy); }

/* form layout */
.register-form-section { padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(72px, 9vw, 120px); }
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.register-form { display: flex; flex-direction: column; gap: 24px; }
.form-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.form-head h2 { font-size: clamp(28px, 3.6vw, 48px); text-transform: uppercase; letter-spacing: -0.03em; }

.fset {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 32px 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
}
/* custom legend — replace native fieldset legend rendering */
.fset {
  position: relative;
}
.fset legend {
  font-family: var(--mono) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hot);
  padding: 4px 10px;
  background: var(--bg);
  margin: 0;
  position: relative;
  top: -2px;
  left: -4px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.field__label em {
  font-style: normal;
  color: var(--hot);
  font-weight: 700;
}
.field__hint {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 400;
}

.register-form .field input,
.register-form .field textarea,
.register-form .field select {
  font-family: var(--body) !important;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy) !important;
  background: var(--bg) !important;
  border: 1.5px solid var(--line-2) !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100% !important;
  display: block;
  resize: vertical;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none;
}
.register-form .field input:hover,
.register-form .field textarea:hover { border-color: var(--ink-faint) !important; }
.register-form .field input:focus,
.register-form .field textarea:focus,
.register-form .field select:focus {
  outline: none !important;
  border-color: var(--hot) !important;
  background: var(--bg) !important;
  box-shadow: 0 0 0 3px rgba(255, 122, 30, 0.18) !important;
}
.register-form .field input::placeholder,
.register-form .field textarea::placeholder {
  color: var(--ink-faint) !important;
  opacity: 1;
}
/* date input — equalize webkit calendar icon dimensions */
.register-form .field input[type="date"] {
  font-family: var(--body) !important;
  min-height: 50px;
}
.register-form .field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: .55;
  transition: opacity .2s;
  filter: invert(13%) sepia(45%) saturate(800%) hue-rotate(190deg);
}
.register-form .field input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }

.radio-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-pill {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  margin: 0;
}
.radio-pill input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0,0,0,0) !important;
  overflow: hidden;
}
.radio-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 18px 11px 16px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--navy);
  border: 1.5px solid var(--line-2);
  transition: background .2s, border-color .2s, color .2s;
  user-select: none;
  line-height: 1;
}
.radio-pill span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--line-2);
  border-radius: 50%;
  background: var(--bg);
  flex-shrink: 0;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.radio-pill:hover span { border-color: var(--navy); }
.radio-pill:hover span::before { border-color: var(--navy); }
.radio-pill input:focus-visible ~ span {
  box-shadow: 0 0 0 3px rgba(255, 122, 30, 0.25);
}
.radio-pill input:checked ~ span {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.radio-pill input:checked ~ span::before {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: inset 0 0 0 3px var(--navy);
}

/* lodging cards */
.lodging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lodging-card {
  cursor: pointer;
  position: relative;
  display: block;
  margin: 0;
}
.lodging-card input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0,0,0,0) !important;
  overflow: hidden;
}
.lodging-card__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 20px;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-md);
  transition: border-color .2s, background .2s, box-shadow .2s;
  height: 100%;
  position: relative;
}
.lodging-card__inner::before {
  content: "";
  position: absolute;
  top: 18px; right: 18px;
  width: 18px; height: 18px;
  border: 1.5px solid var(--line-2);
  border-radius: 50%;
  background: var(--bg);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.lodging-card:hover .lodging-card__inner { border-color: var(--navy); }
.lodging-card:hover .lodging-card__inner::before { border-color: var(--navy); }
.lodging-card input:focus-visible ~ .lodging-card__inner {
  box-shadow: 0 0 0 3px rgba(255, 122, 30, 0.25);
}
.lodging-card input:checked ~ .lodging-card__inner {
  border-color: var(--hot);
  background: rgba(255, 122, 30, .04);
}
.lodging-card input:checked ~ .lodging-card__inner::before {
  background: var(--hot);
  border-color: var(--hot);
  box-shadow: inset 0 0 0 3px var(--bg);
}
.lodging-card__t {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.lodging-card__sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.lodging-card__p {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-top: auto;
}

/* form footer */
.form-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.btn-lg { padding: 20px 32px; font-size: 16px; }
.form-foot-note { font-size: 13px; color: var(--ink-soft); line-height: 1.55; max-width: 60ch; margin: 0; }
.form-status {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 0;
}
.form-status[data-state="ok"]    { background: rgba(34, 165, 96, .1); color: #138349; border: 1px solid rgba(34, 165, 96, .25); }
.form-status[data-state="error"] { background: rgba(221, 60, 32, .1); color: #b03020; border: 1px solid rgba(221, 60, 32, .25); }

/* side panel */
.register-side {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-card {
  padding: 24px 24px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.side-card .tag { margin-bottom: 12px; }
.side-card h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.022em;
  font-weight: 800;
  margin-bottom: 10px;
}
.side-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 12px; }
.side-list { list-style: none; padding: 0; margin: 0; }
.side-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.side-list li:first-child { border-top: 0; padding-top: 4px; }
.side-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  transition: color .2s;
}
.side-list a:hover { color: var(--hot); }

.side-card--accent {
  background: var(--yellow);
  border-color: transparent;
}
.side-card--accent .tag { color: var(--navy); }
.side-card--accent .tag::before { background: var(--navy); }
.side-card--accent p { color: rgba(11, 34, 65, .8); }
.card-num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 12px;
  background: rgba(255, 255, 255, .35);
  padding: 12px 14px;
  border-radius: 8px;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--cream);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.copy-btn:hover { background: #000; transform: scale(1.05); }
.copy-btn[data-copied="true"] { background: #2a9c5b; }
.side-note { font-size: 13px; color: rgba(11, 34, 65, .72); margin: 0; }

.dl-list { list-style: none; padding: 0; margin: 0; }
.dl-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.dl-list li:first-child { border-top: 0; padding-top: 4px; }
.dl-list span { color: var(--ink-soft); }
.dl-list b {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.018em;
  color: var(--navy);
  font-size: 15px;
}
.dl-list .dl-list__hot b { color: var(--hot); }

/* thanks modal */
.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.thanks-modal[hidden] { display: none; }
.thanks-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 34, 65, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fade-in .3s var(--ease);
}
.thanks-modal__card {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 56px);
  max-width: 520px;
  width: 100%;
  text-align: left;
  animation: pop-in .4s var(--ease);
  box-shadow: 0 30px 60px -20px rgba(11, 34, 65, .4);
}
.thanks-modal__card .tag { color: var(--hot); margin-bottom: 16px; }
.thanks-modal__card h2 { font-size: clamp(28px, 3.6vw, 44px); text-transform: uppercase; letter-spacing: -0.03em; margin-bottom: 16px; }
.thanks-modal__card p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 12px; }
.thanks-modal__card a { color: var(--hot); font-weight: 600; }
.thanks-modal__hint { font-size: 14px !important; }
.thanks-modal__card .btn { margin-top: 18px; }
@keyframes fade-in { from { opacity: 0 } to { opacity: 1 } }
@keyframes pop-in { from { opacity: 0; transform: translateY(20px) scale(.96) } to { opacity: 1; transform: none } }

/* responsive — register page */
@media (max-width: 1100px) {
  .form-layout { grid-template-columns: 1fr; }
  .register-side { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tests-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .lodging-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .fgrid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .expect-grid { grid-template-columns: 1fr; }
  .pn-row { grid-template-columns: 1fr; gap: 4px; }
}

/* --------- RESPONSIVE --------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-side { align-items: flex-start; }
  .hero-side .lede { text-align: left; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .split-feat { grid-template-columns: 1fr; gap: 32px; }
  .split-feat.reverse .split-text { order: 0; }
  .donate-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .side { position: static; }
  .manifesto-row { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .num-cell.span-3, .num-cell.span-4, .num-cell.span-6 { grid-column: span 6; }
  .bento-cell.span-3, .bento-cell.span-4, .bento-cell.span-5, .bento-cell.span-7, .bento-cell.span-8 { grid-column: span 6; }
  .bento-cell.span-9 { grid-column: span 12; }
  .gallery-item.g-1, .gallery-item.g-2, .gallery-item.g-3, .gallery-item.g-4, .gallery-item.g-5, .gallery-item.g-6 { grid-column: span 6; }
  .gallery-item.g-7, .gallery-item.g-8 { grid-column: span 12; }
  .exp-foot { grid-template-columns: 1fr; }
  .bar { grid-template-columns: 60px 1fr; gap: 16px; }
  .bar .track { grid-column: 1 / -1; }
  .bar .num { grid-column: 1 / -1; text-align: left; }
}
@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .site-header { grid-template-columns: auto auto; padding: 12px 18px; }
  .site-header nav { display: none; }
  .site-header .actions .btn { padding: 12px 18px; font-size: 13px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta .cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-meta .cell:last-child { border-bottom: 0; }
  .expense-totals { grid-template-columns: 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; }
  .manifesto-stats .s { border-right: 0; border-bottom: 1px solid rgba(14, 31, 56, .14); }
  .manifesto-stats .s:last-child { border-bottom: 0; }
  .num-cell.span-3, .num-cell.span-4, .num-cell.span-6 { grid-column: span 12; }
  .bento-cell { grid-column: span 12 !important; }
  .gallery-item { grid-column: span 12 !important; aspect-ratio: 16 / 10 !important; }
  .site-footer .wrap { grid-template-columns: 1fr; }
  .donate-band .stat-grid { grid-template-columns: 1fr; }
  .donate-band .stat-cell.full { grid-column: span 1; }
  .faq-item summary { grid-template-columns: 40px 1fr 32px; gap: 16px; }
  .faq-item .a { padding-left: 56px; }
  .sticker { width: 140px; height: 140px; }
}
