/* ============================================================
   HELLO MARMOT — DESIGN SYSTEM  (warm / editorial theme)
   Cream canvas, espresso ink, muted colour cards.
   Positioning: Craft + AI (human-finished, not AI-slop).
   ------------------------------------------------------------
   EDIT TOKENS BELOW to re-skin the whole site in one place.
   ============================================================ */

/* ---- 1. TOKENS -------------------------------------------- */
:root {
  /* Canvas + surfaces */
  --bg:        #FFFFFF;   /* pure white page background */
  --surface:   #F1F6FC;   /* very light blue cards */
  --surface-2: #FFFFFF;   /* raised / hover */
  --line:      #E3E9F2;   /* cool hairline borders */
  --line-2:    #C7D4E6;   /* stronger cool borders */

  /* Ink */
  --ink:       #000000;   /* pure black — primary text */
  --ink-dim:   #44506A;   /* slate — secondary */
  --ink-mute:  #8892A6;   /* muted slate — labels / metadata */

  /* Card palette (blue family) */
  --espresso:  #0A2A6B;   /* deep blue — dark blocks */
  --blue:      #2E7FE0;
  --navy:      #10245A;
  --tan:       #DCE8F7;

  /* Accent — brand blue. Red is a secondary touch (see gradients). */
  --accent:      #1793F9;
  --accent-ink:  #FFFFFF;
  --accent-soft: rgba(23, 147, 249, 0.12);
  --accent-red:  #E5301C;

  /* Type — free look-alikes for MEC's Neue Haas Grotesk + IvyPresto.
     Inter ≈ Neue Haas Grotesk (neo-grotesque);
     Playfair Display italic ≈ IvyPresto Text (elegant serif accent). */
  --font-display: "Inter", Arial, sans-serif;
  --font-serif:   "Playfair Display", Georgia, serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "Inter", system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 26px;
  --radius-sm: 16px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- 2. RESET --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
.dotfield { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;   /* clip (not hidden) so position: sticky still works */
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---- 3. LAYOUT -------------------------------------------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 1280px; }
.section { position: relative; padding-block: clamp(48px, 8vw, 110px); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.center { text-align: center; }
.divider { border-top: 1px solid var(--line); }

/* ---- 4. TYPOGRAPHY ---------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.025em;
  text-wrap: balance;   /* even, sensible line breaks — avoids one-word lines */
}
/* Unified header size for all top-level headings (heroes, sections, CTAs).
   Card-internal headers use h3.display / component sizes and stay smaller. */
h1.display { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h2.display { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h3.display { font-size: clamp(1.35rem, 2.4vw, 2rem); }

/* Italic-serif accent words inside a headline */
.serif {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
}
.headline-muted { color: var(--ink-dim); }

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;   /* avoid a lone word on the final line (orphans) */
}
/* Body copy everywhere: never leave a single word stranded on the last line */
p { text-wrap: pretty; }
.center .lead { margin-inline: auto; }

/* Small label */
.label {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.label--accent {
  position: relative;
  display: inline-flex; align-items: center;
  color: var(--ink-dim);
  background: transparent;
  border-radius: 100px; padding: 7px 15px;
}

/* Pill eyebrow tag */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-dim);
  background: transparent;
  border: none;
  border-radius: 100px; padding: 7px 15px;
  position: relative;
}
.eyebrow b { color: #e5301c; font-weight: 700; }
/* gradient stroke ring for eyebrows (default); .pill-fill = solid gradient fill (first pill per page) */
.eyebrow::after, .v-eyebrow::after, .label--accent::after {
  content: ""; position: absolute; inset: 0; border-radius: 100px; padding: 1px;
  background: linear-gradient(135deg, #e5301c 0%, #6a3fd0 50%, #2e7fe0 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.pill-fill { color: #fff !important; background: linear-gradient(135deg, #e5301c 0%, #6a3fd0 50%, #2e7fe0 100%) !important; }
.pill-fill::after { content: none !important; }
.pill-fill b { color: #fff !important; }
.pill-fill.v-eyebrow::before { background: #fff !important; }

/* ---- 5. BUTTONS ------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* Primary: espresso pill */
.btn--accent { background: #0A5BD6; color: #fff; }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -14px rgba(10,91,214,0.55); }

/* Terracotta pill (optional highlight) */
.btn--brand { background: var(--accent); color: var(--accent-ink); }
.btn--brand:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px var(--accent); }

/* Light pill (for use on dark/colour cards) */
.btn--light { background: var(--surface-2); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); }

/* Ghost / outline on cream */
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---- 6. HEADER / NAV -------------------------------------- */
.ticker {
  background: var(--ink); color: var(--surface-2);
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.01em;
  text-align: center; padding: 9px 16px;
}
.ticker b { font-weight: 700; }
.ticker .tick { color: var(--accent); }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 96px; gap: 20px; max-width: none; padding-inline: clamp(22px, 3.5vw, 44px); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__logo { height: 82px; width: auto; display: block; }
.footer .brand__logo { height: 82px; }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 0.72rem; line-height: 0.98; text-transform: uppercase; letter-spacing: 0.01em; }
.brand__word sup { color: var(--accent); font-size: 0.7em; }
.nav__links { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav__links a { font-size: 1rem; font-weight: 500; color: var(--ink-dim); transition: color .2s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__right { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.nav__right .btn { padding: 9px 18px; }
.badge-hiring { background: var(--accent-soft); color: var(--accent); font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 7px; border-radius: 6px; margin-left: 6px; }
.nav__burger { display: none; }

/* ---- 7. HERO (centered) ----------------------------------- */
.hero { text-align: center; padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(36px, 5vw, 64px); position: relative; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { margin: 0 auto 24px; max-width: 20ch; }
.hero .lead { margin: 0 auto; max-width: 62ch; }
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* Left-aligned hero variant (product pages) */
.hero--left { text-align: left; }
.hero--left h1 { margin-inline: 0; max-width: 24ch; }
.hero--left .lead { margin-inline: 0; }
.hero--left .hero__cta { justify-content: flex-start; }
.hero--left .eyebrow { }

/* Intro headings inherit the unified header size set on h1/h2.display. */

/* Split hero — text left, media right (Build page) */
.hero--tall { padding-top: clamp(72px, 9vw, 150px); padding-bottom: clamp(72px, 9vw, 150px); }
.hero-split { display: grid; grid-template-columns: minmax(0, 340px) 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; text-align: left; }
.hero-split h1 { margin: 0; max-width: 16ch; }
.hero-split .lead { margin: 20px 0 0; max-width: 42ch; }
.hero-split .hero__cta { justify-content: flex-start; margin-top: 30px; }
.hero-split .laptop { margin: 0; width: 100%; max-width: 1120px; justify-self: end; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split h1 { margin-inline: auto; }
  .hero-split .lead { margin: 20px auto 0; }
  .hero-split .hero__cta { justify-content: center; }
  .hero-split .laptop { justify-self: center; margin: 30px auto 0; max-width: 620px; }
}

/* ---- 8. FEATURE CARDS (products) -------------------------- */
.features { display: flex; flex-direction: column; gap: 16px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fcard {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 42px);
  background: var(--surface);
  color: var(--ink);
  min-height: 300px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease);
}
.fcard:hover { transform: translateY(-4px); }
.fcard--wide { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; min-height: 360px; }

/* colour variants */
.fcard--blue     { background: var(--blue);     color: #fff; }
.fcard--navy     { background: var(--navy);     color: #fff; }
.fcard--espresso { background: var(--espresso); color: #EAF2FE; }
.fcard--tan      { background: var(--tan);      color: var(--ink); }

.fcard__badge { position: absolute; top: 22px; right: 24px; background: var(--ink); color: var(--surface-2); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 11px; border-radius: 100px; }
.fcard--espresso .fcard__badge, .fcard--blue .fcard__badge, .fcard--navy .fcard__badge { background: rgba(255,255,255,0.16); color: #fff; }

.fcard__body { display: flex; flex-direction: column; height: 100%; }
.fcard__num { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; }
.fcard h3 { margin: 14px 0 12px; }
.fcard__desc { font-size: 1rem; opacity: 0.86; max-width: 42ch; line-height: 1.5; }
.fcard__tiers { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.pill { font-size: 0.72rem; font-weight: 500; padding: 5px 12px; border-radius: 100px; border: 1px solid currentColor; opacity: 0.75; }
.fcard__foot { margin-top: auto; padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.fcard__price { font-size: 0.95rem; font-weight: 600; }
.fcard__price b { color: inherit; }

/* media area inside a feature card */
.fmedia {
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  aspect-ratio: 16 / 11;
  display: grid; place-items: center;
  overflow: hidden;
  min-height: 200px;
}
.fcard--tan .fmedia { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.08); }
.fmedia__label { text-align: center; opacity: 0.75; padding: 16px; }
.fmedia__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; display: block; margin-bottom: 6px; }

/* ---- 9. CLIENT PROOF (avatar cluster) --------------------- */
.clients { text-align: center; }
.avatars { display: inline-flex; margin-bottom: 14px; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--tan); border: 2px solid var(--bg);
  margin-left: -10px; background-size: cover;
}
.avatars span:first-child { margin-left: 0; }
.clients p { font-size: 0.95rem; color: var(--ink-dim); }

/* ---- 10. SECTION HEADING (centered) ----------------------- */
.headblock { text-align: center; max-width: 900px; margin: 0 auto clamp(30px, 4vw, 44px); }
.headblock h2 { margin-bottom: 26px; }
.headblock .lead { max-width: 62ch; margin-inline: auto; }
.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(30px, 4vw, 52px); }

/* ---- 11. TESTIMONIAL WALL (tiled 5 + 4) ------------------- */
.wall { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.tcard {
  flex: 0 0 calc((100% - 64px) / 5);   /* 5 per row; extra rows centre */
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 24px;
}
.tcard p { font-size: 1rem; line-height: 1.5; color: var(--ink); }
.tcard__by { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; }
.tcard__av { width: 40px; height: 40px; border-radius: 50%; background: var(--tan); border: 1px solid var(--line-2); flex: none; }
.tcard__by b { display: block; font-size: 0.92rem; }
.tcard__by span { font-size: 0.8rem; color: var(--ink-mute); }
@media (max-width: 1100px) { .tcard { flex-basis: calc((100% - 32px) / 3); } }
@media (max-width: 720px)  { .tcard { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 480px)  { .tcard { flex-basis: 100%; } }

/* ---- 12. STAT ROW ----------------------------------------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--ink); line-height: 1; }
.stat span { font-size: 0.82rem; color: var(--ink-mute); display: block; margin-top: 10px; }

/* ---- 13. WORK GRID (placeholder slots) -------------------- */
.work { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 86%; margin-inline: auto; }
.slot {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 5; display: grid; place-items: center;
  transition: border-color .3s, transform .3s;
}
.slot:hover { border-color: var(--line-2); transform: translateY(-3px); }
.slot--wide { grid-column: span 4; aspect-ratio: auto; }
.slot--tall { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.slot--sq   { grid-column: span 2; aspect-ratio: 1 / 1; }
.slot--half { grid-column: span 2; aspect-ratio: 16 / 9; }
.slot > img, .slot > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* Site Hero shows the whole 16:9 frame (never cropped) — its natural height defines the tile */
.slot--wide > img, .slot--wide > video { position: static; inset: auto; width: 100%; height: auto; object-fit: contain; }
.slot__label { text-align: center; padding: 16px; color: var(--ink-mute); }
.slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: block; margin-bottom: 6px; color: var(--line-2); }
.slot__label .label { display: block; }

/* ---- 14. PROCESS ------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 30px; min-height: 220px; display: flex; flex-direction: column; }
.step__n { font-size: 0.76rem; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; }
.step h3 { margin: 16px 0 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.step p { color: var(--ink-dim); font-size: 0.94rem; margin-top: auto; }

/* ---- 15. PRICING / TIERS (light <-> dark states, invert on hover) ---- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }

.tier {
  /* scheme variables — default = LIGHT */
  --c-text: var(--ink);
  --c-sub: var(--ink-dim);
  --c-mute: var(--ink-mute);
  --c-bullet: #1793F9;
  --c-turn: #0E7CEC;
  --c-line: var(--line);
  --c-media: #E9F0F8;
  --c-btn-bg: #0A5BD6; --c-btn-fg: #FFFFFF; --c-btn-bd: transparent;
  --dark-op: 0;

  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); color: var(--c-text);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 30px 28px;
  transition: transform .3s var(--ease), border-color .35s var(--ease), box-shadow .3s var(--ease), color .35s var(--ease);
}
/* deep-blue gradient overlay — fades in for the DARK state */
.tier::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(160deg, #1D6FD6 0%, #0A3F96 100%); opacity: var(--dark-op); transition: opacity .35s var(--ease); }
.tier > * { position: relative; z-index: 1; }
.tiers .tier:hover { transform: translateY(-8px) scale(1.04); box-shadow: 0 30px 60px -24px rgba(10,40,120,0.45); z-index: 2; }

/* DARK state — every card starts LIGHT and flips to dark only on hover */
.tier:hover {
  --c-text: #EAF2FE;
  --c-sub: rgba(234,242,254,0.86);
  --c-mute: rgba(234,242,254,0.62);
  --c-bullet: #A9CCFF;
  --c-turn: #FFFFFF;
  --c-line: rgba(255,255,255,0.20);
  --c-media: #0A3A86;
  --c-btn-bg: #FFFFFF; --c-btn-fg: #0A57D6; --c-btn-bd: transparent;
  --dark-op: 1;
  border-color: transparent;
}

.tier__media { position: relative; margin: -30px -28px 22px; aspect-ratio: 16 / 11.5; background: var(--c-media); overflow: hidden; display: grid; place-items: center; border-bottom: 1px solid var(--c-line); transition: background .35s var(--ease), border-color .35s var(--ease); }
.tier__media img, .tier__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.tier__media img[src$="bridger-watch.jpg"] { object-fit: contain; }
/* Auto-scrolling full-page screenshot (top -> bottom -> back) */
.tier__media img.tshot { position: absolute; top: 0; left: 0; width: 100%; height: auto; object-fit: fill; animation: tshotScroll 24s ease-in-out infinite alternate; }
@keyframes tshotScroll { from { transform: translateY(0); } to { transform: translateY(-87.8%); } }
@media (prefers-reduced-motion: reduce) { .tier__media img.tshot { animation: none; } }
/* Brand Kit crossfade slideshow */
.kitshow { position: absolute; inset: 0; }
.kitshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: kitfade 20s infinite; }
.kitshow img:nth-child(1) { animation-delay: 0s; }
.kitshow img:nth-child(2) { animation-delay: -4s; }
.kitshow img:nth-child(3) { animation-delay: -8s; }
.kitshow img:nth-child(4) { animation-delay: -12s; }
.kitshow img:nth-child(5) { animation-delay: -16s; }
@keyframes kitfade { 0% { opacity: 0; } 4% { opacity: 1; } 20% { opacity: 1; } 24% { opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .kitshow img { animation: none; } .kitshow img:nth-child(1) { opacity: 1; } }

.tier__head { display: flex; align-items: center; justify-content: flex-start; gap: 14px; }
.tier__icon { width: 52px; height: 52px; flex: none; border-radius: 12px; overflow: hidden; }
.tier__icon svg { width: 100%; height: 100%; display: block; }
.tier__icon img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); }
.tier__name { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; line-height: 1.08; color: var(--c-text); }

.tier__stats { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--c-line); transition: border-color .35s var(--ease); }
.tier__price { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 1.85rem; color: var(--c-text); }
.tier__price small { font-size: 0.78rem; color: var(--c-mute); font-weight: 500; }
.tier__turn { text-align: left; white-space: nowrap; }
.tier__turn b { display: inline; font-family: var(--font-display); font-weight: 800; font-size: 1rem; line-height: 1; color: var(--c-turn); }
.tier__turn span { display: inline; margin-left: 6px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-mute); }

.tier__note { font-size: 0.82rem; color: var(--c-mute); margin-top: 14px; }
.tier__select { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; }
.tier__select > span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-mute); font-weight: 600; }
.tier__select select { appearance: none; -webkit-appearance: none; width: 100%; padding: 12px 40px 12px 14px; border-radius: 12px; border: 1px solid var(--c-line); background: var(--c-media); color: var(--c-text); font: inherit; font-size: 0.92rem; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238892A6' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; transition: border-color .3s var(--ease), background .35s var(--ease); }
.tier__select select:focus { outline: none; border-color: var(--accent); }
.tier__addons { margin: 4px 0 20px; padding-top: 16px; border-top: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 10px; }
.tier__addons-h { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-mute); font-weight: 600; }
.tier__addon { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 0.92rem; }
.tier__addon b { color: var(--c-text); font-weight: 600; }
.tier__addon span { color: var(--c-sub); font-weight: 600; white-space: nowrap; }
.tier__list { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.tier__list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--c-sub); line-height: 1.4; }
.tier__list li::before { content: "+"; color: var(--c-bullet); font-weight: 700; flex: none; }

.tier .btn { margin-top: auto; justify-content: center; background: var(--c-btn-bg); color: var(--c-btn-fg); border: 1px solid var(--c-btn-bd);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease), box-shadow .28s var(--ease); }
.tier .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(6,40,110,0.5); }
.tier__name, .tier__price, .tier__price small, .tier__turn b, .tier__turn span, .tier__note, .tier__list li, .tier__list li::before { transition: color .35s var(--ease); }

/* ---- 16. PAIN / FIT --------------------------------------- */
.pain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain__item { border-top: 2px solid var(--accent); padding-top: 20px; }
.pain__item h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
.pain__item p { color: var(--ink-dim); font-size: 0.95rem; }
/* staggered reveal for the three pain cards */
.pain__item.reveal:nth-child(2) { transition-delay: 0.22s; }
.pain__item.reveal:nth-child(3) { transition-delay: 0.44s; }

/* behind the wheel — tools vs. the human */
.behind__head { max-width: none; margin: 0 auto; text-align: center; }
.behind__head .display { margin-top: 12px; }
.behind__intro { max-width: 75%; margin: clamp(22px, 3vw, 38px) auto 0; text-align: center; }
.behind__intro .lead { max-width: none; margin: 0 auto 16px; text-align: center; }
.behind__intro .lead:last-child { margin-bottom: 0; }
.behind__intro em { font-family: var(--font-serif); font-style: italic; }
.behind__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 38px); margin-top: clamp(40px, 5vw, 68px); }
.behind__sub { margin-top: 14px; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.6rem); color: var(--ink-dim); }
.behind__item { display: flex; flex-direction: column; }
.behind__media { aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 18px; }
.behind__media img, .behind__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.behind__media .slot__label { text-align: center; color: var(--ink-mute); }
.behind__media .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: block; color: var(--line-2); }
.behind__k { font-family: var(--font-display); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--accent); }
.behind__item h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; margin: 8px 0 9px; letter-spacing: -0.01em; }
.behind__item p { color: var(--ink-dim); font-size: 0.95rem; line-height: 1.5; }
.behind__close { max-width: 62ch; margin: clamp(36px, 5vw, 60px) auto 0; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.4; letter-spacing: -0.01em; }
@media (max-width: 860px) { .behind__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .behind__grid { grid-template-columns: 1fr; } }

