@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,400..800&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   EASY MOVING — "The First Step" Stylesheet
   Studio Plum + Movement Coral + Electric Lime
   ============================================ */

:root {
  /* Palette */
  --plum: #3D1A4A;
  --plum-deep: #2A1033;
  --grape: #7A3F8C;
  --coral: #FF6B5C;
  --lime: #D4F04A;
  --cream: #FBF7F2;
  --chalk: #F1EAE2;
  --ink: #1E1A22;
  --ink-2: #5C555E;
  --border: #E2D9CE;
  --white: #ffffff;

  /* Contrast-safe tones (WCAG AA on cream/chalk) */
  --ink-strong: #3F3D56;
  --coral-deep: #C0392B;
  --coral-deeper: #A8362A;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(61,26,74,.06), 0 4px 12px -4px rgba(61,26,74,.10);
  --shadow-md: 0 1px 2px rgba(61,26,74,.06), 0 12px 32px -8px rgba(61,26,74,.14);
  --shadow-lg: 0 2px 4px rgba(61,26,74,.08), 0 28px 60px -20px rgba(61,26,74,.22);
  --shadow-coral: 0 12px 32px -12px rgba(255,107,92,.55);

  /* Spacing scale (8pt) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 80px;
  --s-9: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Container */
  --container: 1200px;
  --gutter: 24px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Grain texture (SVG data URI) */
  --grain-url: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.24 0 0 0 0 0.10 0 0 0 0 0.29 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
input, search { font: inherit; color: inherit; }

::selection { background: var(--coral); color: var(--white); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: var(--s-2) var(--s-3);
  background: var(--plum);
  color: var(--cream);
  font-weight: 600;
  z-index: 999;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; outline: 3px solid var(--lime); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, .display {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--plum);
  font-variation-settings: "wdth" 100, "opsz" 48;
}

.body-l {
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 64ch;
}
@media (min-width: 1024px) { .body-l { font-size: 1.1875rem; } }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,247,242,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-3);
  padding-block: var(--s-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(61,26,74,.18));
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }

.brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  color: var(--plum);
}

.brand-sub {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grape);
  margin-top: 2px;
}

/* Mobile nav toggle (44x44 target) */
.nav-toggle {
  grid-column: 3;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--plum);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.nav-toggle:hover { background: var(--grape); transform: translateY(-1px); }
.nav-toggle:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

.nav-toggle-label {
  width: 22px;
  height: 14px;
  display: inline-block;
  position: relative;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  font-size: 0;
}
.nav-toggle-label::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transition: opacity .2s var(--ease);
}

/* Primary nav */
.primary-nav {
  grid-column: 1 / -1;
  order: 4;
  display: none;
  padding-block: var(--s-2);
  border-top: 1px solid var(--border);
  margin-top: var(--s-2);
}
.primary-nav.is-open { display: block; }

.nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.nav-list a {
  display: block;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 1rem;
  color: var(--plum);
  transition: background .18s var(--ease), color .18s var(--ease), padding-left .18s var(--ease);
}
.nav-list a:hover, .nav-list a:focus-visible {
  background: var(--chalk);
  color: var(--coral);
  padding-left: var(--s-4);
  outline: none;
}

/* Search */
.site-search {
  grid-column: 1 / -1;
  order: 5;
  display: flex;
  align-items: center;
  gap: var(--s-1);
  margin-top: var(--s-2);
  padding: 6px;
  background: var(--chalk);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  max-width: 100%;
}
.site-search:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,107,92,.18);
}

.site-search-label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-search-input {
  flex: 1;
  min-width: 0;
  padding: 10px 16px;
  background: transparent;
  border: 0;
  outline: none;
  font-size: .9375rem;
  color: var(--ink);
}
.site-search-input::placeholder { color: var(--ink-2); opacity: .7; }

.site-search-button {
  flex-shrink: 0;
  padding: 10px 18px;
  min-height: 40px;
  border-radius: var(--r-pill);
  background: var(--plum);
  color: var(--cream);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .02em;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.site-search-button:hover { background: var(--coral); transform: translateY(-1px); }
.site-search-button:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

/* Desktop header */
@media (min-width: 1024px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: var(--s-5);
    padding-block: var(--s-2);
  }
  .nav-toggle { display: none; }
  .primary-nav {
    grid-column: 2;
    order: 0;
    display: block !important;
    border-top: 0;
    margin-top: 0;
    padding-block: 0;
    justify-self: center;
  }
  .nav-list {
    flex-direction: row;
    gap: 2px;
    align-items: center;
  }
  .nav-list a {
    padding: 10px 14px;
    font-size: .9375rem;
    position: relative;
  }
  .nav-list a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease-out);
  }
  .nav-list a:hover { padding-left: 14px; background: transparent; color: var(--plum); }
  .nav-list a:hover::after { transform: scaleX(1); }
  .nav-list a:hover { color: var(--coral); }

  .site-search {
    grid-column: 3;
    order: 0;
    margin-top: 0;
    width: 260px;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  min-height: 48px;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .01em;
  text-align: center;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--plum) 0%, var(--grape) 100%);
  transform: scale(0);
  transform-origin: center;
  transition: transform .4s var(--ease-out);
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::after { transform: scale(1); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-ghost:hover {
  background: var(--plum);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--plum);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain-url);
  opacity: .14;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  padding-block: var(--s-7) var(--s-8);
  position: relative;
  z-index: 3;
}

