/* ═══════════════════════════════════════════════════════════════════
   future.css — Chapter 1 homepage redesign (v3)
   Order: hero wordmark → expanding showcase → we-dare cutout zoom +
   pinned wall → ticker → scope stack → works slider → programs fan →
   reach out → footer.
   Font system: Fraunces 900 (.mega) for the biggest headings, Fraunces
   normal weights (.display + headings) for the rest, Montserrat for
   body, Homemade Apple (.script) for key lines and script accents.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --ivory:   #efeae0;
  --carbon:  #221a1d;
  --merlot:  #6b1a35;
  --magenta: #bc2a4e;
  --lilac:   #c5a4be;
  --indigo:  #27557e;
  --indigo-deep: #1d3f5e;
  --sage:    #6fa57c;
  --muted:   rgba(34, 26, 29, .55);
  --ivory-muted: rgba(239, 234, 224, .65);
}

/* ── Base ─────────────────────────────────────────────────────────── */
html, body {
  margin: 0; padding: 0;
  background: var(--ivory);
  color: var(--carbon);
  font-family: 'Montserrat', system-ui, sans-serif;
  min-height: 100vh;
}
html { scroll-behavior: auto; } /* glide scroll is scripted (600ms cubic) */
main { overflow-x: clip; } /* keep clipping off body: it propagates to the viewport */
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--magenta); color: var(--ivory); }
img, svg { max-width: 100%; display: block; }

.mega {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: .9;
}
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.script {
  font-family: 'Homemade Apple', cursive;
  font-weight: 400;
  text-transform: none;
}
/* Belt-and-suspenders: script accents set inline (e.g. the little rotated
   "·" and word flourishes inside otherwise-uppercase headings) inherit
   text-transform from their ancestor unless told not to. Never render
   the handwriting font in caps, full stop — no ancestor should win. */