/* content treadmill — image left, copy right */
.treadmill { display: grid; grid-template-columns: minmax(0, 1.7fr) 1fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
.treadmill__img { border-radius: 22px; overflow: hidden; background: #f2f1ee; }
.treadmill__img img { width: 100%; height: auto; display: block; }
.treadmill__copy .head { text-align: left; margin: 0 0 clamp(22px, 3vw, 34px); max-width: none; }
.treadmill__copy .pain.pain--stack { display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 860px) { .treadmill { grid-template-columns: 1fr; } }

.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit__col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 30px; }
.fit__col h3 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; color: var(--ink); }
.fit__col ul { display: flex; flex-direction: column; gap: 13px; }
.fit__col li { display: flex; gap: 11px; color: var(--ink-dim); font-size: 0.95rem; }
.fit__col li::before { flex: none; font-weight: 700; }
.fit__col--yes li::before { content: "✓"; color: var(--accent); }
.fit__col--no li::before { content: "✕"; color: var(--ink-mute); }

/* split (positioning) */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }

/* ---- 17. BIG CTA ------------------------------------------ */
.cta { position: relative; overflow: hidden; border-radius: var(--radius); color: #fff; padding: clamp(40px, 6vw, 80px); text-align: center;
  background:
    radial-gradient(55% 120% at 100% 12%, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(80% 120% at 0% 8%, #ff5a1f 0%, rgba(255,90,31,0) 58%),
    radial-gradient(85% 120% at 4% 96%, #e5301c 0%, rgba(229,48,28,0) 55%),
    radial-gradient(95% 130% at 96% 96%, #1f6fe0 0%, rgba(31,111,224,0) 60%),
    linear-gradient(100deg, #e5301c 0%, #6a3fd0 48%, #2e7fe0 100%); }
.cta::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.13; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 18px; color: #fff; }
.cta .lead { color: rgba(255,255,255,0.9); }
.cta .hero__cta { justify-content: center; margin-top: 30px; }
.cta .btn--brand { background: #fff; color: #0A57D6; }
.cta .btn--light { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.55); }
.cta .btn--light:hover { background: rgba(255,255,255,0.22); }

/* ---- BRAND hero grid (2-col 16:9, expandable) ------------- */
.brandgrid-clip { position: relative; overflow: hidden; margin-top: clamp(28px, 4vw, 48px); transition: max-height .5s var(--ease); }
.brandgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px) 16px; align-items: start; }
.bgitem { display: flex; flex-direction: column; gap: 14px; }
.bgcap { display: flex; flex-direction: column; gap: 5px; text-decoration: none; color: inherit; }
.bgcap__name { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.bgcap__meta { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-mute); font-weight: 600; }
.bgcap__desc { font-size: 0.9rem; line-height: 1.5; color: var(--ink-dim); margin-top: 2px; }
.bgcap:hover .bgcap__name { color: var(--accent); }
/* Work grid — 70vw, 2 columns */
.brandgrid-wide { width: 70vw; margin-left: calc(50% - 35vw); margin-top: clamp(28px, 4vw, 48px); }
@media (max-width: 720px) {
  .brandgrid-wide { width: 88vw; margin-left: calc(50% - 44vw); }
}
.brandgrid-note { text-align: center; margin-top: clamp(20px, 2.5vw, 32px); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); }
.bgcard { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; text-decoration: none; color: inherit; transition: border-color .3s, transform .3s var(--ease); }
.bgcard:hover { border-color: var(--line-2); transform: translateY(-3px); }
.bgcard img, .bgcard video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.brandgrid-clip:not(.is-open)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -48px; height: 130px; background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none; }
.brandgrid__more { display: flex; justify-content: center; margin-top: 22px; }
.brandgrid__more .arrow { transition: transform .3s var(--ease); }
@media (max-width: 620px) { .brandgrid { grid-template-columns: 1fr; } }

/* ---- PROJECT PAGE ----------------------------------------- */
.proj-hero { padding-top: clamp(30px, 5vw, 60px); }
.proj-back { display: inline-block; font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 22px; text-decoration: none; }
.proj-tagline { margin-top: 12px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); font-weight: 600; }
.proj-back:hover { color: var(--ink); }
.proj-meta { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.proj-meta > div { display: flex; flex-direction: column; gap: 5px; }
.proj-meta span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-mute); }
.proj-meta b { font-size: 0.98rem; color: var(--ink); font-weight: 600; }
.proj-media { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; }
.proj-media img, .proj-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-media--45 { aspect-ratio: 4 / 5; }
.proj-media--full { border-radius: 0; border-left: none; border-right: none; margin-bottom: clamp(16px, 2.5vw, 28px); }
.proj-media--wide { margin: 0; }
.proj-stack { display: flex; flex-direction: column; gap: clamp(16px, 2.5vw, 28px); }
.proj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* mixed rows: 4:5 + 16:9 sized to equal heights */
.proj-row--mix { grid-template-columns: 4fr 9fr; }
.proj-row--mixr { grid-template-columns: 9fr 4fr; }
@media (max-width: 620px) { .proj-grid, .proj-row--mix, .proj-row--mixr { grid-template-columns: 1fr; } }

