/* ============================================================
   11/10 — Eleven Ten · Sports & Entertainment Ecosystem
   Brand-aligned build
   Palette  : Slate Blue #223b56 · Burgundy #601f20 · Cream #ede9de · Earthy Pink #d2b29d
   Type     : Bricolage Grotesque (display + body) · Pinyon Script (accent)
   ============================================================ */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/BricolageGrotesque.ttf") format("truetype");
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}
@font-face {
  font-family: "Pinyon Script";
  src: url("assets/fonts/PinyonScript-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Brand palette */
  --slate: #223b56;          /* primary / ink */
  --slate-2: #1a2e44;        /* deeper slate */
  --slate-3: #2d4d6e;        /* lifted slate */
  --burgundy: #601f20;       /* deep accent */
  --red: #b8392f;            /* bright burgundy-red (hover / highlight) */
  --cream: #ede9de;          /* background */
  --cream-2: #e3ddcd;        /* panel */
  --cream-3: #f5f2ea;        /* lifted */
  --pink: #d2b29d;           /* earthy pink secondary accent */

  /* Roles */
  --paper: var(--cream);
  --ink: var(--slate);
  --muted: #6f7a86;
  --hairline: rgba(34,59,86,0.16);
  --hairline-2: rgba(34,59,86,0.08);
  --hairline-dark: rgba(237,233,222,0.18);

  --display: "Bricolage Grotesque", "Helvetica Neue", system-ui, sans-serif;
  --body: "Bricolage Grotesque", "Helvetica Neue", system-ui, sans-serif;
  --script: "Pinyon Script", "Snell Roundhand", cursive;
  --label: "Bricolage Grotesque", system-ui, sans-serif;

  --nav-h: 76px;
  --pad: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;  /* fallback */
  /* `clip` stops horizontal scroll without making body a scroll container,
     which would otherwise break every position:sticky on the site. */
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--burgundy); color: var(--cream); }

/* ------------------------------------------------------------
   Typographic primitives
   ------------------------------------------------------------ */
.label {
  font-family: var(--label);
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.label.rule::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6;
}

.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--burgundy);
  /* script glyphs have deep descenders */
  padding-bottom: 0.12em;
}

.h-mega { font-size: clamp(64px, 12vw, 184px); }
.h-xl   { font-size: clamp(48px, 7.5vw, 116px); }
.h-lg   { font-size: clamp(38px, 5vw, 80px); }
.h-md   { font-size: clamp(26px, 3vw, 48px); }
.h-sm   { font-size: clamp(20px, 2vw, 30px); }

.lede {
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.rule { height: 1px; background: var(--hairline); width: 100%; }
.rule-dark { background: var(--hairline-dark); }

/* ------------------------------------------------------------
   Buttons / links
   ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 26px; border-radius: 999px;
  background: var(--slate); color: var(--cream);
  border: 1px solid var(--slate);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }
.btn .arr {
  width: 22px; height: 1px; background: currentColor; position: relative;
  transition: width .25s ease;
}
.btn .arr::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arr { width: 34px; }
.btn.ghost { background: transparent; color: var(--slate); border-color: var(--hairline); }
.btn.ghost:hover { background: var(--slate); color: var(--cream); border-color: var(--slate); }
.btn.lg { padding: 20px 32px; font-size: 13px; }
.btn.on-dark { background: var(--cream); color: var(--slate); border-color: var(--cream); }
.btn.on-dark:hover { background: var(--pink); border-color: var(--pink); color: var(--slate); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color .2s ease;
}
.link-arrow:hover { color: var(--burgundy); }
.link-arrow .arr { width: 22px; height: 1px; background: currentColor; position: relative; }
.link-arrow .arr::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ------------------------------------------------------------
   Nav — SOLID, never transparent over content
   ------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(237,233,222,0.85);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  color: var(--slate);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: var(--cream);
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 24px rgba(34,59,86,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo .mark { height: 26px; width: auto; }
.nav-logo .tag {
  font-family: var(--label); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  padding-left: 12px; border-left: 1px solid var(--hairline);
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  position: relative;
  font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 999px;
  color: var(--slate);
  transition: color .2s ease;
}
.nav-link:hover { color: var(--burgundy); }
.nav-link[data-active="true"] { color: var(--burgundy); }
.nav-link[data-active="true"]::before {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1.5px; background: var(--burgundy);
}
.nav-cta {
  font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 999px;
  background: var(--slate); color: var(--cream);
  transition: background .25s ease;
}
.nav-cta:hover { background: var(--burgundy); }

/* Burger */
.nav-burger {
  display: none;
  width: 46px; height: 46px; position: relative;
  border: 1px solid var(--hairline); border-radius: 999px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--slate); transition: transform .35s ease, opacity .25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--slate); color: var(--cream);
  padding: calc(var(--nav-h) + 24px) 22px 24px;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); pointer-events: auto; }
