/* ================================================================
   THE SOCIAL BYTE — Premium dark editorial design system
   Palette from brand_assets/ · aesthetic per Owen's reference
   (dark canvas, coral gradient glow, condensed uppercase display)
   ================================================================ */

:root {
  --bg:       #121212;
  --surface:  #1B1918;
  --surface-2:#232019;
  --cream:    #F8F6F1;
  --ink:      #1A1A1A;
  --coral:    #FF4D3D;
  --coral-deep: #B92A1B;
  --sage:     #8FA67A;
  --espresso: #2C1810;
  --muted:    #A6A19A;
  --line:     rgba(248, 246, 241, 0.12);
  --line-soft:rgba(248, 246, 241, 0.07);

  --font-display: "Anton", "Neue Haas Grotesk Display Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "DM Sans", "Plus Jakarta Sans", Manrope, system-ui, sans-serif;
  --font-mono: "DM Mono", "SF Mono", Menlo, monospace;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 104px;
  --space-7: 152px;

  --radius-tile: 22px;
  --radius-btn: 999px; /* pill buttons, per reference */

  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

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

/* Subtle film grain for depth on the dark canvas */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type ---------- */
.display-xl, .display-lg, .display-md, .display-sm {
  font-family: var(--font-display);
  font-weight: 400; /* Anton is single-weight black */
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
}
.display-xl { font-size: clamp(44px, 6.6vw, 88px); }
.display-lg { font-size: clamp(34px, 4.6vw, 60px); }
.display-md { font-size: clamp(24px, 3vw, 38px); }
.display-sm { font-size: clamp(19px, 2vw, 24px); line-height: 1.15; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--coral);
  flex: none;
}

.body-lg { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.65; }
.muted { color: var(--muted); }
.mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.accent { color: var(--coral); }

/* ---------- Layout ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.section { padding: var(--space-6) 0; }
.section-head { max-width: 680px; margin-bottom: var(--space-5); }
.section-head .eyebrow { margin-bottom: var(--space-2); }
.section-head p { margin-top: var(--space-2); color: var(--muted); }

.rule { border: 0; border-top: 1px solid var(--line); }

/* ---------- Glow FX: ember glow (brand coral, ported from a rotating-halo
   reference component — retuned to a coral/amber flicker instead of a full
   rainbow hue-cycle so it reads as "warm light", not a disco effect) ---------- */
@property --ember { syntax: '<number>'; inherits: true; initial-value: 1; }

/* Irregular flicker (not a clean sine wave) so it reads like candlelight, not a pulse */
@keyframes ember-flicker {
  0%, 24%, 46%, 73%, 96% { --ember: 0.5; }
  12%, 28%, 41%, 63%, 75%, 82%, 98% { --ember: 2.2; }
  6%, 32%, 57% { --ember: 1.1; }
  18%, 52%, 88% { --ember: 3; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn .arrow { transition: transform 0.35s var(--ease-spring); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }
.btn:focus-visible, a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { border-radius: var(--radius-btn); }

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff;
  box-shadow: 0 8px 28px -10px rgba(255, 77, 61, 0.55);
}
.btn-primary:hover {
  animation: ember-flicker 2.4s linear infinite;
  box-shadow:
    0 12px 36px -10px rgba(255, 77, 61, 0.75),
    0 0 calc(var(--ember) * 8px) calc(var(--ember) * 2px) rgba(255, 150, 120, 0.6);
  transform: translateY(-1px);
}

.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(248, 246, 241, 0.06); }