/* More projects */
.mproj__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: clamp(22px, 3vw, 34px); }
.mproj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mproj { text-decoration: none; color: inherit; }
.mproj__img { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; transition: border-color .3s, transform .3s var(--ease); }
.mproj:hover .mproj__img { border-color: var(--line-2); transform: translateY(-3px); }
.mproj__img img, .mproj__img video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mproj__meta { display: flex; flex-direction: column; gap: 2px; margin-top: 12px; }
.mproj__meta b { font-size: 1rem; font-weight: 600; color: var(--ink); }
.mproj__meta span { font-size: 0.8rem; color: var(--ink-mute); }
@media (max-width: 720px) { .mproj-grid { grid-template-columns: 1fr; } }

/* ---- PARTNERS logo scroller ------------------------------- */
.partners { text-align: center; }
.logoscroll { overflow: hidden; margin-top: clamp(30px, 4.5vw, 56px); position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logoscroll__track { display: flex; align-items: center; gap: clamp(44px, 6vw, 96px); width: max-content; animation: logoslide 42s linear infinite; }
.logoscroll:hover .logoscroll__track { animation-play-state: paused; }
@keyframes logoslide { to { transform: translateX(-50%); } }
.lpl { display: inline-flex; align-items: center; gap: 11px; white-space: nowrap; color: var(--ink-mute);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -0.01em;
  opacity: 0.5; transition: opacity .25s var(--ease), color .25s var(--ease); }
.lpl svg { width: clamp(22px, 2.4vw, 28px); height: clamp(22px, 2.4vw, 28px); flex: none; }
.lpl:hover { opacity: 0.9; color: var(--ink-dim); }
.logoscroll img { height: clamp(51px, 5.1vw, 69px); width: auto; max-width: 320px; object-fit: contain; opacity: 1; display: block; }
/* per-logo size tweaks (some marks read small at the base height) */
.logoscroll img[src*="unilever"],
.logoscroll img[src*="tide"],
.logoscroll img[src*="jumpsuit"] { height: clamp(102px, 10.2vw, 138px); }
.logoscroll img[src*="blank"] { height: clamp(153px, 15.3vw, 207px); max-width: 480px; }
.logoscroll img[src*="paulas-choice"] { height: clamp(204px, 20.4vw, 276px); max-width: 420px; }
@media (prefers-reduced-motion: reduce) { .logoscroll__track { animation: none; } }

/* ---- 18. FOOTER ------------------------------------------- */
.footer { background: #000000; color: #D6E2F5; border-top: 1px solid rgba(255,255,255,0.08); padding-block: 54px; }
.footer .brand__logo { filter: none; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.footer__cols { display: flex; gap: clamp(30px, 6vw, 90px); flex-wrap: wrap; }
.footer__col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 15px; }
.footer__col a { display: block; color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 9px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bar .label { color: rgba(255,255,255,0.5); }

/* ---- 19. REVEAL ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ---- 20. RESPONSIVE --------------------------------------- */
@media (max-width: 1000px) {
  .wall { column-count: 2; }
  .products, .steps, .tiers, .pain { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .split, .fit, .fgrid { grid-template-columns: 1fr; }
  .fcard--wide { grid-template-columns: 1fr; }
  .work { grid-template-columns: repeat(4, 1fr); }
  .slot--wide, .slot--half { grid-column: span 4; }
  .slot--tall { grid-column: span 2; grid-row: auto; aspect-ratio: 9 / 16; }
  .slot--sq { grid-column: span 2; }
}
@media (max-width: 680px) {
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__right .btn { display: none; }
  .nav__burger { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 10px; }
  .nav.open .nav__links { display: flex; position: absolute; top: 96px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(255,255,255,0.9); -webkit-backdrop-filter: blur(22px) saturate(1.8); backdrop-filter: blur(22px) saturate(1.8); border-bottom: 1px solid rgba(255,255,255,0.7); padding: 8px var(--gutter) 18px; box-shadow: 0 20px 40px -24px rgba(40,30,25,0.3); }
  .nav.open .nav__links a { padding: 13px 0; border-bottom: 1px solid var(--line); width: 100%; text-align: center; }
  .wall { column-count: 1; }
  .work { grid-template-columns: repeat(2, 1fr); }
  .slot--wide, .slot--half, .slot--tall, .slot--sq { grid-column: span 2; }
}

/* ---- 21. OFFSET GALLERY (content hero) -------------------- */
.gallery-section { overflow: hidden; }   /* clips parallax drift */
.wrap-bleed { width: 100%; padding-inline: 14px; }   /* full-bleed gallery */
.gallery { display: flex; gap: 14px; align-items: flex-start; position: relative; }
.gcol { flex: 1; display: flex; flex-direction: column; gap: 14px; min-width: 0; will-change: transform; }
.gcol:nth-child(2) { margin-top: 52px; }
.gcol:nth-child(3) { margin-top: 18px; }
.gcol:nth-child(4) { margin-top: 68px; }
.gcol:nth-child(5) { margin-top: 30px; }
.gcol:nth-child(6) { margin-top: 60px; }
.g {
  position: relative; overflow: hidden;
  border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line);
  aspect-ratio: 4 / 5; display: grid; place-items: center;
}
.g img, .g video { width: 100%; height: 100%; object-fit: cover; display: block; }
.g .slot__label { color: var(--ink-mute); text-align: center; padding: 10px; }
.g .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; display: block; color: var(--line-2); }
@media (max-width: 900px) {
  .gcol { margin-top: 0 !important; }
  .gcol:nth-child(5), .gcol:nth-child(6) { display: none; }
}
@media (max-width: 560px) {
  .gcol:nth-child(4) { display: none; }
}

/* ---- 22. CAROUSEL (brand hero) — full-bleed, one big centre + side peeks ---- */
.carousel { margin-top: 40px; position: relative; }
.carousel--full { width: 100vw; margin-left: calc(50% - 50vw); }  /* break out full width */
.carousel__track {
  display: flex; align-items: center; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scroll-padding-inline: 50%;
  padding: 8px 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.cslide {                               /* tall 4:5 tile — big centre, neighbours peek at the edges */
  flex: 0 0 calc(min(78vh, 820px) * 0.8);
  height: min(78vh, 820px);
  scroll-snap-align: center;
  position: relative; z-index: 1;
}
.cslide__inner {
  width: 100%; height: 100%;
  border-radius: 14px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -22px rgba(0,0,0,0.4);
  transition: box-shadow .35s var(--ease);
}
.cslide.is-active .cslide__inner { box-shadow: 0 20px 46px -24px rgba(0,0,0,0.5); }
.cslide__inner img { width: 100%; height: 100%; object-fit: cover; }
.cslide .slot__label { color: var(--ink-mute); text-align: center; }
.cslide .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; display: block; color: var(--line-2); }
/* arrows overlaid on the far left / right, vertically centred */
.carousel__btns { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 clamp(14px, 3vw, 44px); pointer-events: none; z-index: 10; }
.cbtn {
  pointer-events: auto;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--line-2); background: rgba(246,241,233,0.82); backdrop-filter: blur(6px);
  display: grid; place-items: center; font-size: 1.25rem;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.cbtn:hover { background: var(--ink); color: var(--surface-2); border-color: var(--ink); transform: scale(1.05); }

/* ---- 23. LAPTOP MOCKUP (build hero) ----------------------- */
.laptop { width: min(780px, 100%); margin: 46px auto 0; }
.laptop__lid {
  position: relative;
  background: #101010;
  border: 2px solid #2b2b2b;
  border-radius: 22px 22px 6px 6px;
  padding: 12px;
  box-shadow: 0 40px 70px -34px rgba(0,0,0,0.55);
}
.laptop__cam { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: #2f2f2f; }
.laptop__screen {
  aspect-ratio: 16 / 10; border-radius: 7px; overflow: hidden;
  background: var(--surface-2); display: grid; place-items: center;
}
.laptop__screen img, .laptop__screen video { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.laptop__screen .slot__label { color: var(--ink-mute); text-align: center; padding: 16px; }
.laptop__screen .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; display: block; color: var(--line-2); margin-bottom: 6px; }
.laptop__base {
  position: relative; height: 16px; width: 116%; margin-left: -8%;
  background: linear-gradient(#eaeaea, #c4c4c4 55%, #9c9c9c);
  border-radius: 0 0 16px 16px;
}
.laptop__notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 130px; height: 8px; background: #a9a9a9; border-radius: 0 0 9px 9px; }

/* ---- 24. TILED WALL (brand — marks & worlds) -------------- */
.wallgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(118px, 14vw, 200px);
  grid-auto-flow: dense;
  gap: 12px;
}
.tile {
  position: relative; overflow: hidden;
  border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: transform .3s var(--ease);
}
.tile:hover { transform: translateY(-3px); }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile--w2  { grid-column: span 2; }
.tile--h2  { grid-row: span 2; }
.tile--big { grid-column: span 2; grid-row: span 2; }
.tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0) 42%); pointer-events: none; }
.tile__meta { position: absolute; inset: auto 0 0 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding: 14px 16px; }
.tile__name { color: #fff; font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
.tile__view { color: #fff; font-size: 0.85rem; font-weight: 500; opacity: 0; transform: translateX(-4px); transition: opacity .2s, transform .2s; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
.tile:hover .tile__view { opacity: 1; transform: none; }
.tile .slot__label { color: var(--ink-mute); }
.tile .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: block; color: var(--line-2); }
@media (max-width: 760px) {
  .wallgrid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; }
  .tile--big { grid-column: span 2; grid-row: span 2; }
  .tile--w2 { grid-column: span 2; }
  .tile--h2 { grid-row: span 2; }
}