.mm-meta {
  display: flex; justify-content: space-between;
  font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; opacity: .55;
  padding-bottom: 16px; border-bottom: 1px solid var(--hairline-dark);
}
.mm-list { list-style: none; flex: 1; display: flex; flex-direction: column; padding: 16px 0 0; }
.mm-list li {
  border-bottom: 1px solid var(--hairline-dark);
  opacity: 0; transform: translateY(18px);
  animation: mmIn .5s cubic-bezier(.2,.7,.2,1) forwards;
}
.mobile-menu:not(.open) .mm-list li { animation: none; opacity: 0; transform: translateY(18px); }
@keyframes mmIn { to { opacity: 1; transform: translateY(0); } }
.mm-list a {
  display: grid; grid-template-columns: 36px 1fr auto; align-items: center;
  padding: 18px 0; font-family: var(--display); font-weight: 600;
}
.mm-list a .num { font-family: var(--label); font-size: 11px; letter-spacing: .14em; opacity: .5; }
.mm-list a .label { font-size: 34px; line-height: 1; letter-spacing: -0.02em; }
.mm-list a .arr { font-size: 16px; opacity: .5; }
.mm-list a[data-active="true"] .label { color: var(--pink); }
.mm-foot { padding-top: 20px; border-top: 1px solid var(--hairline-dark); display: flex; flex-direction: column; gap: 16px; }
.mm-cta {
  display: inline-flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 18px 22px; border-radius: 999px; background: var(--cream); color: var(--slate);
  font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.mm-addr { font-family: var(--label); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .5; }

/* ------------------------------------------------------------
   Section scaffolding
   ------------------------------------------------------------ */
.section { padding: 120px var(--pad); position: relative; }
.section.tight { padding-top: 80px; padding-bottom: 80px; }
.section.dark { background: var(--slate); color: var(--cream); }
.section.burgundy { background: var(--burgundy); color: var(--cream); }
.section.pink { background: var(--pink); color: var(--slate); }
.section.panel { background: var(--cream-2); }

.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 32px;
  align-items: end; margin-bottom: 64px;
}
.section-head .label { margin-bottom: 4px; }
.section-head h2 { text-wrap: balance; }
.dark .label, .burgundy .label { color: rgba(237,233,222,0.6); }

/* ------------------------------------------------------------
   Hero (Home) — slate field, no flashing lights / scan lines
   ------------------------------------------------------------ */
.hero {
  position: relative; background: var(--slate); color: var(--cream);
  min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg .glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.hero-bg .g1 { width: 760px; height: 760px; left: -12%; top: -18%;
  background: radial-gradient(circle, rgba(176,57,47,0.5) 0%, rgba(176,57,47,0) 65%); }
.hero-bg .g2 { width: 880px; height: 880px; right: -16%; bottom: -22%;
  background: radial-gradient(circle, rgba(210,178,157,0.4) 0%, rgba(210,178,157,0) 65%); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(237,233,222,0.04) 0 1px, transparent 1px 88px);
}
.hero-bg .wordmark {
  position: absolute; right: -2%; top: 16%;
  width: min(58vw, 760px); opacity: 0.10; transform: rotate(-4deg);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 40px) var(--pad) 44px;
  width: 100%;
}
.hero-meta {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(237,233,222,0.7);
  padding-bottom: 40px; margin-bottom: 40px;
  border-bottom: 1px solid var(--hairline-dark);
}
.hero-meta .k { color: rgba(237,233,222,0.45); margin-right: 8px; }
.hero-title { font-family: var(--display); font-weight: 600; }
.hero-title .l1 {
  font-size: clamp(52px, 9vw, 150px); line-height: 0.92; letter-spacing: -0.03em;
}
.hero-title .accent {
  font-family: var(--script); font-weight: 400; color: var(--pink);
  font-size: clamp(64px, 11vw, 190px); letter-spacing: 0; line-height: 1;
  display: inline-block; padding: 0 .08em .12em;
}
.hero-foot {
  display: grid; grid-template-columns: 1.3fr auto; gap: 40px; align-items: end;
  margin-top: 52px;
}
.hero-statement { max-width: 540px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.5; color: rgba(237,233,222,0.88); }
.hero-statement b { font-weight: 600; color: #fff; }
.hero-scroll {
  display: flex; align-items: center; gap: 10px; justify-self: end;
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(237,233,222,0.7);
}
.hero-scroll .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--pink); }

/* ------------------------------------------------------------
   Static brand strip (replaces scrolling marquee — "kurangi running text")
   ------------------------------------------------------------ */
.brandstrip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px;
  padding: 26px var(--pad);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.brandstrip.dark { border-color: var(--hairline-dark); background: var(--slate); color: var(--cream); }
.brandstrip .item {
  font-family: var(--label); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
}
.brandstrip .item::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--burgundy); }
.brandstrip.dark .item::before { background: var(--pink); }

/* ------------------------------------------------------------
   Ecosystem (Home)
   ------------------------------------------------------------ */