.hero-copy { max-width: 640px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(212,240,74,.14);
  color: var(--lime);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  border: 1px solid rgba(212,240,74,.28);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(212,240,74,.22);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212,240,74,.22); }
  50% { box-shadow: 0 0 0 8px rgba(212,240,74,.08); }
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: var(--s-3);
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(251,247,242,.82);
  max-width: 56ch;
  margin-bottom: var(--s-4);
}
@media (min-width: 1024px) { .hero-lead { font-size: 1.1875rem; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}

.hero-note {
  font-size: .875rem;
  color: rgba(251,247,242,.65);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before {
  content: "✦";
  color: var(--lime);
  font-size: 1rem;
}

.hero-figure {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background: var(--plum-deep);
}

.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 1.4s var(--ease-out);
  display: block;
}
.hero-figure:hover .hero-img { transform: scale(1.04); }

/* Caption sits below the poster so artwork details stay fully visible */
.hero-caption {
  position: static;
  display: block;
  padding: 14px 20px;
  background: var(--plum-deep);
  color: var(--cream);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid rgba(212,240,74,.28);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: var(--s-8);
    padding-block: var(--s-9);
    min-height: 640px;
  }
  .hero-img { aspect-ratio: 5 / 6; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--lime);
  color: var(--plum);
  overflow: hidden;
  padding-block: 18px;
  border-top: 2px solid var(--plum);
  border-bottom: 2px solid var(--plum);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: var(--s-6);
  width: max-content;
  animation: scroll-marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: var(--s-6);
  white-space: nowrap;
}
.marquee-item::after {
  content: "✶";
  color: var(--coral);
  font-size: .8em;
}

/* ============ CHAPTERS ============ */
.chapter {
  padding-block: var(--s-7);
  position: relative;
}
.chapter + .chapter { padding-top: var(--s-6); }

@media (min-width: 1024px) {
  .chapter { padding-block: var(--s-9); }
  .chapter + .chapter { padding-top: var(--s-8); }
}

.chapter-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--s-2);
}
.chapter-mark::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--coral);
}

.chapter-title {
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--plum);
  margin-bottom: var(--s-3);
  text-wrap: balance;
  max-width: 18ch;
}

.chapter-intro {
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 62ch;
  margin-bottom: var(--s-5);
}
@media (min-width: 1024px) { .chapter-intro { font-size: 1.1875rem; } }

.chapter-dialog { background: var(--chalk); }
.chapter-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain-url);
  opacity: .06;
  pointer-events: none;
}

/* Chapter 02 — WCAG AA contrast adjustments on chalk background */
.chapter-dialog .chapter-title { color: var(--plum-deep); }
.chapter-dialog .chapter-intro { color: var(--ink-strong); }
.chapter-dialog .chapter-mark { color: var(--coral-deep); }
.chapter-dialog .chapter-mark::after { background: var(--coral-deep); }

.chapter-dialog .turn-visitor .bubble { color: var(--ink-strong); }
.chapter-dialog .turn-studio .bubble { color: var(--cream); }

.chapter-dialog .turn-visitor .turn-name {
  background: var(--plum-deep);
  color: var(--lime);
}
.chapter-dialog .turn-studio .turn-name {
  background: var(--coral-deeper);
  color: var(--white);
}

.chapter-dialog .link-arrow { color: var(--coral-deep); }
.chapter-dialog .link-arrow:hover { color: var(--plum-deep); }
.chapter-dialog .link-arrow::before { background: var(--coral-deep); }