/* Full-bleed, one-screen-tall bento wall (exact 6×4 tessellation) */
.wallfull {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  height: min(90vh, 940px);
}
.wallfull .ta { grid-area: 1 / 1 / 3 / 3; }
.wallfull .tb { grid-area: 1 / 3 / 2 / 4; }
.wallfull .tc { grid-area: 1 / 4 / 3 / 6; }
.wallfull .td { grid-area: 1 / 6 / 2 / 7; }
.wallfull .te { grid-area: 2 / 3 / 4 / 4; }
.wallfull .tf { grid-area: 2 / 6 / 3 / 7; }
.wallfull .tg { grid-area: 3 / 1 / 5 / 2; }
.wallfull .th { grid-area: 3 / 2 / 5 / 3; }
.wallfull .ti { grid-area: 3 / 4 / 5 / 5; }
.wallfull .tj { grid-area: 3 / 5 / 4 / 7; }
.wallfull .tk { grid-area: 4 / 3 / 5 / 4; }
.wallfull .tl { grid-area: 4 / 5 / 5 / 7; }
@media (max-width: 760px) {
  .wallfull { height: auto; grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 42vw; }
  .wallfull .tile { grid-area: auto; }
}

/* Dynamic content mosaic (Stills to reels) — asymmetric 6×4 tessellation */
.wallcontent {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, clamp(106px, 12vw, 172px));
}
.wallcontent .ca { grid-area: 1 / 1 / 2 / 3; }
.wallcontent .cb { grid-area: 1 / 3 / 3 / 5; }
.wallcontent .cc { grid-area: 1 / 5 / 3 / 6; }
.wallcontent .cd { grid-area: 1 / 6 / 3 / 7; }
.wallcontent .ce { grid-area: 2 / 1 / 4 / 3; }
.wallcontent .cf { grid-area: 3 / 3 / 5 / 4; }
.wallcontent .cg { grid-area: 3 / 4 / 5 / 6; }
.wallcontent .ch { grid-area: 3 / 6 / 5 / 7; }
.wallcontent .ci { grid-area: 4 / 1 / 5 / 3; }
@media (max-width: 760px) {
  .wallcontent { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 44vw; }
  .wallcontent .tile { grid-area: auto; }
}

