/* ============================================
   TOKENS
   ============================================ */
:root {
  --coral: #F47458;
  --coral-dark: #C0553F;
  --coral-glow: rgba(244,116,88,0.08);
  --black: #0A0A0A;
  --black-light: #141414;
  --off-white: #F5F0EB;
  --white: #FAFAFA;
  --grey: #999;
  --grey-light: #b8b8b8;
  --grey-dark: #555;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad: 120px;
  --section-pad-m: 80px;
  --margin: 80px;
  --margin-m: 20px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--black); color: var(--white);
  font-family: var(--font-sans); overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Smooth scroll body — Lenis-style */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

.container {
  max-width: 1440px; margin: 0 auto;
  padding-left: var(--margin); padding-right: var(--margin);
}
@media (max-width: 768px) {
  .container { padding-left: var(--margin-m); padding-right: var(--margin-m); }
}

/* ============================================
   GSAP-STYLE REVEAL SYSTEM
   ============================================ */
.gs-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: none; /* GSAP-driven */
}
.gs-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback for no-JS */
@media (prefers-reduced-motion: reduce) {
  .gs-reveal { opacity: 1; transform: none; }
}

/* ============================================
   PRELOADER — Lottie-style SVG draw
   ============================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-smooth), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: 110px; height: auto; animation: pulseIn 1.2s var(--ease-smooth) forwards; opacity: 0; }
@keyframes pulseIn {
  0% { opacity: 0; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

/* ============================================
   HERO NAV — sits above headline, sticks on scroll
   ============================================ */
.hero-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1000;
  transition: none;
}
/* When pinned to top via JS */
.hero-nav.pinned {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
}
.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(250,250,250,0.06);
  border-radius: 40px;
  padding: 6px 8px;
}
.hero-nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 8px 16px;
  border-radius: 24px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}
.hero-nav-link:hover {
  color: var(--white);
  background: rgba(244,116,88,0.12);
}

.hero-monogram {
  width: 60px; height: auto;
  opacity: 0;
  flex-shrink: 0;
  margin: 0 8px;
}

/* Mobile hamburger — fixed top right */
.hero-hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: fixed;
  top: 16px; right: var(--margin-m);
  z-index: 1001;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(250,250,250,0.06);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.hero-hamburger-lines {
  width: 18px; height: 12px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.hero-hamburger-lines span {
  display: block; width: 100%; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hero-hamburger.open .hero-hamburger-lines span:nth-child(1) {
  transform: translateY(5.25px) rotate(45deg);
}
.hero-hamburger.open .hero-hamburger-lines span:nth-child(2) { opacity: 0; }
.hero-hamburger.open .hero-hamburger-lines span:nth-child(3) {
  transform: translateY(-5.25px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav-mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}
.nav-mobile-menu.open {
  opacity: 1; pointer-events: auto;
}
.nav-mobile-link {
  font-family: var(--font-serif); font-size: 36px; font-weight: 500;
  color: var(--white); padding: 16px 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth), color 0.3s;
}
.nav-mobile-menu.open .nav-mobile-link {
  opacity: 1; transform: translateY(0);
}
.nav-mobile-menu.open .nav-mobile-link:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile-menu.open .nav-mobile-link:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile-menu.open .nav-mobile-link:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile-menu.open .nav-mobile-link:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile-menu.open .nav-mobile-link:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile-link:hover { color: var(--coral); }
.nav-mobile-cta {
  margin-top: 32px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--coral);
  padding: 14px 36px; border-radius: 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s 0.3s var(--ease-smooth), transform 0.4s 0.3s var(--ease-smooth), background 0.3s;
}
.nav-mobile-menu.open .nav-mobile-cta {
  opacity: 1; transform: translateY(0);
}
.nav-mobile-cta:hover { background: var(--coral-dark); }

@media (max-width: 768px) {
  .hero-nav-links { display: none; }
  .hero-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }
  .hero-monogram { width: 44px; }
  .hero-nav { margin-bottom: 20px; }
}

/* ============================================
   S1 — HERO
   ============================================ */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px var(--margin) 100px;
  position: relative; overflow: hidden;
}
/* Hero background image */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.18; filter: brightness(0.6) saturate(0.5);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
  mix-blend-mode: overlay;
  animation: grainShift 0.5s steps(4) infinite;
  will-change: transform;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-2px,1px); }
  50% { transform: translate(1px,-1px); }
  75% { transform: translate(-1px,-2px); }
  100% { transform: translate(2px,1px); }
}
.hero-ghost { z-index: 2; }
.hero-nav { z-index: 3; }
.hero-headline, .hero-sub, .hero-cta { position: relative; z-index: 3; }
.hero-scroll { z-index: 3; }
.hero-ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans); font-weight: 700; font-size: 17vw;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250,250,250,0.022);
  white-space: nowrap; pointer-events: none; user-select: none;
}

/* Monogram animation */
.hero-monogram {
  width: 60px; height: auto;
  opacity: 0;
  flex-shrink: 0;
  margin: 0 8px;
  filter: drop-shadow(0 0 12px rgba(244,116,88,0.15)) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: transform 0.3s var(--ease), filter 0.3s;
}
.hero-monogram:hover {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 0 18px rgba(244,116,88,0.25)) drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.hero-monogram.drawn { opacity: 1; animation: pulseIn 0.8s var(--ease-smooth) forwards; }