.script, [style*="Homemade Apple"] { text-transform: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section-eyebrow { color: var(--muted); margin-bottom: 26px; }
.section-title {
  font-size: clamp(46px, 7.4vw, 118px);
  line-height: .95;
  margin: 0 0 26px;
}
.section-title em {
  font-family: 'Homemade Apple', cursive;
  font-style: normal;
  text-transform: none;
  font-size: .58em;
  color: var(--magenta);
  display: inline-block;
  line-height: 1.1;
  transform: rotate(-2deg) translateY(.06em);
}
.section-dek {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}

/* ── Pill button with circle-arrow chip ───────────────────────────── */
.btn-pill {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 9px 9px 9px 26px;
  border-radius: 18px;
  border: 1px solid var(--carbon);
  background: var(--ivory);
  color: var(--carbon);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn-pill::after {
  content: '';
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  background-color: var(--carbon);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23efeae0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='4' y1='12' x2='20' y2='12'/><polyline points='13 5 20 12 13 19'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 16px 16px;
}
.btn-pill:hover, .btn-pill:active { transform: translateY(-2px) rotate(-2deg); }

.btn-pill-scope {
  background: rgba(107, 26, 53, .08);
  border-color: rgba(107, 26, 53, .35);
  color: var(--merlot);
  align-self: flex-start;
}
.btn-pill-scope::after { background-color: var(--merlot); }
.btn-pill-submit { background: var(--carbon); color: var(--ivory); }
.btn-pill-submit::after { background-color: var(--magenta); }

/* ── Scroll-FX defaults (JS drives the transforms) ────────────────── */
[data-fx] { will-change: transform; }
[data-appear] { opacity: 0; }
[data-appear].is-in { opacity: 1; }
[data-appear="rise"].is-in { animation: c1-rise .9s cubic-bezier(.22,.9,.32,1) both; }
[data-appear="rise-spring"].is-in { animation: c1-rise-spring 1.25s cubic-bezier(.16,1.25,.3,1) both; }
@keyframes c1-rise { from { opacity: 0; transform: translate3d(0, 34px, 0); } to { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes c1-rise-spring { from { opacity: 0; transform: translate3d(0, 120%, 0); } to { opacity: 1; transform: translate3d(0,0,0); } }

/* ══ INTRO COVER ═══════════════════════════════════════════════════ */
.cover {
  position: fixed; inset: -100px 0 0 0;
  z-index: 9999;
  background: var(--merlot);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  overflow: hidden;
  animation: c1-fly-away 1.15s ease-in 1.55s 1 forwards;
}
.cover-inner { text-align: center; padding-top: 100px; }
.cover-kicker { color: var(--lilac); margin-bottom: 26px; animation: c1-cover-fade .8s ease-out both; }
.cover-title {
  font-size: clamp(64px, 13vw, 230px);
  line-height: .86;
  animation: c1-cover-rise 1s cubic-bezier(.22,.9,.32,1) .12s both;
}
.cover-tag {
  margin-top: 30px; font-size: 15px; letter-spacing: .04em; color: var(--ivory-muted);
  animation: c1-cover-fade .8s ease-out .5s both;
}
@keyframes c1-fly-away {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-135vh) rotate(-15deg); }
}
@keyframes c1-cover-rise { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
@keyframes c1-cover-fade { from { opacity: 0; } to { opacity: 1; } }

/* ══ FIXED HEADER ══════════════════════════════════════════════════ */
.site-head {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 940;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 3vw;
  color: var(--carbon);
  transition: color .3s ease;
  pointer-events: none;
}
.site-head.head-light { color: var(--ivory); }
/* interior pages: translucent paper scrim once scrolled, so the header
   stays readable over art-heavy card grids */
.site-head.head-solid {
  background: rgba(239, 234, 224, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(34, 26, 29, .08);
}
.site-head-logo img { transition: filter .3s ease; filter: invert(1); } /* white svg -> carbon */
.site-head.head-light .site-head-logo img { filter: none; }
.site-head a, .site-head button { pointer-events: auto; }
.site-head-logo img { height: 30px; width: auto; display: block; }
.site-head-nav { line-height: 1; }
.site-head-nav { display: flex; align-items: center; gap: 30px; }
.site-head-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  line-height: 1;
  position: relative;
}
.site-head-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s cubic-bezier(.22,.9,.32,1);
}
.site-head-nav a:hover::after, .site-head-nav a:active::after { transform: scaleX(1); transform-origin: left; }
.site-head-cta { border: 1px solid currentColor; border-radius: 999px; padding: 8px 18px; line-height: 1; }
.site-head-nav a.site-head-cta::after { display: none; }
.site-head-burger {
  display: none;
  margin-left: auto;
  background: none; border: 0; padding: 15px 12px; cursor: pointer;
  flex-direction: column; gap: 5px;
  color: inherit; /* buttons don't inherit color — needed for the blend */
}
.site-head-burger i { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .25s ease; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 930;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 8vw 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(34px, 9vw, 52px);
  padding: 8px 0;
  border-bottom: 1px solid rgba(34,26,29,.12);
}
.mobile-menu nav a:active { color: var(--magenta); }
.mobile-menu-foot { margin-top: 40px; color: var(--muted); }
body.menu-open .site-head-burger i:first-child { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .site-head-burger i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ══ 1 · HERO — giant centered wordmark ════════════════════════════ */
.hero {
  min-height: 82svh; /* lets the showcase panel peek in on load */
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 13vh 2vw 5vh;
}
.hero-title {
  margin: 0;
  display: flex; flex-direction: column; align-items: center;
  color: var(--carbon);
}
.hero-title-l1, .hero-title-l2 {
  display: block;
  line-height: .96;
  white-space: nowrap;
}
.hero-title-l1 { font-size: clamp(30px, 9.35vw, 182px); letter-spacing: 0; }
.hero-title-l2 { font-size: clamp(34px, 10.55vw, 205px); }
.hero-title-l1 { animation: c1-hero-line 1.1s cubic-bezier(.22,.9,.32,1) 2.75s both; }
.hero-title-l2 { animation: c1-hero-line 1.1s cubic-bezier(.22,.9,.32,1) 2.95s both; }
@keyframes c1-hero-line { from { opacity: 0; transform: translateY(70px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag {
  margin: 5vh 0 0;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  animation: c1-cover-fade .9s ease-out 3.35s both;
}

/* ══ 1b · SHOWCASE — panel expands to full-bleed on scroll ═════════ */
.showcase { position: relative; height: 200vh; margin-top: -41vh; z-index: 4; }
.showcase-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: flex-start; justify-content: center;
  overflow: clip;
}
.showcase-panel {
  margin: 12vh 0 0; /* JS drives margin to 0 as it expands */
  width: 34vw; height: 34vw; /* square start; JS drives toward full-bleed */
  border-radius: 18px;
  overflow: hidden;
  background: var(--indigo-deep);
  box-shadow: 0 40px 90px -50px rgba(34,26,29,.6);
  will-change: width, height, border-radius;
}
.showcase-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: c1-kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes c1-kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.4%, 1.2%); }
}
.showcase-statement {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 94vw;
  margin: 0;
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 3.3vw, 52px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(15, 25, 40, .55);
  pointer-events: none;
  opacity: 0; /* JS fades it in as the panel expands */
}
.showcase-statement strong { font-weight: 900; color: #fff; }
.showcase-statement-l1, .showcase-statement-l2 { white-space: nowrap; }
.showcase-caption {
  position: absolute; left: 50%; bottom: 4.5vh; transform: translateX(-50%);
  color: rgba(34, 26, 29, .72);
  white-space: nowrap;
}

/* ══ 2 · WE DARE — cutout zoom over moving film + pinned wall ══════ */
.ethos { position: relative; height: 340vh; z-index: 7; }
.ethos-sticky {
  position: sticky; top: 0; height: 100vh;
  overflow: clip;
  background: var(--merlot);
}
.ethos-scene {
  position: absolute; inset: 0;
  z-index: 2;
  background: var(--merlot);
  color: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4vh;
  padding: 10vh 5vw 8vh;
  text-align: center;
  opacity: 0; /* JS fades the wall in after the zoom */
}
.ethos-scene .section-eyebrow { color: var(--lilac); margin: 0; }
.ethos-notes {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  max-width: 1200px;
}
.ethos-note {
  position: relative;
  background: var(--ivory);
  color: var(--carbon);
  border-radius: 4px;
  padding: 30px 22px 24px;
  width: 215px;
  font-size: 15.5px; line-height: 1.55; text-align: left;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,.55);
  transform: translateX(120vw) rotate(var(--tilt, 0deg));
  display: block;
  will-change: transform, opacity;
}
.ethos-note::before { /* the pin */
  content: '';
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e06a8a, var(--magenta) 60%, #7d1c35);
  box-shadow: 0 2px 4px rgba(0,0,0,.35);
}
.ethos-note strong { font-weight: 700; }
.ethos-note em { font-style: normal; color: var(--magenta); font-weight: 600; }
.ethos-script {
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--lilac);
  margin: 0;
  transform: rotate(-2deg);
  opacity: 0;
  will-change: opacity, transform;
}
.ethos-plate {
  position: absolute; inset: 0;
  z-index: 3;
  /* Zoom is a JS-driven SVG viewBox change (future.js), not a CSS
     transform — keeps the text native-vector-crisp through 13x instead
     of GPU-scaling a rasterized layer. Only opacity animates via CSS. */
  will-change: opacity;
}
.ethos-plate svg { width: 100%; height: 100%; }
.ethos-mask-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 74px;
  letter-spacing: 0;
  text-transform: uppercase;
  fill: var(--merlot);
}
.ethos-plate-caption {
  position: absolute; left: 50%; bottom: 9vh; transform: translateX(-50%);
  color: var(--muted);
}