.eco-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
}
.eco-card {
  grid-column: span 4;
  border: 1px solid var(--hairline); border-radius: 4px;
  padding: 32px 30px 30px; min-height: 280px;
  display: flex; flex-direction: column;
  background: var(--cream-3);
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.eco-card.wide { grid-column: span 6; }
.eco-card:hover { background: var(--slate); color: var(--cream); border-color: var(--slate); transform: translateY(-4px); }
.eco-card .ico { width: 34px; height: 34px; color: var(--burgundy); margin-bottom: auto; transition: color .3s ease; }
.eco-card:hover .ico { color: var(--pink); }
.eco-card .n { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .55; margin-bottom: 14px; }
.eco-card .t { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -0.02em; line-height: 1; margin-bottom: 12px; }
.eco-card .d { font-size: 14.5px; line-height: 1.5; opacity: .82; }

/* ------------------------------------------------------------
   Stats
   ------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hairline-dark); }
.stat { padding: 40px 24px; border-right: 1px solid var(--hairline-dark); display: flex; flex-direction: column; gap: 12px; }
.stat:last-child { border-right: 0; }
.stat .v { font-family: var(--display); font-weight: 600; font-size: clamp(56px, 6.5vw, 104px); line-height: 0.9; letter-spacing: -0.03em; color: var(--pink); }
.stat .v sup { font-size: 16px; letter-spacing: .08em; vertical-align: top; margin-left: 4px; opacity: .7; color: inherit; }
.stat .l { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .72; max-width: 210px; }

/* ------------------------------------------------------------
   Manifesto / two-column prose
   ------------------------------------------------------------ */
.prose-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.prose-2 p { font-size: 16px; line-height: 1.7; }
.prose-2 p b { font-weight: 600; }
.manifesto-cta { display: flex; align-items: center; gap: 32px; padding-top: 40px; margin-top: 48px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.manifesto-tag { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------------------------------------
   Page header (interior pages)
   ------------------------------------------------------------ */
.page-head {
  padding: calc(var(--nav-h) + 72px) var(--pad) 56px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: end;
  border-bottom: 1px solid var(--hairline);
}
.page-head h1 { font-family: var(--display); font-weight: 600; font-size: clamp(54px, 10vw, 156px); line-height: 0.9; letter-spacing: -0.03em; }
.page-head h1 .accent { font-family: var(--script); font-weight: 400; color: var(--burgundy); letter-spacing: 0; display: inline-block; padding-bottom: .06em; }

/* ------------------------------------------------------------
   About
   ------------------------------------------------------------ */
.about-row {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px;
  padding: 84px var(--pad);
  border-bottom: 1px solid var(--hairline);
}
.about-row .label { grid-column: span 3; }
.about-row .body { grid-column: 4 / -1; }
.about-row .body .lead { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 3vw, 40px); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 22px; text-wrap: balance; }
.about-row .body p { font-size: 16.5px; line-height: 1.65; opacity: .9; }
.about-row .body p + p { margin-top: 16px; }
.about-row .body .lead em { font-family: var(--script); font-style: normal; color: var(--burgundy); font-size: 1.35em; }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 84px var(--pad); }
.value { border-top: 2px solid var(--slate); padding-top: 22px; }
.value .n { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.value .t { font-family: var(--display); font-weight: 600; font-size: 30px; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1; }
.value .t em { font-family: var(--script); font-style: normal; color: var(--burgundy); font-size: 1.3em; }
.value .d { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.team { background: var(--slate); color: var(--cream); padding: 110px var(--pad); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; }
.team-photo {
  aspect-ratio: 3/4; position: relative; overflow: hidden; margin-bottom: 16px; border-radius: 3px;
  background:
    repeating-linear-gradient(135deg, rgba(237,233,222,0.05) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, var(--slate-3), var(--slate-2));
}
.team-photo::after {
  content: attr(data-label); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(237,233,222,0.35);
}
.team-card:hover .team-photo { background: linear-gradient(180deg, var(--burgundy), var(--slate-2)); }
.team-card .name { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.team-card .role { font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .6; margin-top: 4px; }

/* ------------------------------------------------------------
   Collaboration
   ------------------------------------------------------------ */
.collab-list { border-top: 1px solid var(--hairline); }
.collab-row {
  display: grid; grid-template-columns: 64px 1.1fr 1.6fr auto; gap: 28px; align-items: center;
  padding: 38px 8px; border-bottom: 1px solid var(--hairline);
  transition: padding .3s ease, background .3s ease;
}
.collab-row:hover { padding-left: 24px; padding-right: 24px; background: var(--cream-2); }
.collab-row .num { font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--burgundy); }
.collab-row .ttl { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 3vw, 46px); letter-spacing: -0.025em; line-height: 1; }
.collab-row .ttl em { font-family: var(--script); font-style: normal; color: var(--burgundy); font-size: 1.15em; }
.collab-row .desc { font-size: 15px; line-height: 1.55; max-width: 540px; opacity: .85; }
.collab-row .ico { width: 30px; height: 30px; color: var(--slate); opacity: .5; justify-self: end; transition: opacity .25s, color .25s; }
.collab-row:hover .ico { opacity: 1; color: var(--burgundy); }

/* ------------------------------------------------------------
   Work / Portfolio
   ------------------------------------------------------------ */
.work-filter { display: flex; gap: 8px; padding: 22px var(--pad); border-bottom: 1px solid var(--hairline); flex-wrap: wrap; align-items: center; }
.work-filter button {
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--hairline); transition: background .2s, color .2s, border-color .2s;
}
.work-filter button:hover { border-color: var(--slate); }
.work-filter button[data-active="true"] { background: var(--slate); color: var(--cream); border-color: var(--slate); }
.work-filter .count { margin-left: auto; font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; padding: 56px var(--pad); }
.work-card { position: relative; overflow: hidden; }
.work-card.span-7 { grid-column: span 7; }
.work-card.span-5 { grid-column: span 5; }
.work-card.span-8 { grid-column: span 8; }
.work-card.span-6 { grid-column: span 6; }
.work-card.span-4 { grid-column: span 4; }
.work-card.span-12 { grid-column: span 12; }
.work-img { aspect-ratio: 16/11; position: relative; overflow: hidden; border-radius: 3px; }
.work-img .ph {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px;
  font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  background: linear-gradient(160deg, var(--cream-2) 0%, var(--pink) 130%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.work-img.slate .ph { background: linear-gradient(160deg, var(--slate-3) 0%, var(--slate-2) 100%); color: rgba(237,233,222,0.55); }
.work-img.burgundy .ph { background: linear-gradient(160deg, var(--red) 0%, var(--burgundy) 100%); color: rgba(237,233,222,0.6); }
.work-card:hover .ph { transform: scale(1.04); }
.work-meta { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 2px 4px; gap: 16px; }
.work-meta .ttl { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.2vw, 32px); letter-spacing: -0.02em; }
.work-meta .cat { font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-align: right; }
.work-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: var(--cream); color: var(--slate); padding: 6px 11px; border-radius: 999px;
}

/* Pillars (Facility / Event / Academy) */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 var(--pad) 40px; }
.pillar { border: 1px solid var(--hairline); border-radius: 4px; padding: 34px 30px; background: var(--cream-3); transition: background .3s, transform .3s, color .3s, border-color .3s; }
.pillar:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); transform: translateY(-4px); }
.pillar .ico { width: 34px; height: 34px; color: var(--burgundy); margin-bottom: 22px; transition: color .3s; }
.pillar:hover .ico { color: var(--pink); }
.pillar .t { font-family: var(--display); font-weight: 600; font-size: 30px; letter-spacing: -0.02em; margin-bottom: 10px; }
.pillar .d { font-size: 14.5px; line-height: 1.55; opacity: .85; }