.hero-headline {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(36px, 7.2vw, 108px);
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--white); max-width: 1000px;
  opacity: 0;
}
.hero-headline em { font-style: italic; color: var(--coral); }
.hero-headline.in {
  animation: heroFadeUp 1s var(--ease-smooth) forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 15px; font-weight: 300; letter-spacing: 0.05em; color: var(--grey);
  margin-top: 28px; opacity: 0;
}
.hero-sub.in { animation: heroFadeUp 0.8s 0.15s var(--ease-smooth) forwards; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 44px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(250,250,250,0.22);
  padding: 16px 40px;
  transition: all 0.35s var(--ease);
  opacity: 0;
}
.hero-cta.in { animation: heroFadeUp 0.8s 0.3s var(--ease-smooth) forwards; }
.hero-cta:hover { background: var(--coral); border-color: var(--coral); color: var(--black); }
.hero-cta .arrow { transition: transform 0.3s var(--ease); }
.hero-cta:hover .arrow { transform: translateX(4px); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
}
.hero-scroll.in { animation: scrollFadeUp 0.7s 0.6s var(--ease-smooth) forwards; }
@keyframes scrollFadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-scroll span {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey);
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 768px) {
  .hero { padding: 60px var(--margin-m) 80px; }
  .hero-ghost { font-size: 24vw; }
  .hero-monogram { width: 44px; margin-bottom: 20px; }
  .hero-sub { font-size: 13px; margin-top: 20px; }
  .hero-cta { width: 100%; justify-content: center; margin-top: 32px; padding: 15px 28px; }
  .hero-scroll { bottom: 16px; }
}

/* ============================================
   S2 — SHOWREEL / PROOF
   ============================================ */
.proof {
  padding: 48px 0 var(--section-pad);
  overflow: hidden; position: relative;
}
.proof::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(244,116,88,0.18), transparent);
}
.proof-track {
  display: flex; gap: 10px;
  animation: marquee 48s linear infinite;
  width: max-content;
}
.proof-track:hover { animation-play-state: paused; }
.proof-item {
  flex-shrink: 0; width: 380px; height: 248px;
  background: var(--black-light); overflow: hidden;
  border: 1px solid rgba(250,250,250,0.03);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.proof-item:hover {
  transform: translateY(-3px);
  border-color: rgba(244,116,88,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.proof-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.75);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.proof-item:hover img {
  filter: brightness(0.8) saturate(0.9);
  transform: scale(1.03);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.proof-label {
  text-align: center; margin-top: 32px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grey);
}
@media (max-width: 768px) {
  .proof { padding: 36px 0 var(--section-pad-m); }
  .proof-item { width: 300px; height: 196px; }
  .proof-label { margin-top: 20px; font-size: 10px; }
}

/* ============================================
   S3 — PHILOSOPHY + FOUNDER (sticky reveal)
   ============================================ */
.voice {
  background: var(--off-white); color: var(--black);
  padding: 0;
}
.voice-inner {
  min-height: 300vh;
  position: relative;
}
.voice-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.voice-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 72px; align-items: center;
  width: 100%;
}

/* Left: statement reveal */
.voice-statements {
  position: relative;
  min-height: 200px;
}
.voice-statement {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  will-change: opacity, transform;
}
.voice-statement.vs-active { opacity: 1; position: relative; }
.voice-statement-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 500; line-height: 1.35; letter-spacing: -0.01em;
  color: var(--black);
}
.voice-statement-text em { font-style: italic; color: var(--coral); }

/* Progress dots */
.voice-progress {
  display: flex; gap: 8px;
  margin-top: 32px;
}
.voice-progress-dot {
  width: 6px; height: 6px;
  background: rgba(10,10,10,0.1);
  transition: background 0.4s, transform 0.4s var(--ease);
}
.voice-progress-dot.vp-active {
  background: var(--coral);
  transform: scale(1.5);
}

/* Counter */
.voice-counter {
  margin-top: 16px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--grey);
}
.voice-counter-current { color: var(--coral); font-weight: 600; }