/* ══ 3 · BRAND TICKER WALL ═════════════════════════════════════════ */
.ticker {
  background: var(--indigo);
  color: var(--ivory);
  padding: 12vh 0;
  overflow: clip;
}
.ticker-head { padding: 0 4vw; margin-bottom: 6vh; }
.ticker-head .section-eyebrow { color: var(--lilac); }
.ticker-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 58px);
  line-height: 1.08;
  margin: 0;
  max-width: 28ch;
}
.ticker-title em {
  font-family: 'Homemade Apple', cursive;
  font-style: normal;
  font-size: .78em;
  color: var(--lilac);
  display: inline-block;
  line-height: 1.15;
  transform: rotate(-2deg);
}
.marquee {
  overflow: hidden; padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: inline-flex; gap: 14px; padding-right: 14px; white-space: nowrap; will-change: transform; }
.marquee[data-dir="left"]  .marquee-track { animation: c1-marquee-l 44s linear infinite; }
.marquee[data-dir="right"] .marquee-track { animation: c1-marquee-r 50s linear infinite; }
.marquee[data-row="2"] .marquee-track { animation-duration: 56s; }
@keyframes c1-marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes c1-marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-pill {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 999px;
  border: 1px solid rgba(239,234,224,.3);
  color: var(--ivory);
}
.marquee-pill:nth-child(4n) { background: rgba(188,42,78,.3); border-color: rgba(188,42,78,.45); }
.marquee-pill:nth-child(4n+2) { color: var(--lilac); }