/* Upcoming projects */
.upcoming { border-top: 1px solid var(--hairline); }
.upcoming-row {
  display: grid; grid-template-columns: 130px 1fr 200px 120px; gap: 24px; align-items: center;
  padding: 26px 8px; border-bottom: 1px solid var(--hairline);
}
.upcoming-row .yr { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--burgundy); }
.upcoming-row .nm { font-family: var(--display); font-weight: 500; font-size: clamp(18px, 2vw, 26px); letter-spacing: -0.02em; }
.upcoming-row .ct, .upcoming-row .st { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.upcoming-row .st { text-align: right; }
.upcoming-row .st.live { color: var(--red); }

/* ------------------------------------------------------------
   Case study modal
   ------------------------------------------------------------ */
.case-modal { position: fixed; inset: 0; z-index: 200; background: var(--slate); color: var(--cream); overflow-y: auto; animation: caseIn .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes caseIn { from { transform: translateY(36px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.case-close { position: fixed; top: 20px; right: var(--pad); z-index: 210; font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 11px 18px; border-radius: 999px; border: 1px solid var(--cream); color: var(--cream); }
.case-close:hover { background: var(--cream); color: var(--slate); }
.case-hero { padding: calc(var(--nav-h) + 36px) var(--pad) 36px; }
.case-hero h2 { font-family: var(--display); font-weight: 600; font-size: clamp(54px, 10vw, 150px); line-height: 0.9; letter-spacing: -0.03em; margin: 14px 0 32px; }
.case-hero h2 .accent { font-family: var(--script); font-weight: 400; color: var(--pink); letter-spacing: 0; }
.case-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 24px; border-top: 1px solid var(--hairline-dark); }
.case-meta .k { font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .5; margin-bottom: 6px; }
.case-meta .v { font-size: 15px; }
.case-img { aspect-ratio: 21/9; margin: 32px var(--pad);
  background: repeating-linear-gradient(135deg, rgba(237,233,222,0.05) 0 1px, transparent 1px 18px), linear-gradient(160deg, var(--slate-3), var(--burgundy));
  display: flex; align-items: center; justify-content: center; border-radius: 4px;
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(237,233,222,0.5); }
.case-body { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; padding: 56px var(--pad); border-top: 1px solid var(--hairline-dark); }
.case-body .lead { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 3vw, 36px); line-height: 1.2; letter-spacing: -0.02em; }
.case-body p { font-size: 15.5px; line-height: 1.65; opacity: .85; }
.case-body p + p { margin-top: 14px; }
.case-stats { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 var(--pad) 72px; border-top: 1px solid var(--hairline-dark); }

/* ------------------------------------------------------------
   Insights
   ------------------------------------------------------------ */
.insight-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--hairline); border-radius: 4px; overflow: hidden; margin-bottom: 28px;
}
.insight-feature .img { background: linear-gradient(160deg, var(--slate-3), var(--burgundy)); min-height: 360px; position: relative; }
.insight-feature .img::after { content: attr(data-label); position: absolute; left: 24px; bottom: 22px; font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(237,233,222,0.55); }
.insight-feature .txt { padding: 44px 42px; display: flex; flex-direction: column; }
.insight-feature .cat { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--burgundy); margin-bottom: 18px; }
.insight-feature .t { font-family: var(--display); font-weight: 600; font-size: clamp(28px, 3.4vw, 48px); letter-spacing: -0.025em; line-height: 1.02; margin-bottom: 18px; text-wrap: balance; }
.insight-feature .ex { font-size: 16px; line-height: 1.6; opacity: .85; margin-bottom: auto; }
.insight-feature .meta { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 28px; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { border-top: 2px solid var(--slate); padding-top: 20px; display: flex; flex-direction: column; min-height: 240px; transition: border-color .25s; }
.insight-card:hover { border-color: var(--burgundy); }
.insight-card .cat { font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--burgundy); margin-bottom: 16px; }
.insight-card .t { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 12px; }
.insight-card .ex { font-size: 14px; line-height: 1.55; opacity: .8; margin-bottom: auto; }
.insight-card .meta { font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 22px; }