/* Ratio masonry wall — each tile keeps a fixed aspect ratio */
.ratiowall { column-count: 4; column-gap: 12px; }
.ratiowall .tile { break-inside: avoid; width: 100%; margin-bottom: 12px; }
.tile--r45  { aspect-ratio: 4 / 5; }
.tile--r11  { aspect-ratio: 1 / 1; }
.tile--r916 { aspect-ratio: 9 / 16; }
.tile--r169 { aspect-ratio: 16 / 9; }
@media (max-width: 1000px) { .ratiowall { column-count: 3; } }
@media (max-width: 680px)  { .ratiowall { column-count: 2; } }

/* Modern bento box — tessellating grid, straight edges, rounded tiles */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(140px, 17vw, 250px); gap: 12px; }
.bento .tile { border-radius: 18px; }
.bento .ba { grid-area: 1 / 1 / 3 / 3; }   /* big square */
.bento .bb { grid-area: 1 / 3 / 2 / 5; }   /* wide */
.bento .bc { grid-area: 2 / 3 / 3 / 4; }   /* small */
.bento .bd { grid-area: 2 / 4 / 3 / 5; }   /* small */
.bento .be { grid-area: 3 / 1 / 4 / 3; }   /* wide */
.bento .bf { grid-area: 3 / 3 / 5 / 5; }   /* big square */
.bento .bg { grid-area: 4 / 1 / 5 / 2; }   /* small */
.bento .bh { grid-area: 4 / 2 / 5 / 3; }   /* small */
@media (max-width: 760px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .bento .tile { grid-area: auto; }
}