/* ══ 4 · THE SCOPE — sticky stack, art breaking the frame ══════════ */
.scope {
  position: relative;
  background: var(--indigo);
  padding: 0 0 22vh;
  overflow: clip;
}
.scope-bigtext {
  position: absolute; left: 0; top: 6vh; width: 100%;
  text-align: center;
  font-size: 26vw; line-height: .9;
  color: var(--indigo-deep);
  white-space: nowrap;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
}
.scope-stack {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 22vw 4vw 0;
}
.scope-card {
  position: sticky; top: 4rem;
  display: flex; flex-direction: row;
  border-radius: 22px;
  min-height: 64vh;
  margin-top: 15vh;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.6);
  transform-origin: center bottom;
  will-change: transform;
}
.scope-card:first-child { margin-top: 0; }
.scope-card:nth-child(2) { top: 6rem; }
.scope-card:nth-child(3) { top: 8rem; }
.scope-card:nth-child(4) { top: 10rem; }
.scope-card:nth-child(even) { flex-direction: row-reverse; }
.scope-card-content {
  flex: 1 1 48%;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(30px, 4vw, 62px);
  gap: 15px;
  background: var(--ivory);
  color: var(--carbon);
  border-radius: 22px 0 0 22px;
}
.scope-card:nth-child(even) .scope-card-content { border-radius: 0 22px 22px 0; }
.scope-card-n { color: var(--muted); }
.scope-card-title { font-size: clamp(34px, 3.6vw, 56px); line-height: 1; margin: 0; color: var(--accent, var(--merlot)); }
.scope-card-dek { font-weight: 600; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.45; margin: 0; }
.scope-card-body { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 4px; max-width: 54ch; }
.scope-card-media {
  flex: 1 1 52%;
  margin: 0;
  background: var(--panel, var(--indigo-deep));
  border-radius: 0 22px 22px 0;
  position: relative;
  overflow: visible; /* the art breaks the frame */
}
.scope-card:nth-child(even) .scope-card-media { border-radius: 22px 0 0 22px; }
.scope-card-media img {
  position: absolute; left: 50%; bottom: -5%;
  height: 136%; width: auto; max-width: none;
  transform-origin: 50% 100%;
  transform: translateX(-50%) scale(var(--zoom, 1));
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .35));
  will-change: transform;
}
.scope-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.scope-tags span {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent, #6b1a35) 40%, transparent);
  color: var(--accent, var(--merlot));
}
.btn-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent, var(--merlot));
  color: var(--ivory);
  margin-top: 14px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.btn-circle svg { width: 20px; height: 20px; }
.btn-circle:hover, .btn-circle:active { transform: translateY(-3px) rotate(-8deg); }
.btn-circle-light { background: var(--ivory); color: var(--indigo-deep); margin-top: auto; }

/* ══ 5 · SELECTED WORKS — slider, three-up ═════════════════════════ */
.works {
  position: relative; z-index: 1;
  padding: 16vh 0 13vh;
  background: var(--ivory);
}
.works-head { padding: 0 4vw; max-width: 1320px; margin: 0 auto 6vh; }
.works-slider { position: relative; padding: 0 4vw; }
#worksSwiper { overflow: visible; padding: 8px 0 10px; }
#worksSwiper .swiper-wrapper { list-style: none; margin: 0; padding: 0; }
.work-card a { display: block; }
.work-media {
  margin: 0; border-radius: 14px; overflow: hidden;
  box-shadow: 0 28px 60px -38px rgba(34,26,29,.6);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
  will-change: transform;
}
.work-media svg, .work-media img { width: 100%; height: auto; aspect-ratio: 640/460; object-fit: cover; }
.work-card a:hover .work-media, .work-card a:active .work-media { transform: translateY(-3%) rotate(-1.8deg); }
.work-card:nth-child(even) a:hover .work-media, .work-card:nth-child(even) a:active .work-media { transform: translateY(-3%) rotate(1.8deg); }
.work-card-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 14px 6px 0; color: var(--carbon); }
.work-card-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(17px, 1.35vw, 21px); margin: 0; }
.work-card-dek { margin: 0; white-space: nowrap; opacity: .6; }
.works-nav { display: flex; justify-content: center; gap: 18px; margin-top: 4.5vh; }
.works-arrow, .programs-arrow {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(34,26,29,.4); border-radius: 50%;
  background: transparent; color: var(--carbon);
  cursor: pointer; padding: 0;
  transition: background .25s ease, color .25s ease, transform .2s ease, border-color .25s ease;
}
.works-arrow:hover, .works-arrow:active, .programs-arrow:hover, .programs-arrow:active {
  background: var(--magenta); color: var(--ivory); border-color: var(--magenta); transform: translateY(-2px);
}
.works-arrow svg, .programs-arrow svg { width: 18px; height: 18px; }
.works-arrow-prev svg, .programs-arrow-prev svg { transform: rotate(180deg); }
.works-pagination, .programs-pagination { display: flex; justify-content: center; margin-top: 20px; position: relative; z-index: 5; }
.works-pagination .swiper-pagination-bullet, .programs-pagination .swiper-pagination-bullet {
  background: var(--carbon); opacity: .25; width: 8px; height: 8px; margin: 0 5px; transition: opacity .3s ease, transform .3s ease;
}
.works-pagination .swiper-pagination-bullet-active, .programs-pagination .swiper-pagination-bullet-active {
  opacity: 1; transform: scale(1.3); background: var(--magenta);
}
.works-more { text-align: center; margin-top: 7vh; }