.metric-band { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.metric { padding: 40px 24px; border-right: 1px solid var(--hairline); }
.metric:last-child { border-right: 0; }
.metric .v { font-family: var(--display); font-weight: 600; font-size: clamp(40px, 4.5vw, 72px); letter-spacing: -0.03em; line-height: 1; color: var(--burgundy); }
.metric .l { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 12px; max-width: 220px; }

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */
.contact-tracks { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--hairline); }
.track { padding: 52px var(--pad); border-right: 1px solid var(--hairline); cursor: pointer; transition: background .3s, color .3s; }
.track:last-child { border-right: 0; }
.track[data-active="true"] { background: var(--slate); color: var(--cream); }
.track .n { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .55; margin-bottom: 22px; }
.track .t { font-family: var(--display); font-weight: 600; font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.025em; line-height: 0.95; }
.track .d { font-size: 14px; line-height: 1.5; margin-top: 14px; max-width: 280px; opacity: .85; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px var(--pad); }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.info-block .l { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.info-block .v { font-size: 17px; line-height: 1.45; }
.info-block .v.address { font-family: var(--display); font-weight: 600; font-size: 28px; line-height: 1.1; letter-spacing: -0.02em; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--hairline); transition: background .2s, color .2s; }
.socials a:hover { background: var(--slate); color: var(--cream); border-color: var(--slate); }

.form { display: flex; flex-direction: column; gap: 20px; }
.form .form-label { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field label { display: block; font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 0; border-bottom: 1px solid var(--hairline); background: transparent;
  padding: 12px 0; font-size: 16px; outline: none; color: var(--slate); border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(34,59,86,0.4); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--burgundy); }