/* ============ DIALOG ============ */
.dialog {
  display: grid;
  gap: var(--s-3);
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.turn {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-2);
  align-items: start;
  opacity: 0;
  transform: translateY(14px);
  animation: turn-in .6s var(--ease-out) forwards;
}
.turn:nth-child(1) { animation-delay: .05s; }
.turn:nth-child(2) { animation-delay: .15s; }
.turn:nth-child(3) { animation-delay: .25s; }
.turn:nth-child(4) { animation-delay: .35s; }
.turn:nth-child(5) { animation-delay: .45s; }
@keyframes turn-in {
  to { opacity: 1; transform: translateY(0); }
}

.turn-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  margin-top: 6px;
}

.turn-visitor .turn-name {
  background: var(--plum);
  color: var(--lime);
}
.turn-studio .turn-name {
  background: var(--coral);
  color: var(--white);
}

.bubble {
  padding: var(--s-3) var(--s-3);
  border-radius: var(--r-lg);
  font-size: 1rem;
  line-height: 1.55;
  position: relative;
}
.turn-visitor .bubble {
  background: var(--white);
  border: 1px solid var(--border);
  border-top-left-radius: 4px;
  color: var(--ink);
}
.turn-studio .bubble {
  background: var(--plum);
  color: var(--cream);
  border-top-left-radius: 4px;
}

.chapter-cta { margin-top: var(--s-5); }

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--coral);
  padding: 6px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.link-arrow::after {
  content: "→";
  transition: transform .28s var(--ease-out);
}
.link-arrow::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.link-arrow:hover { color: var(--plum); }
.link-arrow:hover::before { transform: scaleX(1); }
.link-arrow:hover::after { transform: translateX(6px); }

/* ============ CHAPTER TRANSFORM ============ */
.chapter-transform {
  background: var(--cream);
}
.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: start;
}
.transform-copy { max-width: 620px; }

.steps {
  display: grid;
  gap: var(--s-3);
  counter-reset: step;
  min-width: 0;
}

.step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: var(--s-3);
  align-items: start;
  align-content: start;
  padding: var(--s-3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  overflow: hidden;
  min-width: 0;
}
.step::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s var(--ease-out);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(122,63,140,.3);
}
.step:hover::after { transform: scaleY(1); }

/* Force every non-number child into the flexible text column,
   so title + paragraph fill the card width (no one-word columns). */
.step > .step-num { grid-column: 1; }
.step > :not(.step-num) {
  grid-column: 2;
  min-width: 0;
  max-width: none;
}

.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--plum);
  background: linear-gradient(180deg, var(--coral) 0%, var(--grape) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 4px;
}

.step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.1875rem;
  letter-spacing: -0.01em;
  color: var(--plum);
  margin-bottom: 6px;
  max-width: none;
}
.step p {
  color: var(--ink-2);
  font-size: .9375rem;
  line-height: 1.55;
  max-width: none;
  overflow-wrap: break-word;
}

@media (min-width: 1024px) {
  .transform-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }
}

/* ============ CHAPTER PROOF ============ */
.chapter-proof {
  background: var(--plum-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.chapter-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain-url);
  opacity: .12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.chapter-proof .chapter-title,
.chapter-proof .chapter-intro { color: var(--cream); }
.chapter-proof .chapter-intro { color: rgba(251,247,242,.78); }
.chapter-proof .chapter-mark { color: var(--lime); }
.chapter-proof .chapter-mark::after { background: var(--lime); }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  position: relative;
  z-index: 1;
}

.stat {
  padding: var(--s-3);
  border: 1px solid rgba(251,247,242,.14);
  border-radius: var(--r-lg);
  background: rgba(251,247,242,.03);
  transition: background .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}
.stat:hover {
  background: rgba(212,240,74,.07);
  border-color: rgba(212,240,74,.35);
  transform: translateY(-3px);
}

.stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lime);
  margin-bottom: 8px;
}

.stat-label {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(251,247,242,.72);
  line-height: 1.4;
}

@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

/* ============ LOGOS ============ */
.logos-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-2);
  margin-bottom: var(--s-3);
  text-transform: none;
}

.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2);
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-height: 96px;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.logo-cell img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.72);
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
.logo-cell:hover {
  transform: translateY(-3px);
  border-color: rgba(122,63,140,.3);
  box-shadow: var(--shadow-md);
}
.logo-cell:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.04);
}

@media (min-width: 640px) { .logos { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); } }
@media (min-width: 1024px) { .logos { grid-template-columns: repeat(6, 1fr); } }

/* ============ CHAPTER OFFER / BENTO ============ */
.chapter-offer { background: var(--cream); }

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}