/* ══ 6 · PROGRAM DESIGN DISPLAY — fan stack over giant type ════════ */
.programs {
  position: relative; z-index: 1;
  padding: 16vh 0 15vh;
  overflow: clip;
}
.programs-bigtext {
  position: absolute; left: 0; top: 3vh; width: 100%;
  text-align: center;
  font-size: 15vw; line-height: .95;
  color: rgba(39, 85, 126, .1);
  white-space: nowrap;
  pointer-events: none;
}
.programs-head { position: relative; padding: 0 4vw; max-width: 1320px; margin: 0 auto 9vh; }
.programs-carousel { position: relative; overflow: hidden; padding: 26px 0 8px; }
#programsSwiper { overflow: visible; padding: 10px 0 26px; }

.programs-track { list-style: none; margin: 0; padding: 0; }
.program-card {
  height: auto;
  background: var(--indigo);
  color: var(--ivory);
  border-radius: 16px;
  padding: clamp(26px, 2.6vw, 40px);
  display: flex; flex-direction: column;
  min-height: 430px;
  box-shadow: 0 30px 60px -35px rgba(34,26,29,.55);
  transform-style: preserve-3d; backface-visibility: hidden;
}
.swiper-slide-active.program-card { background: var(--indigo-deep); }
.program-n { color: var(--lilac); margin-bottom: 22px; }
.program-title { font-size: clamp(26px, 2.5vw, 38px); line-height: 1; margin: 0 0 10px; }
.program-tagline {
  font-size: clamp(15px, 1.25vw, 19px);
  color: var(--lilac);
  margin: 0 0 16px;
  transform: rotate(-1.5deg);
  display: inline-block;
}
.program-for { font-weight: 600; font-size: 16px; margin: 0 0 12px; color: var(--lilac); }
.program-body { font-size: 15px; line-height: 1.65; margin: 0 0 26px; color: var(--ivory-muted); }
.program-mix { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; margin-bottom: 22px; }
.program-mix span {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(239,234,224,.35);
  color: var(--ivory);
}
.program-link {
  position: relative;
  display: inline-block; align-self: flex-start;
  font-weight: 500; font-size: 15px;
  padding-right: 30px;
  color: var(--ivory);
}
.program-link::after {
  content: '';
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23efeae0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='19' x2='19' y2='5'/><polyline points='9 5 19 5 19 15'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transition: transform .2s ease;
}
.program-link:hover::after, .program-link:active::after { transform: translateY(-50%) translate(3px, -3px); }
.programs-nav {
  display: flex; justify-content: center; gap: 18px;
  margin-top: 4vh; padding: 0 4vw;
  position: relative; z-index: 5;
}

/* ══ 7 · REACH OUT ═════════════════════════════════════════════════ */
.contact { padding: 18vh 4vw 14vh; background: var(--ivory); }
.contact-head { max-width: 1320px; margin: 0 auto 8vh; }
.contact-title { font-size: clamp(40px, 7vw, 122px); line-height: .95; margin: 0; }
.contact-title em {
  font-family: 'Homemade Apple', cursive;
  font-style: normal;
  text-transform: none;
  font-size: .5em;
  color: var(--magenta);
  display: inline-block;
  line-height: 1.15;
  transform: rotate(-2deg) translateY(.08em);
}
.contact-body {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 26px; position: relative; }
.contact-hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.contact-form input, .contact-form textarea {
  font-family: 'Montserrat', sans-serif; font-size: 16px;
  color: var(--carbon);
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(34,26,29,.35);
  padding: 10px 2px 12px;
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease;
  resize: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--magenta); }