.field textarea { resize: none; min-height: 110px; font-family: inherit; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form .submit {
  display: inline-flex; align-items: center; gap: 14px; font-family: var(--label); font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: 19px 28px; border-radius: 999px;
  background: var(--slate); color: var(--cream); align-self: flex-start; transition: background .25s;
}
.form .submit:hover { background: var(--burgundy); }
.form .submit .arr { width: 26px; height: 1px; background: currentColor; position: relative; }
.form .submit .arr::after { content: ""; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

/* ------------------------------------------------------------
   CTA band + Footer
   ------------------------------------------------------------ */
.cta-band {
  padding: 96px var(--pad); background: var(--burgundy); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px;
}
.cta-band .script { color: var(--pink); font-size: clamp(56px, 9vw, 150px); }
.cta-band .sub { font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }

.foot { background: var(--slate); color: var(--cream); padding: 80px var(--pad) 0; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 56px; border-bottom: 1px solid var(--hairline-dark); }
.foot-brand .mark { height: 30px; margin-bottom: 22px; }
.foot-brand p { font-size: 14px; line-height: 1.6; opacity: .78; max-width: 320px; }
.foot-brand .wm { width: 200px; margin-top: 26px; opacity: .9; }
.foot-col h5 { font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .5; margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.foot-col ul a:hover { color: var(--pink); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .55; padding-top: 24px; }

/* ------------------------------------------------------------
   Page enter
   ------------------------------------------------------------ */
.page-enter { animation: pageEnter .45s cubic-bezier(.2,.7,.2,1) both; }
@keyframes pageEnter { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { * { animation-duration: .001ms !important; } html { scroll-behavior: auto; } }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1000px) {
  .eco-card, .eco-card.wide { grid-column: span 6; }
  .work-card.span-7, .work-card.span-5, .work-card.span-8, .work-card.span-6 { grid-column: span 6; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --nav-h: 64px; --pad: 18px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-logo .tag { display: none; }

  .section { padding: 72px var(--pad); }
  .section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }

  .hero-inner { padding: calc(var(--nav-h) + 28px) var(--pad) 32px; }
  .hero-meta { flex-direction: column; gap: 10px; padding-bottom: 24px; margin-bottom: 28px; }
  .hero-foot { grid-template-columns: 1fr; gap: 22px; }
  .hero-scroll { justify-self: start; }
  .hero-bg .wordmark { top: auto; bottom: 8%; right: -10%; width: 100vw; }

  .brandstrip { gap: 12px 22px; padding: 20px var(--pad); }
  .brandstrip .item { font-size: 11px; }

  .eco-grid { grid-template-columns: 1fr; }
  .eco-card, .eco-card.wide { grid-column: span 1; min-height: 0; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 26px 16px; border-bottom: 1px solid var(--hairline-dark); }
  .stat:nth-child(2n) { border-right: 0; }

  .prose-2 { grid-template-columns: 1fr; gap: 20px; }
  .manifesto-cta { flex-direction: column; align-items: flex-start; gap: 16px; }

  .page-head { grid-template-columns: 1fr; gap: 14px; padding: calc(var(--nav-h) + 40px) var(--pad) 36px; }

  .about-row { grid-template-columns: 1fr; gap: 14px; padding: 56px var(--pad); }
  .about-row .label, .about-row .body { grid-column: 1 / -1; }
  .values { grid-template-columns: 1fr; gap: 24px; padding: 56px var(--pad); }
  .team { padding: 72px var(--pad); }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }

  .collab-row { grid-template-columns: 40px 1fr; gap: 8px 16px; padding: 26px 4px; }
  .collab-row .desc { grid-column: 1 / -1; }
  .collab-row .ico { display: none; }
  .collab-row:hover { padding-left: 8px; padding-right: 8px; }

  .work-grid { grid-template-columns: 1fr; gap: 20px; padding: 32px var(--pad); }
  .work-card.span-7, .work-card.span-5, .work-card.span-8, .work-card.span-6, .work-card.span-4, .work-card.span-12 { grid-column: span 1; }
  .pillars { grid-template-columns: 1fr; padding: 0 var(--pad) 32px; }
  .upcoming-row { grid-template-columns: 70px 1fr; gap: 6px 14px; padding: 20px 4px; }
  .upcoming-row .ct, .upcoming-row .st { grid-column: 2; text-align: left; }

  .insight-feature { grid-template-columns: 1fr; }
  .insight-feature .img { min-height: 220px; }
  .insight-feature .txt { padding: 28px var(--pad); }
  .insight-grid { grid-template-columns: 1fr; }
  .metric-band { grid-template-columns: 1fr 1fr; }
  .metric { border-bottom: 1px solid var(--hairline); }
  .metric:nth-child(2n) { border-right: 0; }

  .contact-tracks { grid-template-columns: 1fr; }
  .track { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 28px var(--pad); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; padding: 48px var(--pad); }
  .form .row2 { grid-template-columns: 1fr; gap: 16px; }
  .form .submit { width: 100%; justify-content: space-between; }

  .case-close { right: var(--pad); }
  .case-body { grid-template-columns: 1fr; gap: 16px; padding: 40px var(--pad); }
  .case-meta { grid-template-columns: 1fr 1fr; }
  .case-stats { grid-template-columns: 1fr 1fr; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 420px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .case-stats, .metric-band { grid-template-columns: 1fr; }
  .metric, .case-stats .stat { border-right: 0; }
}

/* ============================================================
   v1 additions — photo treatments, case-study page, /start wizard
   (index.html loads only this stylesheet)
   ============================================================ */

/* ---- Work cards with real photos --------------------------- */
.work-img.photo { background: var(--slate-2); }
.work-img.photo .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.work-card:hover .work-img.photo .img { transform: scale(1.05); }
.work-img.photo .ph {
  background: linear-gradient(180deg, rgba(34,59,86,0) 38%, rgba(26,46,68,0.85) 100%);
  color: var(--cream); z-index: 1;
}
.work-img.photo .work-tag { z-index: 2; }

/* ---- Team portraits ---------------------------------------- */
.team-photo.photo { background-size: cover; background-position: center top; }
.team-photo.photo::after { display: none; }

/* ---- Media band (about story / collab banner) -------------- */
.media-band {
  position: relative; height: 440px;
  background-size: cover; background-position: center;
  background-color: var(--slate-2);
}
.media-band.short { height: 320px; }
.media-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,46,68,0.15) 0%, rgba(26,46,68,0.55) 100%);
}
.media-band .media-cap {
  position: absolute; left: var(--pad); bottom: 22px; z-index: 1;
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(237,233,222,0.9);
  text-shadow: 0 1px 12px rgba(26,46,68,0.6);
}