/* Right: founder card stays sticky */
.founder-card { display: flex; flex-direction: column; gap: 24px; }
.founder-img-wrap { width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.founder-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.founder-info h3 { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.founder-info .founder-title {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 14px;
}
.founder-info p { font-size: 15px; font-weight: 300; line-height: 1.7; color: #666; }

@media (max-width: 768px) {
  .voice-inner { min-height: auto; }
  .voice-sticky { position: relative; height: auto; padding: var(--section-pad-m) 0; }
  .voice-grid { grid-template-columns: 1fr; gap: 40px; }
  .voice-statements { min-height: auto; }
  .voice-statement {
    position: relative; opacity: 0; margin-bottom: 48px;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .voice-statement.vs-mob-visible { opacity: 1; transform: translateY(0); }
  .voice-statement:last-child { margin-bottom: 0; }
  .voice-progress { display: none; }
  .voice-counter { display: none; }
  .founder-img-wrap { aspect-ratio: 3/2; }
}

/* ============================================
   S4 — SELECTED WORK
   ============================================ */
.work {
  background: var(--black); padding: var(--section-pad) 0; position: relative;
}
.work::before {
  content: ''; position: absolute; top: 0;
  left: var(--margin); right: var(--margin);
  height: 1px; background: rgba(250,250,250,0.06);
}
.work-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 56px;
}
.work-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500;
}
.work-count {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grey);
}
.work-grid {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.work-track {
  display: flex;
  gap: 20px;
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  will-change: transform;
}
.work-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: #111; display: block;
  flex-shrink: 0;
  width: 380px; height: 100%;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.work-card-media { aspect-ratio: auto; position: relative; overflow: hidden; width: 100%; height: 100%; }
.work-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.68) saturate(0.8);
  transition: transform 0.8s var(--ease-smooth), filter 0.6s var(--ease);
}
.work-card:hover .work-card-media img {
  transform: scale(1.05); filter: brightness(0.85) saturate(1);
}
.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 45%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
  transition: background 0.5s var(--ease);
}
.work-card:hover .work-card-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.1) 55%);
}
.work-grid::before,
.work-grid::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 3;
  pointer-events: none;
}
.work-grid::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.work-grid::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}
.work-card-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 8px;
}
.work-card-name { font-family: var(--font-serif); font-size: 26px; font-weight: 500; line-height: 1.2; }
.work-card-result {
  font-size: 13px; font-weight: 300; color: var(--grey-light); line-height: 1.5;
  margin-top: 6px; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s, margin 0.4s;
}
.work-card:hover .work-card-result { max-height: 50px; opacity: 1; margin-top: 8px; }
.work-footer { margin-top: 56px; text-align: center; }
.work-view-all {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(250,250,250,0.18);
  padding: 16px 40px; transition: all 0.35s var(--ease);
}
.work-view-all:hover { background: var(--coral); border-color: var(--coral); color: var(--black); }
.work-view-all .link-arrow { transition: transform 0.3s var(--ease); }
.work-view-all:hover .link-arrow { transform: translateX(4px); }

@media (max-width: 768px) {
  .work { padding: var(--section-pad-m) 0; }
  .work::before { left: var(--margin-m); right: var(--margin-m); }
  .work-header { margin-bottom: 36px; }
  .work-grid { height: auto; overflow: visible; }
  .work-grid::before, .work-grid::after { display: none; }
  .work-track {
    position: relative;
    flex-direction: column;
    gap: 16px;
    height: auto;
  }
  .work-card { width: 100%; height: auto; flex-shrink: 1; }
  .work-card-media { aspect-ratio: 4/5; height: auto; }
  .work-card:hover { transform: none; box-shadow: none; }
  .work-card-overlay { padding: 24px; }
  .work-card-name { font-size: 22px; }
  .work-card-result { max-height: none; opacity: 1; margin-top: 6px; }
  .work-footer { margin-top: 40px; }
  .work-view-all { width: 100%; justify-content: center; }
}

/* ============================================
   S5 — SERVICES (2-column: visual + content)
   ============================================ */
.services {
  background: var(--off-white); color: var(--black);
  padding: var(--section-pad) 0;
}
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* LEFT: Video service preview */
.services-visual { position: sticky; top: 140px; }
.svc-preview {
  width: 100%; aspect-ratio: 4/3;
  background: var(--black); position: relative;
  overflow: hidden;
  border: 1px solid rgba(244,116,88,0.12);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(244,116,88,0.06), 0 20px 60px rgba(0,0,0,0.4);
}
/* Vignette */
.svc-preview::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
  pointer-events: none; z-index: 3;
  border-radius: 8px;
}
.svc-vid-state {
  position: absolute; inset: 0;
  opacity: 0; will-change: opacity;
  pointer-events: none;
}
.svc-vid-state.active { opacity: 1; pointer-events: auto; }
.svc-vid-state video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.svc-vid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 100%);
  pointer-events: none; z-index: 1;
}
.svc-vid-accent {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--coral); opacity: 0.35; z-index: 2;
}
.svc-vid-reflect {
  position: absolute; bottom: 0; left: 0; right: 0; height: 20%;
  background: linear-gradient(to top, rgba(0,207,255,0.02), transparent);
  pointer-events: none; z-index: 1;
}
/* Top-left label */
.svc-preview-label {
  position: absolute; top: 16px; left: 16px; z-index: 4;
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral); opacity: 0.7;
}
/* Bottom-left caption */
.svc-preview-caption {
  position: absolute; bottom: 14px; left: 16px; z-index: 4;
  font-size: 8px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(250,250,250,0.3);
}

/* Animated text overlay inside preview */
.svc-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 36px;
  z-index: 4;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  pointer-events: none;
}
.svc-info-title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 500;
  color: var(--white); line-height: 1.25;
  margin-bottom: 6px;
  opacity: 0; transform: translateY(10px);
}
.svc-info-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(250,250,250,0.65); line-height: 1.5;
  margin-bottom: 10px;
  opacity: 0; transform: translateY(10px);
}
.svc-info-tags {
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(8px);
}
.svc-info-tag {
  font-size: 8px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral);
  padding: 3px 8px;
  border: 1px solid rgba(244,116,88,0.2);
  border-radius: 2px;
}

/* Mobile info overlay */
.svc-mobile-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 14px 18px; z-index: 2;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 100%);
}
.svc-mobile-info-title {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 500;
  color: var(--white); margin-bottom: 4px;
}
.svc-mobile-info-desc {
  font-size: 11px; font-weight: 300;
  color: rgba(250,250,250,0.6); line-height: 1.45;
  margin-bottom: 8px;
}
.svc-mobile-info-tags { display: flex; gap: 6px; }
.svc-mobile-info-tag {
  font-size: 7px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--coral);
  padding: 2px 6px;
  border: 1px solid rgba(244,116,88,0.2);
  border-radius: 2px;
}