/* ---- 25. REEL GRID (content — stills to reels) ------------ */
.reelgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reeltile {
  position: relative; overflow: hidden;
  border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  display: grid; place-items: center;
  transition: transform .3s var(--ease);
}
.reeltile:hover { transform: translateY(-4px); }
.reeltile img { width: 100%; height: 100%; object-fit: cover; }
.reeltile .slot__label { color: var(--ink-mute); text-align: center; }
.reeltile .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; display: block; color: var(--line-2); }
.reelplay {
  position: absolute; right: 12px; bottom: 12px;
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.reelplay svg { width: 13px; height: 13px; fill: #111; margin-left: 1px; }
@media (max-width: 820px) { .reelgrid { grid-template-columns: repeat(2, 1fr); } }

/* Image at the top of a fit card */
.fit__media { border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 26px; }
.fit__media img { width: 100%; height: 100%; object-fit: cover; }
.fit__media .slot__label { color: var(--ink-mute); text-align: center; }
.fit__media .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: block; color: var(--line-2); }

/* ---- 26. FULL-BLEED IMAGE BAND (content — the finish) ----- */
.finish-bleed { position: relative; overflow: hidden; display: grid; align-items: center; min-height: min(82vh, 780px); }
.finish-bleed__img { position: absolute; inset: 0; z-index: 0; background: var(--surface-2); display: grid; place-items: center; }
.finish-bleed__img img { width: 100%; height: 100%; object-fit: cover; }
.finish-bleed__img .slot__label { color: var(--ink-mute); text-align: center; }
.finish-bleed__img .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; display: block; color: var(--line-2); }
.finish-bleed__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(14,11,9,0.74), rgba(14,11,9,0.4) 52%, rgba(14,11,9,0.05)); }
.finish-bleed > .wrap { position: relative; z-index: 2; width: 100%; padding-block: clamp(56px, 8vw, 110px); }
.finish-bleed__text { max-width: 620px; color: #fff; }
.finish-bleed__text h2 { color: #fff; }
.finish-bleed__text .lead { color: rgba(255,255,255,0.9); }
.finish-bleed__text .label { color: rgba(255,255,255,0.82); }
.finish-bleed__text .label--accent { color: var(--accent); }
@media (max-width: 820px) {
  .finish-bleed { min-height: 0; }
  .finish-bleed__scrim { background: linear-gradient(180deg, rgba(14,11,9,0.35), rgba(14,11,9,0.78)); }
}


/* ---- 28. THREE WAYS (homepage offerings) — tall, image-led -- */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.way {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden;
  min-height: min(86vh, 900px);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.way:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 34px 66px -40px rgba(0,0,0,0.28); }
/* large 4:5 image with the title overlaid at the top */
.way__media { position: relative; aspect-ratio: 4 / 5; background: var(--surface-2); overflow: hidden; flex: none; }
.way__media img { width: 100%; height: 100%; object-fit: cover; }
.way__media .slot__label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: var(--ink-mute); }
.way__media .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; display: block; color: var(--line-2); }
.way__title { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.way__num { display: block; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-mute); margin-bottom: 8px; }
.way__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 2.3vw, 2.3rem); color: var(--ink); line-height: 1; }
.way__tag { display: inline-flex; align-items: center; gap: 7px; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-dim); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 6px 12px; border-radius: 100px; flex: none; }
.way__dot { width: 9px; height: 9px; border-radius: 50%; }
.way--brand .way__dot { background: var(--blue); }
.way--content .way__dot { background: var(--accent); }
.way--build .way__dot { background: var(--navy); }
/* details below the image */
.way__body { display: flex; flex-direction: column; flex: 1; padding: clamp(24px, 2.2vw, 34px); }
.way__desc { color: var(--ink-dim); font-size: 1rem; line-height: 1.5; }
.way__list { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.way__list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--ink-dim); line-height: 1.4; }
.way__list li::before { content: "→"; color: var(--accent); flex: none; }
.way__foot { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; border-top: 1px solid var(--line); }
.way__price { display: flex; align-items: baseline; gap: 8px; }
.way__price b { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 2.4vw, 2.3rem); color: var(--ink); line-height: 1; }
.way__price span { color: var(--ink-mute); font-size: 0.85rem; }
.way__cta { align-self: flex-start; }
.way__cta .arrow { transition: transform .25s var(--ease); }
.way:hover .way__cta .arrow { transform: translate(3px, -3px); }
.ways-cta { text-align: center; margin-top: 28px; font-size: 0.98rem; color: var(--ink-dim); }
.ways-cta a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line-2); }
.ways-cta a:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 900px) { .ways { grid-template-columns: 1fr; } .way { min-height: 0; } }

/* ---- 29. BRAND DNA (homepage) ----------------------------- */
.dna__grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: clamp(18px, 3vw, 40px); align-items: center; margin-top: clamp(30px, 4vw, 56px); }
.dna__col { display: flex; flex-direction: column; gap: 18px; }
.dna-card { display: flex; flex-direction: column; min-height: 290px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: clamp(22px, 2vw, 30px); transition: transform .3s var(--ease), border-color .3s; }
.dna-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.dna-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 10px; }
.dna-card p { color: var(--ink-dim); font-size: 0.95rem; line-height: 1.5; }
.dna-card__viz { margin-top: auto; padding-top: 22px; }
/* central marmot slot */
.dna__center { aspect-ratio: 4 / 5; border-radius: 26px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; }
.dna__center img { width: 100%; height: 100%; object-fit: cover; }
.dna__center .slot__label { text-align: center; color: var(--ink-mute); }
.dna__center .slot__label .label { display: block; margin-top: 12px; }
/* mini visuals */
.dna-swatches { display: flex; }
.dna-swatches span { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--surface); margin-left: -9px; }
.dna-swatches span:first-child { margin-left: 0; }
.dna-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.dna-chip { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-dim); background: var(--surface-2); border: 1px solid var(--line); border-radius: 100px; padding: 6px 12px; }
.dna-bar { position: relative; height: 12px; border-radius: 100px; background: linear-gradient(90deg, var(--line-2), var(--accent)); }
.dna-bar__dot { position: absolute; right: 0; top: 50%; transform: translate(-3px, -50%); width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 2px solid var(--accent); box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.dna-bar__labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.72rem; color: var(--ink-mute); }
.dna-guarantee { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--accent); color: var(--accent); border-radius: 100px; padding: 8px 15px; font-size: 0.82rem; font-weight: 600; }
.dna-guarantee svg { width: 13px; height: 13px; fill: var(--accent); }
.dna-stat { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.dna-stat small { display: block; font-size: 0.78rem; font-weight: 600; color: var(--ink-mute); margin-top: 8px; letter-spacing: 0.03em; text-transform: uppercase; }
@media (max-width: 900px) {
  .dna__grid { grid-template-columns: 1fr; }
  .dna__center { order: -1; width: 100%; max-width: 340px; margin-inline: auto; }
}

/* ---- 29b. BRAND DNA — scroll-pinned, centre text + side images */
.dnascroll { position: relative; height: 280vh; }
.dnastage { position: -webkit-sticky; position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; grid-template-columns: 1fr 1.6fr 1fr; align-items: center; gap: clamp(16px, 3vw, 52px); padding-inline: var(--gutter); }
.dnatrack { position: relative; height: 100vh; overflow: hidden; }
.dnatrack::before, .dnatrack::after { content: ""; position: absolute; left: 0; right: 0; height: 20%; z-index: 3; pointer-events: none; }
.dnatrack::before { top: 0; background: linear-gradient(var(--bg), transparent); }
.dnatrack::after { bottom: 0; background: linear-gradient(transparent, var(--bg)); }
.dnatrack__inner { position: absolute; top: 0; left: 0; right: 0; display: flex; flex-direction: column; gap: 18px; will-change: transform; }
.dnaslot { aspect-ratio: 4 / 5; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); overflow: hidden; display: grid; place-items: center; }
.dnaslot img, .dnaslot video { width: 100%; height: 100%; object-fit: cover; display: block; }
.dnaslot .slot__label { color: var(--ink-mute); text-align: center; }
.dnaslot .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; display: block; color: var(--line-2); }
.dnacenter { text-align: center; align-self: center; }
.dnacenter > .eyebrow { margin-bottom: 26px; }
.dnasteps { position: relative; min-height: 340px; }
.dnastep { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 18px; opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); pointer-events: none; }
.dnastep.is-active { opacity: 1; transform: none; }
.dnastep__num { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-mute); }
.dnastep h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.04; letter-spacing: -0.02em; max-width: 16ch; }
.dnastep p { color: var(--ink-dim); font-size: clamp(1.02rem, 1.4vw, 1.25rem); line-height: 1.5; max-width: 44ch; }
.dnadots { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
.dnadots span { width: 8px; height: 8px; border-radius: 100px; background: var(--line-2); transition: background .3s, width .3s; }
.dnadots span.on { background: var(--accent); width: 24px; }
@media (max-width: 820px) {
  .dnascroll { height: auto; }
  .dnastage { position: static; height: auto; grid-template-columns: 1fr; padding-block: clamp(40px, 8vw, 64px); gap: 30px; }
  .dnatrack { display: none; }
  .dnasteps { min-height: 0; display: flex; flex-direction: column; gap: 40px; }
  .dnastep { position: relative; inset: auto; opacity: 1; transform: none; }
  .dnadots { display: none; }
}

/* ---- 32. CONTACT PAGE (form + booking) -------------------- */
.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.contact__intro .lead { margin-top: 4px; }
.contact__list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.contact__list li { display: flex; gap: 11px; color: var(--ink-dim); font-size: 0.96rem; }
.contact__list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex: none; }
.contact__email { font-size: 0.96rem; color: var(--ink-dim); }
.contact__email a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line-2); }
.contact__email a:hover { color: var(--accent); border-color: var(--accent); }