.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--coral); color: #fff; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 12px clamp(20px, 4vw, 40px);
  max-width: 1240px;
  margin: 0 auto;
}
.site-nav .logo img {
  height: 76px;
  width: auto;
  margin: -16px 0; /* logo file has built-in padding; crop it optically */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  list-style: none;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn)[aria-current="page"] { color: var(--cream); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-spring);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn)[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .btn { padding: 10px 22px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-spring), opacity 0.3s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero: dark stage with a drifting reel of client videos ---------- */
.hero { padding: var(--space-3) 0 0; }
.hero-panel {
  /* --chip-w drives the reel card size + the space reserved for it */
  --chip-w: clamp(132px, 16vw, 205px);
  --chip-h: calc(var(--chip-w) * 1.5);
  --reel-h: calc(var(--chip-h) + 40px);
  position: relative;
  border-radius: var(--radius-tile);
  overflow: hidden;
  /* Coral light blooming up behind the reel against a near-black stage. */
  background:
    radial-gradient(720px 380px at 50% 96%, rgba(255, 90, 68, 0.65), rgba(185, 42, 27, 0.3) 40%, transparent 68%),
    radial-gradient(1100px 620px at 50% 118%, rgba(120, 30, 18, 0.5), transparent 60%),
    radial-gradient(900px 700px at 50% -25%, rgba(30, 16, 11, 0.6), transparent 62%),
    #070707;
  border: 1px solid var(--line-soft);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 72px) calc(var(--reel-h) + clamp(28px, 4vw, 52px));
  min-height: min(88vh, 800px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

/* ---- drifting reel of client clips (positions driven by hero-reel.js) ---- */
.hero-reel {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: clamp(16px, 2.5vw, 30px);
  height: var(--reel-h);
  pointer-events: none; /* chips re-enable their own */
}
.reel-chip {
  position: absolute;
  left: 0;
  top: 28px; /* headroom for the arc lift at the edges */
  width: var(--chip-w);
  height: var(--chip-h);
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(248, 246, 241, 0.14);
  box-shadow: 0 26px 48px -18px rgba(0, 0, 0, 0.85);
  pointer-events: auto;
  will-change: transform;
}
.reel-chip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* soft dark foot so the tag reads over any footage */
.reel-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.55), transparent 36%);
  pointer-events: none;
}
.reel-chip .chip-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(13, 13, 13, 0.5);
  border: 1px solid rgba(248, 246, 241, 0.22);
  border-radius: 999px;
  padding: 4px 9px;
  backdrop-filter: blur(4px);
}
.reel-chip:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