/* ---- Collaboration "how we partner" grid ------------------- */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-step { border-top: 1px solid var(--hairline-dark); padding-top: 16px; }
.how-d { font-size: 14px; line-height: 1.55; opacity: .82; }

/* ---- Insights feature image -------------------------------- */
.insight-feature .img { background-size: cover; background-position: center; position: relative; }
.insight-feature .img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,46,68,0.1) 40%, rgba(26,46,68,0.6) 100%);
}

/* ---- Case-study page --------------------------------------- */
.case-top { padding: calc(var(--nav-h) + 56px) var(--pad) 40px; border-bottom: 1px solid var(--hairline); }
.case-back {
  display: inline-block; margin-bottom: 26px;
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.case-back:hover { color: var(--burgundy); }
.case-back.light { color: rgba(237,233,222,0.7); }
.case-back.light:hover { color: var(--cream); }
.case-top .label { margin-bottom: 14px; }
.case-top h1 {
  font-family: var(--display); font-weight: 600; font-size: clamp(48px, 8vw, 128px);
  line-height: 0.9; letter-spacing: -0.03em; margin-bottom: 36px;
}
.case-top .case-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--hairline);
}
.case-top .case-meta .k { font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.case-top .case-meta .v { font-size: 15px; }
.case-hero-img {
  height: clamp(320px, 56vh, 640px);
  background-size: cover; background-position: center; background-color: var(--slate-2);
}
.case-body {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  padding: 84px var(--pad);
}
.case-body .case-lead {
  font-family: var(--display); font-weight: 500; font-size: clamp(24px, 3vw, 40px);
  line-height: 1.18; letter-spacing: -0.02em; text-wrap: balance;
}
.case-body .case-text p { font-size: 16.5px; line-height: 1.7; opacity: .9; }
.case-body .case-text p + p { margin-top: 16px; }

/* ---- Contact CTA card -------------------------------------- */
.contact-cta-card {
  background: var(--slate); color: var(--cream);
  border-radius: 6px; padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}

/* ============================================================
   START A PROJECT — questionnaire (solid slate background)
   ============================================================ */
.start { background: var(--slate); color: var(--cream); min-height: 100vh; }
.start-inner { max-width: 1040px; margin: 0 auto; padding: calc(var(--nav-h) + 8px) var(--pad) 64px; }
.start-head { display: grid; grid-template-columns: 1fr auto; gap: 24px 40px; align-items: start; padding-bottom: 32px; border-bottom: 1px solid var(--hairline-dark); margin-bottom: 40px; }
.start-head .case-back { grid-column: 1 / -1; margin-bottom: 4px; }
.start-title h1 { text-wrap: balance; }
.start-progress { display: flex; flex-direction: column; gap: 10px; align-self: end; }
.start-progress .sp {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(237,233,222,0.45);
}
.start-progress .sp .d { width: 8px; height: 8px; border-radius: 999px; background: rgba(237,233,222,0.25); }
.start-progress .sp.on { color: var(--cream); }
.start-progress .sp.on .d { background: var(--pink); }
.start-progress .sp.done .d { background: var(--burgundy); }

.start-step { animation: stepIn .4s cubic-bezier(.2,.7,.2,1) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.start-q { font-family: var(--display); font-weight: 600; font-size: clamp(24px, 3vw, 38px); letter-spacing: -0.02em; margin-bottom: 28px; }
.start-q .muted { font-family: var(--body); font-weight: 400; font-size: 15px; letter-spacing: 0; opacity: .55; margin-left: 8px; }

.opt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.opt {
  position: relative; text-align: left;
  border: 1px solid rgba(237,233,222,0.2); border-radius: 6px;
  padding: 24px 22px 22px; min-height: 168px;
  display: flex; flex-direction: column; color: var(--cream);
  transition: border-color .2s, background .2s, transform .2s;
}
.opt:hover { border-color: rgba(237,233,222,0.5); transform: translateY(-3px); }
.opt.on { border-color: var(--pink); background: rgba(210,178,157,0.1); }
.opt .opt-ico { width: 28px; height: 28px; color: var(--pink); margin-bottom: auto; }
.opt .opt-t { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; margin: 18px 0 6px; }
.opt .opt-d { font-size: 13px; line-height: 1.5; opacity: .72; }
.opt .opt-check {
  position: absolute; top: 18px; right: 18px; width: 26px; height: 26px; border-radius: 999px;
  border: 1px solid rgba(237,233,222,0.3); display: flex; align-items: center; justify-content: center;
  font-size: 13px; opacity: 0; transform: scale(.7); transition: opacity .2s, transform .2s; color: var(--slate); background: var(--pink); border-color: var(--pink);
}
.opt.on .opt-check { opacity: 1; transform: scale(1); }

.start-fields { display: flex; flex-direction: column; gap: 24px; max-width: 720px; }
.start-fields .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.start-field label { display: block; font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(237,233,222,0.6); margin-bottom: 8px; }
.start-field input, .start-field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(237,233,222,0.28);
  color: var(--cream); font-size: 17px; padding: 12px 0; outline: none;
}
.start-field input::placeholder, .start-field textarea::placeholder { color: rgba(237,233,222,0.4); }
.start-field input:focus, .start-field textarea:focus { border-bottom-color: var(--pink); }
.start-field textarea { min-height: 130px; resize: none; font-family: inherit; line-height: 1.5; }

.pick-label { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(237,233,222,0.6); margin-bottom: 14px; }
.pick-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pick {
  font-family: var(--label); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 13px 20px; border-radius: 999px; color: var(--cream);
  border: 1px solid rgba(237,233,222,0.28); transition: border-color .2s, background .2s, color .2s;
}
.pick:hover { border-color: rgba(237,233,222,0.6); }
.pick.on { background: var(--pink); color: var(--slate); border-color: var(--pink); }

.start-summary { border-top: 1px solid var(--hairline-dark); padding-top: 18px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: rgba(237,233,222,0.85); }
.start-summary .label { display: block; margin-bottom: 4px; }

.start-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--hairline-dark); }
.start-btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--label); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 18px 30px; border-radius: 999px; background: var(--pink); color: var(--slate);
  transition: background .2s, opacity .2s;
}
.start-btn:hover { background: var(--cream); }
.start-btn .arr { width: 24px; height: 1px; background: currentColor; position: relative; }
.start-btn .arr::after { content: ""; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
.start-btn.ghost { background: transparent; color: var(--cream); border: 1px solid rgba(237,233,222,0.4); }
.start-btn.ghost:hover { background: rgba(237,233,222,0.1); }
.start-btn:disabled { opacity: 0.35; pointer-events: none; }

.start-done { text-align: center; padding: 80px 0; }
.start-done-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn.on-dark-ghost { background: transparent; color: var(--cream); border-color: rgba(237,233,222,0.5); }
.btn.on-dark-ghost:hover { background: var(--cream); color: var(--slate); border-color: var(--cream); }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 1000px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
  .opt-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .media-band { height: 280px; }
  .media-band.short { height: 220px; }
  .how-grid { grid-template-columns: 1fr; }
  .case-top { padding: calc(var(--nav-h) + 36px) var(--pad) 28px; }
  .case-top .case-meta { grid-template-columns: 1fr 1fr; }
  .case-body { grid-template-columns: 1fr; gap: 20px; padding: 48px var(--pad); }
  .contact-cta-card { padding: 32px var(--pad); }
  .start-head { grid-template-columns: 1fr; }
  .start-progress { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
  .opt-grid { grid-template-columns: 1fr; }
  .opt { min-height: 0; }
  .start-fields .row2 { grid-template-columns: 1fr; }
  .start-nav { gap: 12px; }
  .start-btn { padding: 16px 22px; font-size: 12px; }
}

/* ---- Footer credit line ----------------------------------- */
/* Sits under the footer line; text colour matches the footer background so
   it stays present for attribution/SEO without drawing the eye. Base footer
   bg is --slate; the main site overrides both to --navy-2 in styles-main. */
.foot-credit {
  text-align: center; margin-top: 28px; padding: 6px 0 0;
  font-family: var(--label); font-size: 9px; font-weight: 500; letter-spacing: .05em;
  color: var(--slate);
}
.foot-credit a { color: var(--slate); }
.foot-credit .heart { color: var(--slate); }

/* ============================================================
   Floating WhatsApp button (right side, all pages)
   ============================================================ */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: flex; align-items: center; height: 56px; width: 56px;
  /* ink blue with a white glyph — explicit hex so theme token remaps
     (--cream flips to ink on the main site) can't invert it */
  border-radius: 100px; background: #2f5488; color: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22); overflow: hidden;
  transition: width .38s cubic-bezier(.19,1,.22,1), background .25s, transform .25s, box-shadow .25s;
}
.wa-fab .wa-ico { flex: 0 0 auto; margin: 0 15px; }
.wa-fab .wa-label {
  white-space: nowrap; font-family: var(--label); font-size: 13px; font-weight: 600;
  letter-spacing: .02em; opacity: 0; padding-right: 0; transition: opacity .22s, padding .3s;
}
.wa-fab:hover { width: 188px; background: #24406b; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,0.26); }
.wa-fab:hover .wa-label { opacity: 1; padding-right: 22px; }
.wa-fab:focus-visible { outline: 2px solid #2f5488; outline-offset: 3px; }
@media (max-width: 560px) { .wa-fab { right: 16px; bottom: 16px; } }
@media (prefers-reduced-motion: reduce) { .wa-fab { transition: background .2s; } }

/* Footer: secondary heading (e.g. "E-mail us") spaced below its column list */
.foot-col .foot-sub { margin-top: 26px; }