/* Active row — coral tint + strong arrow */
.service-row.svc-active {
  border-color: var(--coral);
  background: rgba(244,116,88,0.04);
  border-radius: 4px;
  margin: 0 -12px;
  padding: 28px 12px;
}
.service-row.svc-active .service-name { color: var(--coral-dark); }
.service-row.svc-active .service-arrow { opacity: 1; transform: translateX(4px); color: var(--coral); }

/* Row video overlay — desktop only */
.svc-row-vid {
  position: absolute; inset: 0;
  overflow: hidden; border-radius: 4px;
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.service-row.svc-active .svc-row-vid { opacity: 1; }
.svc-row-vid video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.svc-row-vid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(245,240,235,0.92) 0%, rgba(245,240,235,0.85) 60%, rgba(245,240,235,0.75) 100%);
  pointer-events: none;
}

/* Service row needs relative for video overlay */
.service-row { position: relative; }

/* Mobile: video inside row, no separate panel */
.svc-mobile-preview { display: none; max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.svc-mobile-preview.open { max-height: 400px; }
.svc-mobile-vid {
  aspect-ratio: 4/3; background: var(--black);
  border: 1px solid rgba(244,116,88,0.1);
  border-radius: 6px;
  overflow: hidden; margin: 12px 0 4px;
  position: relative;
}
.svc-mobile-vid video { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-mobile-vid .svc-vid-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.45) 100%); pointer-events: none; }

@media (max-width: 768px) {
  .services-visual { display: none; }
  .svc-mobile-preview { display: none !important; }
  .svc-row-vid { display: block; border-radius: 0; }
  .svc-row-vid-overlay {
    background: linear-gradient(180deg, rgba(245,240,235,0.88) 0%, rgba(245,240,235,0.82) 100%);
  }
  .service-row.svc-active { margin: 0; padding: 22px 0; border-radius: 0; overflow: hidden; }
  .service-row { overflow: hidden; }
}

/* RIGHT: Content column */
.services-content {}
.services-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500; margin-bottom: 56px;
}
.service-row {
  display: grid; grid-template-columns: 44px 1fr 28px;
  gap: 20px; align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(244,116,88,0.18);
  cursor: pointer; transition: border-color 0.3s;
}
.service-row:last-child { border-bottom: 1px solid rgba(244,116,88,0.18); }
.service-row:hover { border-color: var(--coral); }
.service-row:hover + .service-row { border-top-color: var(--coral); }
.service-num {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--coral);
  position: relative; z-index: 2;
}
.service-content { display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 2; }
.service-name {
  font-family: var(--font-serif); font-size: 26px; font-weight: 500;
  line-height: 1.2; transition: color 0.3s;
}
.service-row:hover .service-name { color: var(--coral-dark); }
.service-desc { font-size: 14px; font-weight: 400; color: var(--grey); line-height: 1.55; max-width: 560px; }
.service-arrow {
  font-size: 18px; color: var(--coral); opacity: 0.3;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  position: relative; z-index: 2;
}
.service-row:hover .service-arrow { transform: translateX(5px); opacity: 1; }

@media (max-width: 768px) {
  .services { padding: var(--section-pad-m) 0; }
  .services-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-visual { position: relative; top: auto; }
  .card-stage { aspect-ratio: 4/3; }
  .float-card { width: 90%; }
  .services-heading { margin-bottom: 36px; }
  .service-row { grid-template-columns: 32px 1fr 20px; gap: 14px; padding: 22px 0; }
  .service-name { font-size: 20px; }
  .service-desc { font-size: 13px; }
  .service-arrow { opacity: 1; }
}

/* ============================================
   S6 — PROCESS
   ============================================ */
.process {
  background: var(--black); padding: var(--section-pad) 0; position: relative;
}
.process::before {
  content: ''; position: absolute; top: 0;
  left: var(--margin); right: var(--margin);
  height: 1px; background: rgba(250,250,250,0.06);
}
.process-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500; margin-bottom: 64px;
}
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.process-steps::after {
  content: ''; position: absolute;
  top: 27px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--coral), rgba(244,116,88,0.12), var(--coral));
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border: 1px solid rgba(244,116,88,0.22);
  font-size: 13px; font-weight: 600;
  color: var(--coral); background: var(--black);
  position: relative; z-index: 1; margin-bottom: 28px;
  transition: border-color 0.3s, background 0.3s;
}
.step:hover .step-num { border-color: var(--coral); background: var(--coral-glow); }
.step-name { font-family: var(--font-serif); font-size: 28px; font-weight: 500; margin-bottom: 12px; }
.step-desc { font-size: 14px; font-weight: 300; color: var(--grey); line-height: 1.65; max-width: 300px; margin: 0 auto; }

.process-quip {
  text-align: center; margin-top: 72px; padding-top: 48px;
  border-top: 1px solid rgba(250,250,250,0.05);
}
.process-quip p {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--grey-light); line-height: 1.65;
  max-width: 520px; margin: 0 auto;
}