.contact-form ::placeholder { color: rgba(34,26,29,.35); }
.contact-actions { display: flex; align-items: center; gap: 24px; margin-top: 8px; flex-wrap: wrap; }
.contact-note { color: var(--magenta); }
.contact-sent { padding: 40px 0; }
.contact-sent-kicker { color: var(--muted); margin-bottom: 16px; }
.contact-sent-script { font-family: 'Homemade Apple', cursive; color: var(--magenta); font-size: clamp(30px, 4vw, 48px); margin: 0 0 18px; transform: rotate(-2deg); display: inline-block; }
.contact-sent-line { font-family: 'Fraunces', serif; font-weight: 600; font-size: 26px; line-height: 1.35; max-width: 34ch; margin: 0; }

.contact-aside { display: flex; flex-direction: column; gap: 10px; }
.contact-art { margin: 0 0 22px; }
.contact-art img {
  width: 100%; height: auto;
  filter: drop-shadow(0 26px 36px rgba(34, 26, 29, .3));
}
.contact-aside-line { margin: 0 0 8px; font-size: 15px; color: var(--muted); }
.contact-aside-big {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  transition: color .15s ease;
  overflow-wrap: anywhere;
}
.contact-aside-big:hover, .contact-aside-big:active { color: var(--magenta); }
.contact-socials { display: flex; gap: 22px; margin-top: 22px; color: var(--muted); flex-wrap: wrap; }
.contact-socials a:hover, .contact-socials a:active { color: var(--magenta); }