.form { display: flex; flex-direction: column; gap: 20px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.field__opt { color: var(--ink-mute); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: inline-block; padding: 10px 16px; border: 1px solid var(--line-2); border-radius: 100px; font-size: 0.9rem; color: var(--ink-dim); transition: background .2s, color .2s, border-color .2s; }
.choice input:checked + span { background: var(--ink); color: var(--surface-2); border-color: var(--ink); }
.choice input:focus-visible + span { box-shadow: 0 0 0 3px var(--accent-soft); }
.form__submit { align-self: flex-start; margin-top: 4px; }
.form__note { font-size: 0.8rem; color: var(--ink-mute); }
/* Calendly embed frame */
.calendly-inline-widget { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.book__price { display: inline-flex; align-items: baseline; gap: 14px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 100px; padding: 16px 32px; margin-top: 26px; box-shadow: 0 14px 34px -22px var(--accent); }
.book__price b { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--accent); line-height: 1; }
.book__price span { font-size: 0.98rem; font-weight: 500; color: var(--ink-dim); }

/* ---- 33. CART & CHECKOUT (Stripe) ------------------------- */
.cart-btn { position: relative; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: border-color .2s; }
.cart-btn:hover { border-color: var(--ink); }
.cart-btn__count { position: absolute; top: -7px; right: -7px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 100px; background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700; display: grid; place-items: center; }
.cart-overlay { position: fixed; inset: 0; background: rgba(20,15,12,0.42); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 90; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--bg); border-left: 1px solid var(--line); z-index: 100; transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; }
.cart-drawer.open { transform: none; }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-drawer__head b { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.cart-close { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
/* Success page — delivery estimate */
.est-box { max-width: 460px; margin: 30px auto 4px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); text-align: left; }
.est-box__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); font-weight: 600; }
.est-box__list { list-style: none; margin: 12px 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.est-box__list li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; border-top: 1px solid var(--line); padding-top: 10px; }
.est-box__list li:first-child { border-top: none; padding-top: 0; }
.est-box__list b { font-weight: 600; color: var(--ink); }
.est-box__list span { color: var(--accent); font-weight: 600; white-space: nowrap; font-size: 0.92rem; }
.est-box__note { font-size: 0.76rem; color: var(--ink-mute); line-height: 1.45; }

/* Prebook launch popup */
.prebook { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.prebook.open { opacity: 1; visibility: visible; }
.prebook__overlay { position: absolute; inset: 0; background: rgba(6, 10, 22, 0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.prebook__card { position: relative; width: min(480px, 100%); background: var(--bg); border-radius: 22px; overflow: hidden; padding: clamp(30px, 4vw, 46px); box-shadow: 0 40px 90px -30px rgba(6, 10, 22, 0.55); transform: translateY(18px) scale(0.97); transition: transform .45s var(--ease); text-align: center; }
.prebook.open .prebook__card { transform: none; }
.prebook__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(100deg, #e5301c 0%, #6a3fd0 48%, #2e7fe0 100%); }
.prebook__close { position: absolute; top: 16px; right: 18px; border: none; background: none; color: var(--ink-mute); font-size: 1rem; cursor: pointer; padding: 6px; line-height: 1; }
.prebook__close:hover { color: var(--ink); }
.prebook__eyebrow { display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-mute); font-weight: 600; margin-bottom: 18px; }
.prebook__eyebrow b { color: var(--accent-red); }
.prebook__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 2.6rem); line-height: 1.04; letter-spacing: -0.02em; }
.prebook__title .serif { font-family: var(--font-serif); font-weight: 500; font-style: italic; }
.prebook__body { margin: 16px auto 26px; max-width: 40ch; color: var(--ink-dim); font-size: 1rem; line-height: 1.55; }
.prebook__body b { color: var(--ink); font-weight: 600; }
.prebook__cta { display: flex; flex-direction: column; gap: 10px; }
.prebook__cta .btn { justify-content: center; }
.cart-empty { color: var(--ink-mute); padding: 40px 0; text-align: center; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item__info { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-item__info b { font-size: 0.96rem; }
.cart-item__info span { font-size: 0.85rem; color: var(--ink-mute); }
.cart-item__eta { font-size: 0.76rem !important; color: var(--accent) !important; font-weight: 600; margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 9px; }
.cart-qty button { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; font-size: 1rem; line-height: 1; }
.cart-qty span { min-width: 16px; text-align: center; font-size: 0.9rem; }
.cart-item__rm { border: none; background: none; color: var(--ink-mute); cursor: pointer; font-size: 0.9rem; padding: 4px; }
.cart-item__rm:hover { color: var(--accent); }
.cart-ext { flex-wrap: wrap; }
.cart-ext__pick { flex-basis: 100%; margin-top: 12px; padding: 14px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); }
.cart-ext__head { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-mute); font-weight: 600; margin-bottom: 10px; }
.cart-ext__head span { color: var(--accent); }
.cart-ext__head span.over { color: var(--accent-red); }
.cart-ext__opt { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 0.9rem; color: var(--ink-dim); cursor: pointer; }
.cart-ext__opt input { width: 17px; height: 17px; accent-color: var(--accent); cursor: pointer; flex: none; }
.cart-ext__opt.is-disabled { opacity: 0.4; cursor: not-allowed; }
.cart-warn { font-size: 0.78rem; color: var(--accent-red); margin: 0 0 12px; text-align: center; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total b { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.cart-checkout { width: 100%; justify-content: center; }
.cart-note { font-size: 0.76rem; color: var(--ink-mute); margin-top: 12px; text-align: center; line-height: 1.4; }

/* ---- 35. TESTIMONIALS (featured carousel) ----------------- */
.tstar { text-align: center; }
.tstar__card {
  position: relative; max-width: 900px; margin: 64px auto 0;
  background: var(--accent); color: #fff;
  border-radius: 28px; padding: 68px clamp(28px, 6vw, 80px) 44px;
  box-shadow: 0 40px 80px -44px var(--accent);
}
.tstar__avatar {
  position: absolute; top: -42px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 82px; border-radius: 50%;
  border: 4px solid var(--bg); background: var(--tan);
  background-size: cover; background-position: center;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--ink-dim);
}
.tstar__quote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem); line-height: 1.42;
  margin: 0 auto; max-width: 42ch; letter-spacing: -0.01em;
}
.tstar__meta {
  display: inline-flex; align-items: center; gap: 11px; flex-wrap: wrap; justify-content: center;
  margin-top: 30px; padding: 10px 20px;
  background: rgba(0,0,0,0.14); border-radius: 100px; font-size: 0.9rem;
}
.tstar__meta b { font-weight: 700; }
.tstar__meta span { color: rgba(255,255,255,0.82); }
.tstar__meta .dot { color: rgba(255,255,255,0.45); }
.tstar__nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 46px; }
.tstar__arrow {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink);
  cursor: pointer; font-size: 1.1rem; display: grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.tstar__arrow:hover { background: var(--ink); color: var(--surface-2); border-color: var(--ink); transform: translateY(-2px); }
.tstar__strip { display: flex; gap: 10px; align-items: center; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 4px; }
.tstar__strip::-webkit-scrollbar { display: none; }
.tstar__thumb {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  border: 2px solid transparent; background: var(--tan); cursor: pointer; overflow: hidden;
  background-size: cover; background-position: center;
  display: grid; place-items: center; font-size: 0.78rem; font-weight: 700; color: var(--ink-dim);
  opacity: 0.6; transition: opacity .2s, border-color .2s, transform .2s;
}
.tstar__thumb:hover { opacity: 1; transform: translateY(-2px); }
.tstar__thumb.on { opacity: 1; border-color: var(--accent); }
@media (max-width: 680px) { .tstar__strip { max-width: 62vw; } }