/* ---- centred headline stack ---- */
.hero-center {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.72);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.hero-center h1 {
  text-shadow: 0 4px 44px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.005em;
}
/* Legibility overlay: darken edges + bottom-left where the headline sits */
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(130% 120% at 50% 20%, transparent 40%, rgba(11, 11, 11, 0.55) 100%),
    linear-gradient(to bottom, rgba(11, 11, 11, 0.35) 0%, transparent 30%);
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(248, 246, 241, 0.78);
  max-width: 44ch;
}
.hero-ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-2);
}
.btn-dark { background: #0E0D0C; color: var(--cream); border-color: var(--line); }
.btn-dark:hover { background: #000; border-color: var(--cream); transform: translateY(-1px); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  margin-top: var(--space-4);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
}
.marquee-track .dot { color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- What we do: checkerboard of coral cards + media tiles ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
/* Media tiles define the row height; cards stretch to match. */
.wwd-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-tile);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
}
.wwd-media img,
.wwd-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* faint coral wash so the photos sit in the brand world */
.wwd-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255, 77, 61, 0.18), transparent 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  border-radius: var(--radius-tile);
  padding: var(--space-3) var(--space-3) var(--space-3);
  /* consistent brand coral for every card */
  background: linear-gradient(155deg, var(--coral), var(--coral-deep));
  border: 1px solid transparent;
  color: #fff;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -28px rgba(255, 77, 61, 0.6);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(19px, 1.9vw, 25px);
  line-height: 1.06;
}
.service-card p { color: rgba(255, 255, 255, 0.9); font-size: 14.5px; line-height: 1.55; }
/* reference-style footer: label on the left, circular arrow on the right */
.service-card .go {
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-card .go .arrow {
  flex: none;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--coral-deep);
  font-size: 16px;
  transition: transform 0.35s var(--ease-spring), background-color 0.25s ease;
}
.service-card:hover .go .arrow { transform: translateX(4px); background: #fff; }

/* ---------- Work grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.work-card {
  text-decoration: none;
  display: block;
  border-radius: var(--radius-tile);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.25s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 34px 70px -32px rgba(0, 0, 0, 0.85);
}
.work-media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--surface); }
.work-media img,
.work-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-spring);
}
.work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.8), transparent 50%);
}
.work-card:hover .work-media img,
.work-card:hover .work-media video { transform: scale(1.045); }

/* Small sound-off badge shown on video cards */
.work-media .video-badge {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.work-media .video-badge svg { width: 12px; height: 12px; flex: none; }
.work-media .work-tag {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.work-body { padding: 20px 22px 24px; }
.work-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 19px;
  line-height: 1.15;
}
.work-body p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.work-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.work-grid .work-card.wide { grid-column: span 2; }
.work-card.wide .work-media { aspect-ratio: 16 / 9; }
.work-grid .work-card.full { grid-column: 1 / -1; }
.work-card.full .work-media { aspect-ratio: 21 / 9; }

/* ---------- Portfolio (vertical reels grouped by client) ---------- */
.portfolio-client { padding: var(--space-5) 0; border-bottom: 1px solid var(--line); }
.portfolio-client:last-of-type { border-bottom: 0; }
.portfolio-client-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.portfolio-client-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.02;
}
.portfolio-client-head .client-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.portfolio-client-head p { color: var(--muted); max-width: 60ch; margin-top: 8px; flex-basis: 100%; }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.reel-card {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-tile);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 9 / 16;
  text-decoration: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.reel-card:hover, .reel-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.85), 0 0 32px -4px rgba(255, 90, 68, 0.55);
}
.reel-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.55), transparent 42%);
  pointer-events: none;
}
.reel-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(248, 246, 241, 0.3);
  color: var(--cream);
  transition: transform 0.35s var(--ease-spring), background-color 0.25s ease, opacity 0.25s ease;
  z-index: 2;
}
.reel-play svg { width: 20px; height: 20px; margin-left: 3px; }
.reel-card:hover .reel-play { background: var(--coral); border-color: var(--coral); transform: scale(1.08); }
.reel-tag {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(6, 6, 6, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox video {
  max-width: min(92vw, 460px);
  max-height: 88vh;
  width: auto;
  border-radius: var(--radius-tile);
  background: #000;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.9);
}
.lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(248, 246, 241, 0.1);
  border: 1px solid var(--line);
  color: var(--cream);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.3s var(--ease-spring);
}
.lightbox-close:hover { background: var(--coral); border-color: var(--coral); transform: rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(248, 246, 241, 0.1);
  border: 1px solid var(--line);
  color: var(--cream);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.lightbox-nav:hover { background: var(--coral); border-color: var(--coral); }
.lightbox-nav.prev { left: clamp(8px, 2vw, 24px); }
.lightbox-nav.next { right: clamp(8px, 2vw, 24px); }
.lightbox-nav svg { width: 22px; height: 22px; }

@media (max-width: 1000px) { .reel-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) {
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-nav { width: 40px; height: 40px; }
}

/* ---------- Process (TSB 5D) ---------- */
.process-list { border-top: 1px solid var(--line); }
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr 2fr;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process-step .stage-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 0.16em;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}
.process-step p { color: var(--muted); max-width: 56ch; }

/* ---------- About us ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1000px;
}
.about-grid p { color: var(--muted); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-tile);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.25s ease, box-shadow 0.4s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.team-card > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.team-body { padding: var(--space-3) var(--space-3) var(--space-4); }
.team-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
}
.team-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 10px 0 var(--space-2);
}
.team-body p { color: var(--muted); font-size: 15.5px; }
.team-body p + p { margin-top: var(--space-2); }

/* ---------- Founder note ---------- */
.founder-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(24px, 4vw, 56px);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-tile);
  padding: clamp(24px, 4vw, 56px);
  align-items: center;
}
.founder-card img {
  border-radius: calc(var(--radius-tile) - 6px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}
.founder-card blockquote {
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.founder-card figcaption { margin-top: var(--space-3); }

/* ---------- Big CTA ---------- */
.cta {
  background:
    radial-gradient(800px 420px at 50% -20%, rgba(255, 77, 61, 0.55), rgba(185, 42, 27, 0.25) 50%, transparent 75%),
    radial-gradient(700px 380px at 85% 110%, rgba(44, 24, 16, 0.8), transparent 65%),
    #0D0D0D;
  color: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-tile);
  padding: clamp(48px, 7vw, 104px) clamp(24px, 6vw, 88px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta .eyebrow { color: rgba(248, 246, 241, 0.7); justify-content: center; }
.cta h2 { margin: var(--space-3) auto; max-width: 18ch; }
.cta p { color: rgba(248, 246, 241, 0.75); max-width: 46ch; margin: 0 auto var(--space-4); }

/* ---------- Rate cards (services page pricing) ---------- */
.rate-group { margin-top: var(--space-4); }
.rate-group + .rate-group { margin-top: var(--space-5); }
.rate-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line);
}
.rate-group-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(20px, 2.4vw, 28px);
}
.rate-group-head p { color: var(--muted); font-size: 15px; flex-basis: 100%; margin-top: 2px; }

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  align-items: stretch;
}
.rate-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-tile);
  padding: var(--space-4) var(--space-3);
  position: relative;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.25s ease;
}
.rate-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 0 36px -6px rgba(255, 77, 61, 0.4);
}
.rate-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
}
.rate-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  margin-top: 4px;
}
.rate-price { display: flex; align-items: baseline; gap: 6px; }
.rate-price .amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1;
}
.rate-price .per { font-family: var(--font-mono); font-size: 13px; color: var(--muted); letter-spacing: 0.05em; }
.rate-enquire {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.05;
  color: var(--coral);
}
.rate-card.featured .rate-enquire { color: #fff; }

.rate-posts {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding: var(--space-2) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rate-posts .num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: var(--coral);
}
.rate-posts .num-label { font-size: 14px; color: var(--cream); }
.rate-posts .break { flex-basis: 100%; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }

.rate-feats { list-style: none; display: grid; gap: 11px; }
.rate-feats li { display: flex; gap: 11px; align-items: baseline; font-size: 15px; color: var(--cream); }
.rate-feats li::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--coral);
  transform: translateY(-1px);
}
.rate-feats li.carry {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rate-feats li.carry::before { background: var(--sage); }
.rate-card .btn { margin-top: auto; justify-content: center; }

/* Featured (highlighted) business card */
.rate-card.featured {
  background: linear-gradient(165deg, var(--coral), var(--coral-deep));
  border-color: transparent;
  color: #fff;
}
.rate-card.featured .rate-name { color: rgba(255, 255, 255, 0.85); }
.rate-card.featured .rate-price .per { color: rgba(255, 255, 255, 0.8); }
.rate-card.featured .rate-posts { border-color: rgba(255, 255, 255, 0.28); }
.rate-card.featured .rate-posts .num { color: #fff; }
.rate-card.featured .rate-posts .num-label { color: #fff; }
.rate-card.featured .rate-posts .break { color: rgba(255, 255, 255, 0.85); }
.rate-card.featured .rate-feats li { color: #fff; }
.rate-card.featured .rate-feats li::before { background: #fff; }
.rate-card.featured .rate-feats li.carry { color: rgba(255, 255, 255, 0.8); }
.rate-card.featured .rate-feats li.carry::before { background: rgba(255, 255, 255, 0.6); }
.rate-card.featured:hover { box-shadow: 0 30px 70px -28px rgba(255, 77, 61, 0.55); }
.rate-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Single wide card (personal brand arm) */
.rate-card.wide {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.rate-card.wide .rate-card-left { display: flex; flex-direction: column; gap: var(--space-3); }
.rate-card.wide .rate-card-right { display: flex; flex-direction: column; gap: var(--space-3); }
.rate-card.wide .rate-wide-cta {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: var(--space-2);
  padding-top: 15px; padding-bottom: 15px;
  border-top: 0;
}

/* ---------- Service detail rows (services page) ---------- */
.course {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 3.5vw, 56px);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--line);
}
.course:last-of-type { border-bottom: 0; }
.course h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
  margin-bottom: var(--space-2);
}
.course .course-desc { color: var(--muted); max-width: 46ch; }
.course .mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.course ul { list-style: none; display: grid; gap: 12px; }
.course li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dotted var(--line);
  font-size: 15.5px;
  color: var(--cream);
}
.course li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  border-radius: 2.5px;
  background: var(--coral);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0D0D0D;
  border-top: 1px solid var(--line-soft);
  color: var(--cream);
  padding: var(--space-5) 0 var(--space-3);
  margin-top: var(--space-6);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line-soft);
}
.site-footer .logo img { height: 96px; width: auto; margin: -20px 0 -20px -14px; }
.footer-links { display: flex; gap: var(--space-4); list-style: none; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--muted); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--coral); }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
  padding-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.8s var(--ease-spring);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Hero load-in stagger */