.bento-card {
  position: relative;
  padding: var(--s-4);
  border-radius: var(--r-xl);
  background: var(--plum);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .35s var(--ease);
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain-url);
  opacity: .1;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,16,51,0) 30%, rgba(42,16,51,.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.bento-card > * { position: relative; z-index: 3; }
.bento-card:hover { transform: translateY(-4px); }

.bento-card:nth-child(2) {
  background: var(--coral);
}
.bento-card:nth-child(2)::after {
  background: linear-gradient(180deg, rgba(255,107,92,0) 30%, rgba(122,63,140,.65) 100%);
}
.bento-card:nth-child(3) {
  background: var(--grape);
}
.bento-card:nth-child(3)::after {
  background: linear-gradient(180deg, rgba(122,63,140,0) 30%, rgba(42,16,51,.85) 100%);
}

.bento-wide { grid-column: 1 / -1; }

.bento-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 10px;
  max-width: 22ch;
}

.bento-meta {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(251,247,242,.82);
  line-height: 1.5;
  max-width: 40ch;
}

@media (min-width: 640px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
  .bento-wide { grid-column: span 2; min-height: 300px; }
  .bento-card { min-height: 300px; }
}

/* ============ CHAPTER EVENTS ============ */
.chapter-events { background: var(--chalk); position: relative; }
.chapter-events::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain-url);
  opacity: .05;
  pointer-events: none;
}

.events {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  position: relative;
  z-index: 1;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,92,.35);
}

.event-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.event-card:hover .event-img { transform: scale(1.04); }

.event-body {
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--plum);
  color: var(--lime);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.event-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--plum);
}

.event-meta {
  font-size: .9375rem;
  line-height: 1.58;
  color: var(--ink-2);
  flex: 1;
}

.event-body .link-arrow {
  align-self: flex-start;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .events { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .event-card { grid-template-columns: 1fr; }
}

/* ============ SOCIAL STRIP ============ */
.social-strip {
  background: var(--plum);
  color: var(--cream);
  padding-block: var(--s-6);
  position: relative;
  overflow: hidden;
}
.social-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain-url);
  opacity: .1;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.social-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.social-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.15;
}

.social-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(251,247,242,.08);
  border: 1px solid rgba(251,247,242,.16);
  color: var(--cream);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease), border-color .24s var(--ease);
}
.social-inner a:hover {
  background: var(--lime);
  color: var(--plum);
  border-color: var(--lime);
  transform: translateY(-3px);
}
.social-inner a:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

/* When social links sit in a row */
.social-inner > div,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

@media (min-width: 768px) {
  .social-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .social-inner > div {
    justify-content: flex-end;
  }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--plum-deep);
  color: rgba(251,247,242,.82);
  /* Generous bottom padding so the fixed cookie banner never covers footer content */
  padding-block: var(--s-7) calc(var(--s-7) + 60px);
  position: relative;
  font-size: .9375rem;
  line-height: 1.6;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,240,74,.4), transparent);
}

.site-footer a {
  color: rgba(251,247,242,.85);
  transition: color .2s var(--ease);
  text-decoration: none;
}
.site-footer a:hover { color: var(--lime); }
.site-footer a:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* Footer grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); }
}

.footer-brand { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-brand .brand { align-self: flex-start; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-sub { color: var(--lime); }
.footer-brand p { color: rgba(251,247,242,.78); max-width: 36ch; margin-top: var(--s-1); }

.footer-col { display: flex; flex-direction: column; min-width: 0; }

.footer-heading,
.footer-col h2,
.footer-col h3,
.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: var(--s-2);
  line-height: 1.3;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li a { color: rgba(251,247,242,.82); font-size: .9375rem; }
.footer-col li a:hover { color: var(--lime); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(251,247,242,.82);
  font-size: .9375rem;
}
.footer-contact a { color: rgba(251,247,242,.82); }
.footer-contact a:hover { color: var(--lime); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--s-2);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: rgba(251,247,242,.08);
  border: 1px solid rgba(251,247,242,.16);
  color: var(--cream);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.footer-social a:hover {
  background: var(--lime);
  color: var(--plum);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(251,247,242,.12);
  font-size: .8125rem;
  color: rgba(251,247,242,.68);
  position: relative;
  z-index: 1;
}
.footer-legal p { margin: 0; }
.footer-legal ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}
.footer-legal a { color: rgba(251,247,242,.78); }
.footer-legal a:hover { color: var(--lime); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--plum-deep);
  color: var(--cream);
  padding: var(--s-3) var(--gutter);
  border-top: 1px solid rgba(212,240,74,.25);
  box-shadow: 0 -12px 32px -8px rgba(0,0,0,.35);
}
.cookie-banner p { font-size: .875rem; line-height: 1.5; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ UTILITIES ============ */
.grain { position: relative; }
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain-url);
  opacity: .08;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.text-balance { text-wrap: balance; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visibility default */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}