/* ══ FOOTER ════════════════════════════════════════════════════════ */
.footer {
  background: var(--carbon);
  color: var(--ivory);
  padding: 12vh 4vw 34px;
  overflow: clip;
}
.footer-logo {
  display: block;
  width: min(84vw, 1080px);
  margin: 0 auto 10vh;
  animation: c1-pulse-flicker 2.4s ease-in-out infinite;
}
.footer-logo img { width: 100%; height: auto; }
@keyframes c1-pulse-flicker { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.footer-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  color: rgba(239,234,224,.6);
  border-top: 1px solid rgba(239,234,224,.15);
  padding-top: 26px;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a:hover, .footer-links a:active { color: var(--magenta); }

/* ═══════════════════════ MOBILE (≤ 767px) ═════════════════════════ */
@media only screen and (max-width: 767px) {

  .section-title { font-size: clamp(38px, 11.5vw, 64px); }
  .section-dek { font-size: 15px; }

  .cover-title { font-size: 17vw; }

  .site-head { padding: 16px 5vw; }
  .site-head-logo img { height: 24px; }
  .site-head-nav { display: none; }
  .site-head-burger { display: inline-flex; }

  .hero { min-height: 84svh; padding: 12vh 2vw 4vh; }
  .hero-title-l1 { font-size: 10.6vw; }
  .hero-title-l2 { font-size: 11.9vw; }
  .hero-tag { margin-top: 4vh; padding: 0 8vw; }

  .showcase { height: 170vh; margin-top: -26vh; }
  .showcase-panel { width: 62vw; height: 62vw; border-radius: 14px; }
  .showcase-statement { font-size: 4.4vw; width: 94vw; }
  .showcase-caption { white-space: normal; width: 90vw; text-align: center; }

  .ethos { height: 300vh; }
  /* mask geometry is retuned for small screens in future.js */
  .ethos-notes { gap: 12px; }
  .ethos-note { width: 86%; min-height: 0; padding: 26px 18px 18px; font-size: 15px; }
  .ethos-scene { gap: 3vh; padding: 8vh 6vw; }
  .ethos-plate-caption { width: 90%; text-align: center; }

  .ticker { padding: 10vh 0; }
  .ticker-head { padding: 0 5vw; margin-bottom: 5vh; }
  .marquee-pill { font-size: 11.5px; padding: 10px 18px; }

  .scope { padding-bottom: 16vh; }
  .scope-bigtext { font-size: 30vw; top: 4vh; }
  .scope-stack { padding: 38vw 5vw 0; }
  .scope-card, .scope-card:nth-child(even) {
    flex-direction: column;
    position: sticky; top: 3.5rem;
    min-height: auto;
    margin-top: 9vh;
    border-radius: 18px;
  }
  .scope-card:nth-child(2) { top: 5rem; }
  .scope-card:nth-child(3) { top: 6.5rem; }
  .scope-card:nth-child(4) { top: 8rem; }
  .scope-card:first-child { margin-top: 0; }
.scope-card:nth-child(2) { top: 6rem; }
.scope-card:nth-child(3) { top: 8rem; }
.scope-card:nth-child(4) { top: 10rem; }
  .scope-card-content, .scope-card:nth-child(even) .scope-card-content {
    padding: 26px 22px; gap: 12px;
    border-radius: 18px 18px 0 0;
    order: 1;
  }
  .scope-card-title { font-size: 12vw; }
  .scope-card-body { font-size: 14px; }
  .scope-card-media, .scope-card:nth-child(even) .scope-card-media {
    order: 2;
    aspect-ratio: 4 / 3.4;
    border-radius: 0 0 18px 18px;
  }
  .scope-card-media img { height: 118%; }

  .works { padding: 11vh 0 10vh; }
  .works-head { padding: 0 5vw; }
  .works-slider { padding: 0 5vw; }
  .work-card-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .works-more { margin-top: 6vh; }

  .programs { padding: 12vh 0; }
  .programs-bigtext { font-size: 26vw; }
  .programs-head { padding: 0 5vw; margin-bottom: 6vh; }
  .program-card { min-height: 410px; }
  .programs-carousel { overflow: hidden; }

  .contact { padding: 13vh 5vw 10vh; }
  .contact-body { grid-template-columns: 1fr; gap: 56px; }
  .contact-row { grid-template-columns: 1fr; }
  .contact-aside { order: 2; }
  .contact-art { max-width: 300px; }

  .footer-logo { width: 88vw; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}


/* ═══════════════ INNER PAGES (scope / programs / work) ═════════════ */
.page-hero {
  padding: 20vh 4vw 7vh;
  max-width: 1320px; margin: 0 auto;
}
.page-hero-kicker { color: var(--muted); margin-bottom: 22px; }
.page-hero-title {
  font-size: clamp(40px, 7.6vw, 124px);
  line-height: .92;
  margin: 0 0 18px;
  color: var(--accent, var(--carbon));
}
.page-hero-title em { font-style: normal; color: var(--accent, var(--magenta)); }
.page-hero-script {
  font-size: clamp(18px, 1.9vw, 27px);
  color: var(--magenta);
  display: inline-block;
  transform: rotate(-1.5deg);
  margin: 0 0 26px;
}
.page-hero-body {
  font-size: clamp(15px, 1.3vw, 19px); line-height: 1.7;
  max-width: 62ch; color: var(--carbon); margin: 0;
}
.page-section { padding: 8vh 4vw; max-width: 1320px; margin: 0 auto; }
.page-section-title {
  font-size: clamp(30px, 3.4vw, 52px); line-height: 1; margin: 0 0 5vh;
}
.page-section-title em {
  font-family: 'Homemade Apple', cursive; font-style: normal; text-transform: none;
  font-size: .62em; color: var(--magenta); display: inline-block;
  transform: rotate(-2deg); line-height: 1.1;
}
.page-cta {
  background: var(--merlot); color: var(--ivory);
  padding: 12vh 4vw; text-align: center;
}
.page-cta-script { font-size: clamp(20px, 2.4vw, 34px); color: var(--lilac); display: inline-block; transform: rotate(-2deg); margin: 0 0 26px; }
.page-cta .btn-pill { margin: 0 auto; }

/* Scope detail */
.sp-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.sp-art {
  background: var(--panel, var(--indigo-deep));
  border-radius: 22px;
  position: relative;
  min-height: 54vh;
  overflow: visible;
}
.sp-art img {
  position: absolute; left: 50%; bottom: -4%;
  height: 118%; width: auto; max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.35));
}
.sp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 4vh 0 0; }
.sp-tags span {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent, #6b1a35) 40%, transparent);
  color: var(--accent, var(--merlot));
}
.sp-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sp-step {
  background: #fff6; border: 1px solid rgba(34,26,29,.14); border-radius: 16px;
  padding: 26px 22px;
}
.sp-step-n { color: var(--accent, var(--magenta)); margin-bottom: 14px; }
.sp-step h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; margin: 0 0 10px; }
.sp-step p { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.sp-quote {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(20px, 2.2vw, 32px); line-height: 1.35;
  max-width: 34ch; margin: 0;
}
.sp-quote-cite { margin-top: 18px; color: var(--muted); }

/* Programme cards (master page + related strips) */
.pg-group { margin-bottom: 3vh; }
.pg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 38px); }
.pg-card {
  display: flex; flex-direction: column;
  background: #fff5; border: 1px solid rgba(34,26,29,.12); border-radius: 18px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.pg-card:hover, .pg-card:active { transform: translateY(-6px) rotate(-.6deg); box-shadow: 0 30px 60px -35px rgba(34,26,29,.5); }
.pg-card-media { margin: 0; overflow: hidden; }
.pg-card-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.pg-card:hover .pg-card-media img { transform: scale(1.05); }
.pg-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pg-card-eyebrow { color: var(--muted); }
.pg-card-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(22px, 1.9vw, 30px); text-transform: uppercase; letter-spacing: -.005em; margin: 0; }
.pg-card-tagline { font-family: 'Homemade Apple', cursive; color: var(--magenta); font-size: 15px; margin: 0 0 6px; transform: rotate(-1.2deg); display: inline-block; }
.pg-card-dek { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; }
.pg-card .btn-circle { margin-top: auto; }