.load-in {
  opacity: 0;
  transform: translateY(20px);
  animation: loadIn 0.9s var(--ease-spring) forwards;
  animation-delay: var(--load-delay, 0s);
}
@keyframes loadIn { to { opacity: 1; transform: none; } }

/* ---------- Small screens ---------- */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-grid .work-card.wide { grid-column: span 2; }
  .rate-grid { grid-template-columns: 1fr; }
  .rate-card.wide { grid-template-columns: 1fr; align-items: start; }
  .process-step { grid-template-columns: 92px 1fr; }
  .process-step p { grid-column: 2; }
  .course { grid-template-columns: 1fr; gap: var(--space-3); }
  .founder-card { grid-template-columns: 1fr; }
  .founder-card img { max-width: 320px; }
  .team-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding: var(--space-5) 0; }
  .nav-links {
    position: fixed;
    inset: 69px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-3) clamp(20px, 4vw, 40px) var(--space-4);
    gap: var(--space-3);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-spring);
    z-index: 90;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .hero-panel {
    --chip-w: 128px;
    min-height: 0;
    padding: 64px 20px calc(var(--reel-h) + 28px);
  }
  .hero-note { max-width: none; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .service-grid { grid-template-columns: 1fr; }
  /* full-width media would be very tall at 3/4 — go landscape on mobile */
  .wwd-media { aspect-ratio: 16 / 10; }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid .work-card.wide, .work-grid .work-card.full { grid-column: span 1; }
  .work-card.wide .work-media, .work-card.full .work-media { aspect-ratio: 4 / 5; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .load-in { opacity: 1; transform: none; animation: none; transition: none; }
  .marquee-track { animation: none; }
  .btn, .work-card, .work-media img, .service-card, .tier-card { transition: none; }
  .btn-primary:hover { animation: none; }
}