@media (max-width: 768px) {
  .process { padding: var(--section-pad-m) 0; }
  .process::before { left: var(--margin-m); right: var(--margin-m); }
  .process-heading { margin-bottom: 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-steps::after { display: none; }
  .step {
    text-align: left; display: grid; grid-template-columns: 54px 1fr;
    gap: 20px; align-items: start; padding: 24px 0;
    border-bottom: 1px solid rgba(250,250,250,0.05);
  }
  .step:first-child { padding-top: 0; }
  .step:last-child { border-bottom: none; }
  .step-num { margin-bottom: 0; }
  .step-name { font-size: 22px; margin-bottom: 8px; }
  .step-desc { max-width: none; }
  .process-quip { margin-top: 48px; padding-top: 36px; }
}

/* ============================================
   S7 — TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--off-white); color: var(--black);
  padding: var(--section-pad) 0;
}
.testimonials-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; min-height: 220px; }
.testimonial-slide {
  opacity: 0; transform: translateY(8px);
  position: absolute; top: 0; left: 0; right: 0;
  transition: opacity 0.55s var(--ease-smooth), transform 0.55s var(--ease-smooth);
  pointer-events: none;
}
.testimonial-slide.active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.testimonial-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(19px, 2.4vw, 28px);
  font-weight: 400; line-height: 1.5; color: var(--black);
  position: relative; padding: 0 16px;
}
.testimonial-quote::before {
  content: '\201C'; position: absolute; top: -14px; left: -6px;
  font-family: var(--font-serif); font-size: 68px;
  font-weight: 600; color: var(--coral); opacity: 0.18; line-height: 1;
}
.testimonial-attribution { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.testimonial-name { font-size: 14px; font-weight: 600; letter-spacing: 0.03em; }
.testimonial-role { font-size: 11px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; }
.testimonial-dot {
  width: 7px; height: 7px; background: rgba(10,10,10,0.1);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.testimonial-dot.active { background: var(--coral); transform: scale(1.4); }
.testimonial-dot:hover { background: var(--coral-dark); }
.testimonial-arrows { display: flex; gap: 6px; margin-left: 20px; }
.testimonial-arrow-btn {
  width: 36px; height: 36px; border: 1px solid rgba(10,10,10,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--black);
  transition: all 0.3s var(--ease); cursor: pointer; background: none; padding: 0;
}
.testimonial-arrow-btn:hover { border-color: var(--coral); color: var(--coral); }
@media (max-width: 768px) {
  .testimonials { padding: var(--section-pad-m) 0; }
  .testimonials-inner { min-height: 260px; }
  .testimonial-quote { font-size: 18px; padding: 0; }
  .testimonial-quote::before { font-size: 48px; top: -10px; left: -2px; }
  .testimonial-controls { margin-top: 28px; }
  .testimonial-arrows { display: none; }
}

/* ============================================
   S8 — PRICING
   ============================================ */
.pricing {
  background: var(--black); padding: var(--section-pad) 0;
  position: relative;
}
.pricing::before {
  content: ''; position: absolute; top: 0;
  left: var(--margin); right: var(--margin);
  height: 1px; background: rgba(250,250,250,0.06);
}
.pricing-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500; margin-bottom: 16px;
}
.pricing-sub {
  font-size: 14px; font-weight: 300; color: var(--grey); margin-bottom: 56px;
  line-height: 1.5;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.price-card {
  background: var(--black-light);
  border: 1px solid rgba(250,250,250,0.06);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.price-card:hover {
  border-color: rgba(250,250,250,0.12);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: rgba(244,116,88,0.3);
  background: linear-gradient(180deg, rgba(244,116,88,0.04) 0%, var(--black-light) 40%);
}
.price-card.featured:hover { border-color: var(--coral); }

.price-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--coral); color: var(--black);
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px;
}

.price-tier {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 8px;
}
.price-name {
  font-family: var(--font-serif); font-size: 28px; font-weight: 500;
  margin-bottom: 4px;
}
.price-amount {
  font-family: var(--font-sans); font-size: 36px; font-weight: 600;
  color: var(--coral); margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.price-amount .plus { font-size: 24px; }
.price-for {
  font-size: 13px; font-weight: 300; color: var(--grey); margin-bottom: 24px;
  line-height: 1.5;
}
.price-terms {
  font-size: 11px; font-weight: 400; color: var(--grey);
  letter-spacing: 0.04em; margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250,250,250,0.06);
}

.price-features { list-style: none; margin-bottom: 32px; flex: 1; }
.price-features li {
  font-size: 13px; font-weight: 300; color: var(--grey-light);
  padding: 8px 0; padding-left: 18px; position: relative;
  line-height: 1.45;
}
.price-features li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px;
  border: 1px solid var(--coral); opacity: 0.5;
}

.price-cta {
  display: block; text-align: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 0;
  border: 1px solid rgba(250,250,250,0.15);
  color: var(--white);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.price-cta:hover { background: var(--coral); border-color: var(--coral); color: var(--black); }
.price-card.featured .price-cta {
  background: var(--coral); border-color: var(--coral); color: var(--black);
}
.price-card.featured .price-cta:hover { background: var(--coral-dark); border-color: var(--coral-dark); }

/* Community card */
.community-card {
  margin-top: 16px;
  background: var(--black-light);
  border: 1px solid rgba(250,250,250,0.06);
  padding: 28px 32px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  transition: border-color 0.3s;
}
.community-card:hover { border-color: rgba(250,250,250,0.1); }
.community-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 4px;
}
.community-name { font-family: var(--font-serif); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.community-desc { font-size: 13px; font-weight: 300; color: var(--grey); line-height: 1.5; }
.community-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral); border: 1px solid rgba(244,116,88,0.25);
  padding: 10px 24px; white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.community-cta:hover { background: var(--coral); color: var(--black); border-color: var(--coral); }