/* ---- 34. HOVER MICRO-INTERACTIONS ------------------------- */
/* Buttons: consistent lift + tactile press */
.btn { transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .22s var(--ease), box-shadow .28s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--ghost:hover, .btn--light:hover { box-shadow: 0 10px 24px -16px rgba(42,33,28,0.45); }
.cart-btn:active, .cbtn:active, .nav__burger:active { transform: scale(0.94); }

/* Cards that didn't already lift */
.tcard, .step, .fit__col { transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease); }
.tcard:hover, .step:hover, .fit__col:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 24px 50px -34px rgba(0,0,0,0.24); }

/* Gentle image zoom inside media cards (kicks in once real images are dropped in) */
.tile img, .slot img, .reeltile img, .g img, .way__media img, .fmedia img,
.cslide__inner img, .dnaslot img, .roll__card img, .behind__media img, .treadmill__img img {
  transition: transform .6s var(--ease);
}
.tile:hover img, .slot:hover img, .reeltile:hover img, .g:hover img,
.way:hover .way__media img, .fmedia:hover img, .cslide.is-active:hover .cslide__inner img,
.dnaslot:hover img, .behind__media:hover img, .treadmill__img:hover img { transform: scale(1.05); }

/* Form chips + tier tags */
.choice span { transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.choice:hover span { border-color: var(--ink); transform: translateY(-1px); }
.dna-chip, .chip, .pill { transition: border-color .2s var(--ease), color .2s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:active, .tcard:hover, .step:hover, .fit__col:hover, .choice:hover span,
  .tile:hover img, .slot:hover img, .reeltile:hover img, .g:hover img, .way:hover .way__media img,
  .fmedia:hover img, .dnaslot:hover img, .behind__media:hover img, .treadmill__img:hover img { transform: none; }
}
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
}

/* ---- 31. ROLODEX (content — types of content) ------------- */
.section--tight-b { padding-bottom: clamp(14px, 2vw, 30px); }
.roll { position: relative; height: 360vh; margin-top: clamp(-140px, -11vh, -56px); }
.roll__stage { position: -webkit-sticky; position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: clamp(24px, 5vw, 72px); max-width: 1320px; margin-inline: auto; padding-inline: var(--gutter); }
.roll__copy > .label { display: inline-block; margin-bottom: 24px; }
.roll__steps { position: relative; min-height: 300px; }
.roll__step { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none; }
.roll__step.is-active { opacity: 1; transform: none; }
.roll__num { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-mute); margin-bottom: 14px; }
.roll__step h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.3rem, 4.4vw, 3.6rem); letter-spacing: -0.02em; margin-bottom: 16px; }
.roll__step p { color: var(--ink-dim); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.5; max-width: 40ch; }
.roll__dots { display: flex; gap: 8px; margin-top: 36px; }
.roll__dots span { width: 8px; height: 8px; border-radius: 100px; background: var(--line-2); transition: background .3s, width .3s; }
.roll__dots span.on { background: var(--accent); width: 24px; }
/* single image, cross-fades between content types on scroll */
.roll__deck { position: relative; height: min(90vh, 840px); }
.roll__card {
  position: absolute; top: 50%; left: 50%;
  width: min(96%, 700px); aspect-ratio: 4 / 5;
  transform: translate(-50%, -50%);
  border-radius: 20px; overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line);
  box-shadow: 0 26px 54px -30px rgba(0,0,0,0.45);
  display: grid; place-items: center;
  opacity: 0; transition: opacity .55s var(--ease);
}
.roll__card.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .roll__card { transition: none; } }
.roll__card img, .roll__card video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* auto-sliding carousel inside a rolodex card */
.ccar { width: 100%; height: 100%; overflow: hidden; }
.ccar__track { display: flex; height: 100%; will-change: transform; }
.ccar__track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; display: block; }
.roll__card .slot__label { text-align: center; color: var(--ink-mute); }
.roll__card .slot__label .plus { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; display: block; color: var(--line-2); margin-bottom: 8px; }
@media (max-width: 900px) {
  .roll { height: auto; }
  .roll__stage { position: static; height: auto; grid-template-columns: 1fr; padding-block: clamp(40px, 8vw, 64px); gap: 30px; }
  .roll__steps { min-height: 0; display: flex; flex-direction: column; gap: 28px; }
  .roll__step { position: relative; inset: auto; opacity: 1; transform: none; }
  .roll__dots { display: none; }
  .roll__deck { height: auto; perspective: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .roll__card { position: relative; top: auto; left: auto; width: 100%; transform: none !important; opacity: 1 !important; }
}

/* ---- 30. INTRO OVERLAY (animated landing statement) ------- */
.intro { position: fixed; inset: 0; z-index: 200; background: #f0f1ec; display: flex; align-items: center; justify-content: center; padding: var(--gutter); cursor: pointer; }
.intro.hide { transform: translateY(-100%); transition: transform .9s cubic-bezier(0.76, 0, 0.24, 1); }
.intro__text { text-align: center; max-width: none; }
.intro__line { display: block; overflow: hidden; white-space: nowrap; }
.intro__line > span {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 4.6vw, 3.6rem); line-height: 1.12; letter-spacing: -0.02em;
  color: var(--ink);
  transform: translateY(110%); opacity: 0;
  animation: introUp .9s var(--ease) forwards;
}
.intro__line:nth-child(1) > span { animation-delay: .2s; }
.intro__line:nth-child(2) > span { animation-delay: .7s; }
.intro__line:nth-child(3) > span { animation-delay: 1.2s; }
.intro__skip { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); opacity: 0; animation: introUp .6s var(--ease) 1.4s forwards; }
@keyframes introUp { to { transform: none; opacity: 1; } }
/* typewriter variant */
.intro__typewrap { max-width: 92vw; margin: 0 auto; text-align: center; }
.intro__tline { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 4.6vw, 3.6rem); line-height: 1.14; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.intro__cursor { display: inline-block; width: 3px; height: 0.9em; background: var(--accent); margin-left: 6px; vertical-align: -0.05em; animation: introBlink 1s steps(1) infinite; }
@keyframes introBlink { 50% { opacity: 0; } }
/* rotating frosted-glass marmot behind the intro text */
.intro__glass { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; overflow: hidden; pointer-events: none; }
.intro__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.intro__video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70%; height: 70%; object-fit: contain; }
.intro__blob {
  position: absolute; width: 54vmin; height: 54vmin; border-radius: 50%;
  background: conic-gradient(from 0deg, #c4552b, #7b93bd, #e6dccc, #3b4b67, #c4552b);
  filter: blur(66px); opacity: 0.5; animation: introBlob 26s linear infinite;
}
.intro__marmot {
  width: 64vmin; height: 64vmin;
  -webkit-mask: url(marmot-mask.svg) center / contain no-repeat;
          mask: url(marmot-mask.svg) center / contain no-repeat;
  -webkit-backdrop-filter: blur(22px) saturate(1.5) brightness(1.06);
          backdrop-filter: blur(22px) saturate(1.5) brightness(1.06);
  background: linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255,255,255,0.06) 46%, rgba(229,48,28,0.16));
  filter: drop-shadow(0 30px 60px rgba(60,40,30,0.18));
  animation: introSpin 32s linear infinite; will-change: transform;
}
.intro__typewrap { position: relative; z-index: 2; }
.intro__skip { z-index: 2; }
@keyframes introSpin { to { transform: rotate(360deg); } }
@keyframes introBlob { to { transform: rotate(-360deg); } }
@media (prefers-reduced-motion: reduce) { .intro__marmot, .intro__blob { animation: none; } }
@media (prefers-reduced-motion: reduce) {
  .intro__line > span, .intro__skip { animation: none; transform: none; opacity: 1; }
  .intro.hide { transition: none; }
}

/* ---- No stroke on any card (animated or not) ---- */
.tier, .step, .tcard, .fit__col, .fit__media, .stat, .dna-card, .dnaslot, .behind__media,
.roll__card, .tcar-card, .g, .fan__card, .wcard, .cslide__inner, .laptop,
.feat-card, .svc-card, .post, .bstat, .treadmill__img {
  border: none !important;
}