/* Programme detail */
.pd-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.pd-art { border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px -50px rgba(0,0,0,.55); }
.pd-art img { width: 100%; height: auto; display: block; }
.pd-www { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); }
.pd-www-col h3 {
  font-family: 'Homemade Apple', cursive; font-weight: 400;
  color: var(--magenta); font-size: 24px; margin: 0 0 14px;
  transform: rotate(-2deg); display: inline-block;
}
.pd-www-col p { font-size: 14.5px; line-height: 1.7; color: var(--carbon); margin: 0; }
.pd-how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pd-phase {
  background: var(--indigo-deep); color: var(--ivory);
  border-radius: 16px; padding: 26px 22px;
}
.pd-phase:nth-child(even) { background: var(--merlot); }
.pd-phase-n { color: var(--lilac); margin-bottom: 14px; }
.pd-phase h3 { font-family: 'Fraunces', serif; font-weight: 600; text-transform: uppercase; font-size: 21px; margin: 0 0 14px; }
.pd-phase ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.pd-phase li { font-size: 13px; line-height: 1.45; color: var(--ivory-muted); padding-left: 16px; position: relative; }
.pd-phase li::before { content: '·'; position: absolute; left: 2px; color: var(--lilac); }

/* Work index */
/* Pillar filter tabs on the Selected Work page */
.wk-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 clamp(32px, 4vw, 52px);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(34, 26, 29, .14);
}
.wk-filter {
  font-family: inherit; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--carbon);
  background: transparent;
  border: 1px solid rgba(34, 26, 29, .28);
  border-radius: 999px;
  padding: 10px 20px; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.wk-filter:hover { border-color: var(--magenta); color: var(--magenta); }
.wk-filter.is-active {
  background: var(--magenta); border-color: var(--magenta); color: var(--ivory);
}
.wk-empty {
  grid-column: 1 / -1;
  margin: clamp(32px, 6vw, 80px) 0;
  text-align: center; color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.wk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 44px); }
.wk-card { display: block; }
.wk-media { margin: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 28px 60px -38px rgba(34,26,29,.6); transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.wk-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.wk-card:hover .wk-media, .wk-card:active .wk-media { transform: translateY(-2.5%) rotate(-1.2deg); }
.wk-card:nth-child(even):hover .wk-media { transform: translateY(-2.5%) rotate(1.2deg); }
.wk-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 16px 6px 0; }
.wk-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(18px, 1.6vw, 24px); margin: 0; }
.wk-dek { margin: 0; white-space: nowrap; opacity: .6; }
.wk-tagline { font-size: 14px; color: var(--muted); margin: 4px 6px 0; }

@media only screen and (max-width: 767px) {
  .page-hero { padding: 16vh 6vw 6vh; }
  .page-section { padding: 6vh 6vw; }
  .sp-hero, .pd-hero { grid-template-columns: 1fr; gap: 40px; }
  .sp-art { min-height: 46vh; }
  .sp-process, .pd-how { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pg-grid { grid-template-columns: 1fr; }
  .pd-www { grid-template-columns: 1fr; }
  .wk-grid { grid-template-columns: 1fr; }
  .wk-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ═══════════════════ REDUCED MOTION ═══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .cover { display: none; }
  [data-appear] { opacity: 1; }
  [data-appear].is-in { animation: none; }
  .hero-title-l1, .hero-title-l2, .hero-tag { animation: none; }
  .marquee-track { animation: none !important; }
  .footer-logo { animation: none; }
  .showcase { height: auto; }
  .showcase-sticky { position: static; height: auto; padding: 8vh 0; }
  .showcase-panel img { animation: none; }
  .ethos { height: auto; }
  .ethos-sticky { position: static; height: auto; }
  .ethos-plate { display: none; }
  .ethos-scene { position: relative; opacity: 1 !important; }
  .ethos-note { transform: rotate(var(--tilt, 0deg)); }
  .ethos-script { opacity: 1; }
  .scope-card-media img { transform: translateX(-50%); }
}