/* Add-on accordion */
.addon-section { margin-top: 40px; }
.addon-toggle {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--white);
  cursor: pointer; padding: 16px 0;
  border-top: 1px solid rgba(250,250,250,0.06);
  width: 100%;
  text-align: left;
  transition: color 0.3s;
}
.addon-toggle:hover { color: var(--coral); }
.addon-toggle-icon {
  display: inline-block; transition: transform 0.3s var(--ease);
  font-size: 18px; color: var(--coral);
}
.addon-toggle.open .addon-toggle-icon { transform: rotate(45deg); }

.addon-drawer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth);
}
.addon-drawer.open { max-height: 400px; }

.addon-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250,250,250,0.04);
}
.addon-info { display: flex; flex-direction: column; gap: 2px; }
.addon-name { font-size: 14px; font-weight: 400; }
.addon-price { font-size: 12px; color: var(--grey); }
/* Toggle switch */
.addon-switch {
  width: 44px; height: 24px;
  background: rgba(250,250,250,0.08);
  border-radius: 12px; position: relative;
  cursor: pointer; transition: background 0.3s;
  border: none; padding: 0;
}
.addon-switch.on { background: var(--coral); }
.addon-switch::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--white); border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.addon-switch.on::after { transform: translateX(20px); }

/* Running total */
.pricing-total {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(250,250,250,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.total-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey);
}
.total-amount {
  font-family: var(--font-sans); font-size: 32px; font-weight: 600;
  color: var(--coral); letter-spacing: -0.02em;
}
.total-note {
  font-size: 11px; font-weight: 300; color: var(--grey); margin-top: 8px;
  text-align: right;
}

@media (max-width: 768px) {
  .pricing { padding: var(--section-pad-m) 0; }
  .pricing::before { left: var(--margin-m); right: var(--margin-m); }
  .pricing-heading { margin-bottom: 12px; }
  .pricing-sub { margin-bottom: 36px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .price-card { padding: 32px 24px; }
  .community-card { grid-template-columns: 1fr; gap: 16px; }
  .community-cta { text-align: center; }
}

/* ============================================
   S9 — FINAL CTA
   ============================================ */
.final-cta {
  background: var(--black); padding: 160px 0;
  text-align: center; position: relative;
}
.final-cta::before {
  content: ''; position: absolute; top: 0;
  left: var(--margin); right: var(--margin);
  height: 1px; background: rgba(250,250,250,0.06);
}
.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 500; line-height: 1.15;
  max-width: 800px; margin: 0 auto 48px;
}
.final-cta-headline em { font-style: italic; color: var(--coral); }
.final-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--coral);
  padding: 18px 48px;
  transition: background 0.3s var(--ease), transform 0.3s;
}
.final-cta-btn:hover { background: var(--coral-dark); transform: translateY(-2px); }
.final-cta-btn .arrow { transition: transform 0.3s var(--ease); }
.final-cta-btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 768px) {
  .final-cta { padding: 100px 0; }
  .final-cta::before { left: var(--margin-m); right: var(--margin-m); }
  .final-cta-headline { margin-bottom: 36px; }
  .final-cta-btn { width: 100%; justify-content: center; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 80px 0 48px;
  border-top: 1px solid rgba(250,250,250,0.04);
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute; inset: 0; z-index: 0;
}
.footer-bg video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22; filter: brightness(0.5) saturate(0.4);
}
.footer .container {
  position: relative; z-index: 1;
}
.footer-mono {
  text-align: center; margin-bottom: 56px;
}
.footer-mono svg { width: 72px; height: auto; opacity: 0.25; }

.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 12px;
}
.footer-col a, .footer-col p {
  font-size: 14px; font-weight: 300; color: var(--grey-light);
  display: block; line-height: 1.8;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--coral); }

.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--grey);
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--coral); }

.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(250,250,250,0.04);
  text-align: center;
}
.footer-bottom p {
  font-size: 11px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey);
}

@media (max-width: 768px) {
  .footer { padding: 60px 0 36px; }
  .footer-mono { margin-bottom: 40px; }
  .footer-mono svg { width: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom { margin-top: 40px; }
}

/* ============================================
   ENQUIRY PANEL — slide-in / overlay
   ============================================ */
.enquiry-overlay {
  position: fixed; inset: 0; z-index: 2000;
  pointer-events: none; opacity: 0;
  transition: opacity 0.4s;
}
.enquiry-overlay.open { pointer-events: auto; opacity: 1; }
.enquiry-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.4s;
}
.enquiry-overlay.open .enquiry-backdrop { opacity: 1; }

.enquiry-panel {
  position: absolute; top: 0; right: 0;
  width: 520px; height: 100%;
  background: var(--black-light);
  border-left: 1px solid rgba(250,250,250,0.06);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-smooth);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.enquiry-overlay.open .enquiry-panel { transform: translateX(0); }

.enquiry-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(250,250,250,0.06);
}
.enquiry-title {
  font-family: var(--font-serif); font-size: 28px; font-weight: 500;
}
.enquiry-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--grey);
  border: 1px solid rgba(250,250,250,0.08);
  transition: all 0.3s; cursor: pointer; background: none; padding: 0;
}
.enquiry-close:hover { border-color: var(--coral); color: var(--coral); }

.enquiry-body { padding: 32px; flex: 1; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(250,250,250,0.04);
  border: 1px solid rgba(250,250,250,0.08);
  color: var(--white); font-family: var(--font-sans);
  font-size: 14px; font-weight: 300;
  padding: 14px 16px;
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--coral);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { min-height: 100px; resize: vertical; }
.form-optional {
  font-size: 10px; color: var(--grey); font-weight: 300;
  margin-left: 4px; text-transform: none; letter-spacing: 0;
}

.form-submit {
  width: 100%; padding: 16px;
  background: var(--coral); color: var(--black);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--coral-dark); transform: translateY(-1px); }

/* Confirmation state */
.enquiry-confirm {
  display: none; padding: 32px;
  flex: 1; align-items: center; justify-content: center;
  text-align: center; flex-direction: column; gap: 16px;
}
.enquiry-confirm.show { display: flex; }
.enquiry-confirm h3 {
  font-family: var(--font-serif); font-size: 32px; font-weight: 500;
}
.enquiry-confirm p { font-size: 14px; font-weight: 300; color: var(--grey); line-height: 1.6; }
.confirm-check {
  width: 48px; height: 48px; border: 2px solid var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--coral); margin-bottom: 8px;
}

@media (max-width: 768px) {
  .enquiry-panel {
    width: 100%; border-left: none;
    border-top: 1px solid rgba(250,250,250,0.06);
  }
  .enquiry-header { padding: 20px var(--margin-m); }
  .enquiry-body { padding: 24px var(--margin-m); }
  .enquiry-confirm { padding: 24px var(--margin-m); }
}

/* ============================================
   PINNED SCROLL REVEAL — masked editorial reveal
   ============================================ */
.pinned-reveal {
  position: relative;
  background: var(--black);
}
.pinned-reveal-inner {
  height: 400vh; /* extended scroll distance for smoother scrub */
  position: relative;
}
.pinned-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Canvas layer — holds everything */
.pr-canvas {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Label */
.pr-label {
  position: absolute; top: 80px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--coral); opacity: 0.5;
  z-index: 5;
}

/* Text stages — each word-wrapped in a mask container */
.pr-stage {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; max-width: 880px;
  padding: 0 var(--margin);
  z-index: 3;
  pointer-events: none;
}
.pr-stage-line {
  overflow: hidden;
  display: block;
}
.pr-stage-line-inner {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--white);
  transform: translateY(110%); /* hidden below mask */
  will-change: transform;
}
.pr-stage-line-inner em {
  font-style: italic;
  color: var(--coral);
}

/* Floating mask panels — dark image blocks that slide across */
.pr-mask-panel {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  will-change: transform;
}
.pr-mask-panel img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(0.95) contrast(1.12);
  transform: scale(1.15);
}

/* Panel A — tall rectangle, left side */
.pr-panel-a {
  width: 34vw; height: 72vh;
  top: 14vh; left: -36vw;
  border: 1px solid rgba(244,116,88,0.06);
}
/* Panel B — medium square, right side */
.pr-panel-b {
  width: 28vw; height: 58vh;
  top: 22vh; right: -30vw;
  border: 1px solid rgba(250,250,250,0.04);
}
/* Panel C — small circle, offset */
.pr-panel-c {
  width: 22vw; height: 22vw;
  top: 10vh; right: 4vw;
  border-radius: 50%;
  border: 1px solid rgba(244,116,88,0.08);
  opacity: 0;
}

/* Thin horizontal rule accent */
.pr-accent-line {
  position: absolute;
  bottom: 72px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--coral);
  opacity: 0.3;
  z-index: 5;
}

/* Progress dots */
.pr-progress {
  position: absolute;
  right: 36px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 5;
}
.pr-progress-dot {
  width: 4px; height: 4px;
  background: rgba(250,250,250,0.12);
  transition: background 0.5s, transform 0.5s var(--ease);
}
.pr-progress-dot.active {
  background: var(--coral);
  transform: scale(1.8);
}

/* Counter */
.pr-counter {
  position: absolute;
  bottom: 48px; right: 36px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--grey);
  z-index: 5;
}
.pr-counter-current { color: var(--coral); font-weight: 600; }

@media (max-width: 768px) {
  .pinned-reveal-inner { height: 350vh; }
  .pr-label { top: 72px; font-size: 9px; }
  .pr-stage { padding: 0 var(--margin-m); }
  .pr-stage-line-inner { font-size: 24px; line-height: 1.3; }
  .pr-panel-a { width: 50vw; height: 50vh; top: 6vh; left: -52vw; }
  .pr-panel-b { width: 42vw; height: 36vh; top: 52vh; right: -44vw; }
  .pr-panel-c { display: none; }
  .pr-progress { right: 16px; }
  .pr-counter { right: 16px; bottom: 32px; }
  .pr-accent-line { bottom: 56px; }
}

/* ============================================
   BRIDGE / OVERLAP ELEMENTS
   ============================================ */
.bridge {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}
.bridge-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(244,116,88,0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.bridge-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}

/* Bridge between voice and work */
.bridge-voice-work {
  bottom: -60px;
  left: 8%;
}

/* Bridge between work and services */
.bridge-work-services {
  bottom: -56px;
  right: 10%;
}
.bridge-work-services .bridge-circle {
  width: 100px; height: 100px;
  border-color: rgba(244,116,88,0.08);
}

/* Bridge between process and testimonials */
.bridge-process-test {
  bottom: -48px;
  left: 12%;
}
.bridge-process-test .bridge-circle {
  width: 88px; height: 88px;
}

/* Soft glow accent (no image) */
.bridge-glow {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,116,88,0.08) 0%, transparent 70%);
}

@media (max-width: 768px) {
  .bridge { display: none; }
}

/* ============================================
   SCROLL PROGRESS BAR (A4)
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--coral-dark));
  z-index: 9998;
  transition: none;
  will-change: width;
}

/* ============================================
   PROOF HEADING (I4)
   ============================================ */
.proof-heading {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 28px;
  padding-top: 16px;
}

/* ============================================
   TESTIMONIALS — visual weight (I5)
   ============================================ */
.testimonials-inner::after {
  content: '\201D';
  position: absolute;
  top: -30px; right: 0;
  font-family: var(--font-serif);
  font-size: 200px;
  font-weight: 600;
  color: rgba(244,116,88,0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   FINAL CTA — ambient glow (C3)
   ============================================ */
.final-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,116,88,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.final-cta .container { position: relative; z-index: 1; }

/* ============================================
   MOBILE — Pinned reveal fix (T2, F2)
   ============================================ */
@media (max-width: 768px) {
  .pinned-reveal-inner { height: 280vh; }
  .pr-stage-line-inner { font-size: 22px; line-height: 1.35; }
}

/* ============================================
   CUSTOM CURSOR (A1)
   ============================================ */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [data-open-enquiry] { cursor: none; }
  .cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--coral); border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; z-index: 9999;
    will-change: transform;
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 32px; height: 32px;
    border: 1px solid rgba(244,116,88,0.4); border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; z-index: 9999;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    will-change: transform;
  }
  .cursor-hover .cursor-ring {
    width: 48px; height: 48px;
    border-color: var(--coral);
    background: rgba(244,116,88,0.05);
  }
}

/* ============================================
   MAGNETIC CTA (A2)
   ============================================ */
.magnetic { display: inline-block; will-change: transform; transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1); }

/* ============================================
   DUAL ROW MARQUEE (A3)
   ============================================ */
.proof-track-wrapper {
  display: flex; flex-direction: column; gap: 20px;
  overflow: hidden; width: 100%;
}
.proof-track.top-track { animation: scrollProof 40s linear infinite; }
.proof-track.bottom-track { animation: scrollProofRev 45s linear infinite; transform: translateX(-50%); }
@keyframes scrollProofRev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@media (max-width: 768px) {
  .proof-track-wrapper { gap: 12px; }
  .proof-track.top-track { animation: scrollProof 25s linear infinite; }
  .proof-track.bottom-track { animation: scrollProofRev 30s linear infinite; }
}

/* ============================================
   PROCESS SECTION IMAGERY (C2)
   ============================================ */
.process-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.process-image {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.process-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}
@media (max-width: 992px) {
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-image { order: -1; aspect-ratio: 16/9; }
}

/* ============================================
   VARIED WORK CARDS (F5) & HORIZONTAL SNAP (T4)
   ============================================ */
@media (min-width: 769px) {
  .work-card:nth-child(1) { width: 440px; }
  .work-card:nth-child(2) { width: 320px; margin-top: 40px; height: calc(100% - 40px); }
  .work-card:nth-child(3) { width: 480px; }
  .work-card:nth-child(4) { width: 360px; margin-top: 20px; height: calc(100% - 20px); }
}
@media (max-width: 768px) {
  .work-grid { 
    height: auto; overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    margin-left: calc(-1 * var(--margin-m)); 
    padding-left: var(--margin-m); padding-right: var(--margin-m); 
    scrollbar-width: none; 
  }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-track { 
    flex-direction: row; position: relative; gap: 16px; 
    height: 400px; width: max-content; 
  }
  .work-card { width: 280px; height: 100%; flex-shrink: 0; scroll-snap-align: center; }
  .work-card-media { aspect-ratio: auto; height: 100%; }
}

/* ============================================
   CTA HIERARCHY (F4)
   ============================================ */
.price-cta { border: 1px solid rgba(250,250,250,0.2); }
.price-card.featured .price-cta { border-color: var(--coral); background: var(--coral); color: var(--black); }
.price-card.featured .price-cta:hover { background: var(--coral-dark); }

/* ============================================
   MOBILE WORK SCROLL BUTTONS
   ============================================ */
.work-header-right {
  display: flex; align-items: center; gap: 24px;
}
.work-scroll-btns {
  display: none;
}
@media (max-width: 768px) {
  .work-header { align-items: center; }
  .work-header-right { gap: 16px; }
  .work-scroll-btns { display: flex; gap: 8px; }
  .work-scroll-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(250,250,250,0.18);
    background: transparent; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
  }
  .work-scroll-btn:active { background: rgba(250,250,250,0.1); }
  .work-scroll-btn svg { width: 18px; height: 18px; }
}