/* ============================================================
   CUSTOM PROPERTIES
============================================================ */
:root {
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --warm-1:      #F3F2EF;
  --warm-2:      #E6E4DF;
  --warm-3:      #D0CEC8;
  --grey-light:  #B8B5AE;
  --grey-mid:    #8A8780;
  --grey-dark:   #5A5754;
  --anthracite:  #2C2B29;
  --near-black:  #1A1918;
  --orange:      #C96A2C;
  --orange-warm: #D4783A;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-cinema:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--off-white);
  color: var(--anthracite);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
ul { list-style: none; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-cinema), transform 0.9s var(--ease-cinema);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ============================================================
   PAGE LOADER
============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.loader.gone { opacity: 0; visibility: hidden; }

.loader-wordmark {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--near-black);
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinema) 0.15s forwards;
}

/* ============================================================
   CURSOR DOT
============================================================ */
@media (pointer: fine) {
  .cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 8000;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 0.2s var(--ease-out), opacity 0.3s;
    mix-blend-mode: multiply;
  }
}

/* ============================================================
   NAVBAR
============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: 68px;
  z-index: 500;
  padding: 0 48px;
  transition: background 0.4s ease, border-color 0.4s ease,
              backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--warm-2);
}
.nav-inner {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo-brand  { color: var(--orange); }
.nav-logo-suffix { color: var(--near-black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-dark);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--near-black); }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--near-black);
  padding: 9px 22px;
  border: 1px solid var(--anthracite);
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s;
}
.nav-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.4s var(--ease-out);
}
.nav-cta:hover { color: var(--orange); border-color: var(--orange); }
.nav-cta:hover::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--anthracite);
  transition: transform 0.3s var(--ease-out);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 490;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--warm-2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-cinema);
}
.mobile-nav.open {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--warm-2);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }

/* ============================================================
   HERO — cinematic 16:9 landscape
============================================================ */
#hero {
  position: relative;
  padding-top: 68px;
  padding-bottom: 0;
  background: var(--near-black);
  overflow: hidden;
}

/* Full-width stage — no max-width so video bleeds edge to edge */
.hero-stage {
  position: relative;
  width: 100%;
}

/* Hero animations — driven by JS class */
.hero-left,
.hero-right      { opacity: 0; transform: translateY(18px); }
.hero-video-wrap { opacity: 0; transform: scale(0.97); }

.hero-left.loaded       { animation: heroFade  1.1s var(--ease-cinema) 0.8s forwards; }
.hero-video-wrap.loaded { animation: heroScale 1.4s var(--ease-cinema) 0.4s forwards; }
.hero-right.loaded      { animation: heroFade  1.1s var(--ease-cinema) 1.0s forwards; }

@keyframes heroFade  { to { opacity: 1; transform: none; } }
@keyframes heroScale { to { opacity: 1; transform: scale(1); } }

/* Video container — 16:9, full width of stage */
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* Side gradients — barely-there, just enough for text legibility */
.hero-grad-left,
.hero-grad-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 36%;
  z-index: 1;
  pointer-events: none;
}
.hero-grad-left {
  left: 0;
  background: linear-gradient(to right,
    rgba(26,25,24,0.55) 0%,
    rgba(26,25,24,0.28) 55%,
    transparent 100%);
}
.hero-grad-right {
  right: 0;
  background: linear-gradient(to left,
    rgba(26,25,24,0.55) 0%,
    rgba(26,25,24,0.28) 55%,
    transparent 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Corner brackets */
.corner {
  position: absolute;
  width: 20px; height: 20px;
  z-index: 3;
}
.corner.tl { top: 0; left: 0;   border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.corner.tr { top: 0; right: 0;  border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); }
.corner.bl { bottom: 0; left: 0;  border-bottom: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.corner.br { bottom: 0; right: 0; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); }

/* Text panels — absolutely positioned over video sides */
.hero-left,
.hero-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: min(300px, 26vw);
}
.hero-left  { left: max(40px, 4.5vw); }
.hero-right { right: max(40px, 4.5vw); align-items: flex-end; text-align: right; }

/* Override loaded animation to preserve translateY(-50%) */
.hero-left.loaded {
  animation: heroFadeLeft 1.1s var(--ease-cinema) 0.8s forwards;
}
.hero-right.loaded {
  animation: heroFadeRight 1.1s var(--ease-cinema) 1.0s forwards;
}
@keyframes heroFadeLeft  { from { opacity:0; transform: translateY(calc(-50% + 16px)); } to { opacity:1; transform: translateY(-50%); } }
@keyframes heroFadeRight { from { opacity:0; transform: translateY(calc(-50% + 16px)); } to { opacity:1; transform: translateY(-50%); } }

.hero-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--orange);
}
.hero-title {
  font-family: var(--ff-body);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  color: #FAFAF8;
  letter-spacing: -0.025em;
}
.hero-title .hi {
  color: var(--orange);
}
.hero-sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-family: var(--ff-body);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.hero-tagline .hi {
  color: var(--orange);
  font-weight: 600;
}
.hero-price { display: flex; flex-direction: column; gap: 5px; }
.hero-price-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-price-amount {
  font-family: var(--ff-display);
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 300;
  color: #FAFAF8;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-price-amount sup {
  font-size: 0.38em;
  vertical-align: super;
  margin-right: 2px;
}
.hero-price-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.hero-price-note em { color: var(--orange); font-style: normal; font-weight: 500; }

.hero-ctas { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

/* ─── BUTTONS ─── */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--near-black);
  color: var(--off-white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}
.btn-dark span, .btn-dark svg { position: relative; z-index: 1; }
.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--orange);
  transition: inset 0.45s var(--ease-out);
}
.btn-dark:hover::before { inset: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-dark);
  transition: color 0.25s;
  padding: 6px 0;
}
.btn-ghost::after { content: '→'; transition: transform 0.3s var(--ease-out); }
.btn-ghost:hover { color: var(--orange); }
.btn-ghost:hover::after { transform: translateX(5px); }

.btn-full { width: 100%; }

/* ============================================================
   SHARED SECTION LAYOUT
============================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

section { padding: 120px 0; }

.section-light  { background: var(--warm-1); border-top: 1px solid var(--warm-2); border-bottom: 1px solid var(--warm-2); }
.section-off    { background: var(--off-white); }
.section-dark   { background: var(--near-black); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--orange); }
.eyebrow-dim { color: rgba(255,255,255,0.28); }
.eyebrow-dim::after { background: rgba(255,255,255,0.14); }

.section-title {
  font-family: var(--ff-body);
  font-size: clamp(32px, 3.8vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--near-black);
  letter-spacing: -0.025em;
  margin-bottom: 64px;
}
.section-title .hi { color: var(--orange); font-weight: 700; }
.section-title em  { font-style: italic; color: var(--grey-dark); }
.section-title-light { color: var(--off-white); }
.section-title-light .hi { color: var(--orange); }

/* Global orange highlight */
.hi { color: var(--orange); }

/* ============================================================
   ABOUT
============================================================ */
.about-centered {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Override section-title alignment for this section */
#about .section-title {
  text-align: center;
  margin-bottom: 40px;
}

#about .eyebrow {
  justify-content: center;
}

/* Premium statement — large editorial text */
.about-statement {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--grey-dark);
  letter-spacing: 0.01em;
  font-style: italic;
}
.about-statement .hi {
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
}

/* ============================================================
   STATS — Spline 3D split layout
============================================================ */
#stats {
  padding: 0;
  background: var(--near-black);
  overflow: hidden;
}

/* Split grid — 3D left / numbers right */
.stats-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 680px;
}

/* Left — Spline scene */
.stats-scene {
  position: relative;
  overflow: hidden;
}
.stats-scene spline-viewer {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
}

/* Right — panel */
.stats-panel {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 52px;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.stats-panel-header { display: flex; flex-direction: column; gap: 16px; }

.stats-heading {
  font-family: var(--ff-body);
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.stats-heading .hi { color: var(--orange); }

/* Stats list */
.stats-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: opacity 0.3s;
}
.stat-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.stat-row:hover { opacity: 0.85; }

/* Large animated number */
.stat-val {
  font-family: var(--ff-body);
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
  min-width: 140px;
  flex-shrink: 0;
}
.stat-val .accent { color: var(--orange); }

/* Label */
.stat-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-meta strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.stat-meta span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   WHAT WE BUILD — Connected Craft Section
============================================================ */
#what-we-build {
  padding: 0;
  background: #D9D9D9;
  overflow: hidden;
}

/* Full-width cinematic grid — no outer padding, handled per column */
.cwb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch; /* both cols fill full height */
}

/* ── LEFT — text column with its own padding ── */
.cwb-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 100px 64px 100px 64px;
  max-width: 560px;
}

.cwb-header { display: flex; flex-direction: column; gap: 20px; }

/* Title — same typographic system as section-title / Notre approche */
.cwb-title {
  font-family: var(--ff-body);
  font-size: clamp(32px, 3.4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--near-black);
  letter-spacing: -0.025em;
}
.cwb-title .hi { color: var(--orange); }

/* Subtitle */
.cwb-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--grey-dark);
  letter-spacing: 0.01em;
}

/* Feature list — subtle, airy */
.cwb-features {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.cwb-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cwb-feat:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.cwb-feat-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.cwb-feat strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: -0.01em;
}

/* Footer — conclusion + CTA */
.cwb-footer {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cwb-conclusion {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--grey-dark);
  line-height: 1.65;
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}
.cwb-conclusion .hi {
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
}

/* CTA — centred */
.cwb-cta-wrap {
  display: flex;
  justify-content: center;
}
.cwb-cta { align-self: auto; }

/* ── RIGHT — Spline, full-height, zero framing ── */
.cwb-right {
  position: relative;
  display: flex;
  align-self: stretch;
}

.cwb-spline-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 820px;
  overflow: hidden;
  background: #D9D9D9; /* identical to section — seamless */
  border-radius: 0;
  border: none;
}

/* Loading spinner — hidden */
.cwb-spline-loader { display: none; }

/* Spline viewer — fills its container completely */
.cwb-spline-wrap spline-viewer {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

/* ============================================================
   PORTFOLIO — Immersive cinematic full-width
============================================================ */
#portfolio {
  background: var(--near-black);
  padding: 0;
}

/* Section intro header */
.pf-intro {
  padding: 120px 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pf-intro-title {
  font-family: var(--ff-body);
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--off-white);
  letter-spacing: -0.03em;
}
.pf-intro-title .hi { color: var(--orange); }

/* Each project block */
.pf-block {
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pf-block:last-child {
  padding-bottom: 160px;
}

/* Meta row — index + title + description */
.pf-meta {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  padding: 0 80px 36px;
  max-width: 1400px;
  margin: 0 auto;
}

.pf-index {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.18);
  padding-bottom: 6px;
  flex-shrink: 0;
}

.pf-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Big orange uppercase title */
.pf-title {
  font-family: var(--ff-body);
  font-size: clamp(32px, 5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 0.95;
}

/* Short grey description */
.pf-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 480px;
}

/* Full-width image container — 75vh tall */
.pf-visual {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  cursor: pointer;
}

.pf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(1);
  transition: transform 0.9s var(--ease-cinema), filter 0.7s var(--ease-cinema);
}
.pf-visual:hover .pf-img { transform: scale(1.025); filter: grayscale(0); }

/* Hover dark veil */
.pf-overlay-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,25,24,0);
  transition: background 0.6s var(--ease-out);
  pointer-events: none;
}
.pf-visual:hover .pf-overlay-hover { background: rgba(26,25,24,0.22); }

/* Placeholder blocks (projects without images) */
.pf-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-placeholder--tribu {
  background: linear-gradient(135deg, #0E1B10 0%, #1C3822 50%, #0A1510 100%);
}
.pf-placeholder--miixeo {
  background: linear-gradient(135deg, #0C0F1C 0%, #131B38 50%, #090C18 100%);
}
.pf-placeholder-label {
  font-family: var(--ff-body);
  font-size: clamp(56px, 10vw, 160px);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.03);
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}

/* ============================================================
   FEATURES — Bento grid
============================================================ */
#features {
  background: rgb(26, 27, 24);
  padding: 100px 0;
}

.feat-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ── Header ── */
.feat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.feat-headline { flex: 1; }
.feat-line1 {
  font-family: var(--ff-body);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.15;
}
.feat-line2 {
  font-family: var(--ff-body);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.55);
  line-height: 1.15;
  margin-top: 8px;
}
.feat-hi {
  font-family: var(--ff-body);
  font-weight: 800;
  color: var(--orange);
}
.feat-header-right { flex-shrink: 0; padding-top: 12px; }

/* ── Liquid glass button ── */
.liquid-glass {
  display: inline-block;
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 10px 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: transform 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass:hover { transform: scale(1.02); }

/* ── Card base classes ── */
.feature-card,
.feature-card-dark {
  background: #252B4C;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}

/* ── Bento grid ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feat-c01 { grid-column: 1; grid-row: 1 / 3; }
.feat-c02 { grid-column: 2 / 4; }
.feat-c03 { grid-column: 2; }
.feat-c04 { grid-column: 3; }

/* ── Video fills card ── */
.feat-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* ── Card content sits above video ── */
.feat-content {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.feat-c01 .feat-content { min-height: 480px; }
.feat-c02 .feat-content { min-height: 260px; }

.feat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.feat-num   { font-size: 14px; color: rgba(255,255,255,0.6); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
.feat-label { font-size: 14px; color: rgba(255,255,255,0.6); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

.feat-card-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.feat-spacer     { flex: 1; }
.feat-spacer--lg { min-height: 192px; }

.feat-divider {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.2);
  margin-top: 16px;
}
.feat-para {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-top: 16px;
}
.feat-para--top    { margin-top: 40px; color: rgba(255,255,255,0.8); }
.feat-para--center { text-align: center; color: rgba(255,255,255,0.8); margin-top: 0; }

/* ============================================================
   PRICING
============================================================ */
.pricing-wrap {
  display: flex;
  justify-content: center;
}
.pricing-card {
  width: 100%;
  max-width: 540px;
  background: var(--white);
  border: 1px solid var(--warm-2);
  padding: 56px 52px;
  position: relative;
}
.pricing-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.pricing-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-curr {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--grey-mid);
  margin-top: 12px;
}
.pricing-num {
  font-family: var(--ff-display);
  font-size: clamp(72px, 8vw, 104px);
  font-weight: 300;
  color: var(--near-black);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-note {
  font-size: 12px;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}
.pricing-note strong { color: var(--orange); font-weight: 500; }
.pricing-rule {
  height: 1px;
  background: var(--warm-2);
  margin-bottom: 32px;
}
.pricing-feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-dark);
  line-height: 1.5;
}
.pricing-feats svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-feats strong { color: var(--near-black); font-weight: 500; }

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 0.06em;
}
.pricing-guarantee svg { width: 14px; height: 14px; color: var(--orange); }

/* ============================================================
   CONTACT
============================================================ */
.section-contact {
  background: rgb(217, 217, 217);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-family: var(--ff-body);
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 700;
  color: var(--near-black);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.contact-title .hi { color: var(--orange); }
.contact-copy {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-dark);
  line-height: 1.9;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--grey-dark);
  letter-spacing: 0.05em;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  transition: color 0.3s;
}
.contact-email:hover { color: var(--orange); }
.email-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Eyebrow override for light contact bg */
#contact .eyebrow { color: var(--orange); }
#contact .eyebrow::after { background: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dark);
}
.form-row input,
.form-row textarea {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--near-black);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  resize: none;
  transition: border-color 0.3s, background 0.3s;
  letter-spacing: 0.02em;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(0,0,0,0.25); }
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.85);
}
.form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: var(--near-black);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, color 0.3s;
}
.form-btn span, .form-btn svg { position: relative; z-index: 1; }
.form-btn::before {
  content: '';
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--orange);
  transition: inset 0.45s var(--ease-out);
}
.form-btn:hover::before  { inset: 0; }
.form-btn:hover { border-color: var(--orange); color: #fff; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 36px 48px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.05em;
}
.footer-backlink {
  font-size: 10px;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-backlink:hover {
  color: var(--orange);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.24);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--orange); }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — 1100px
============================================================ */
@media (max-width: 1100px) {
  .hero-stage { padding: 32px; }
  .hero-left  { left: 48px; max-width: 240px; }
  .hero-right { right: 48px; max-width: 220px; }

  .stats-split { grid-template-columns: 1fr; }
  .stats-scene spline-viewer { min-height: 420px; }
  .stats-panel { padding: 56px 40px; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }

  /* cwb tablet */
  .cwb-left { padding: 80px 40px; }
  .cwb-spline-wrap { min-height: 600px; }

  /* portfolio tablet */
  .pf-intro { padding: 100px 48px 72px; }
  .pf-meta  { padding: 0 48px 32px; }
  .pf-visual { height: 65vh; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  section { padding: 80px 0; }

  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero mobile — stacked */
  #hero {
    background: var(--near-black);
    display: block;
    padding-top: 68px;
  }
  .hero-stage { padding: 0; }

  .hero-video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
  }
  .hero-grad-left, .hero-grad-right { display: none; }
  .corner { display: none; }

  .hero-left,
  .hero-right {
    position: static;
    transform: none;
    max-width: 100%;
    padding: 36px 24px;
    text-align: center;
    align-items: center;
    gap: 20px;
  }
  .hero-left { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-right { padding-top: 28px; padding-bottom: 48px; }

  /* Re-apply animations without translateY(-50%) interference */
  .hero-left.loaded  { animation: heroFade 1.1s var(--ease-cinema) 0.8s forwards; }
  .hero-right.loaded { animation: heroFade 1.1s var(--ease-cinema) 1.0s forwards; }

  .hero-ctas { align-items: center; width: 100%; }
  .btn-dark  { width: 100%; justify-content: center; }

  .container { padding: 0 24px; }

  .about-statement { font-size: clamp(18px, 4vw, 24px); }
  /* stats split stacks on tablet */
  .stats-split { grid-template-columns: 1fr; }
  .stats-scene spline-viewer { min-height: 420px; }
  .stats-panel { padding: 56px 40px; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  /* cwb mobile */
  .cwb-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .cwb-left {
    max-width: 100%;
    padding: 64px 24px 48px;
  }
  .cwb-spline-wrap {
    min-height: 420px;
    height: 420px;
  }
  .cwb-right { min-height: 420px; }
  .cwb-cta-wrap { justify-content: center; }
  .cwb-cta { width: 100%; justify-content: center; }

  /* features bento mobile */
  .feat-inner { padding: 0 24px; }
  .feat-header { flex-direction: column; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-c01, .feat-c02, .feat-c03, .feat-c04 { grid-column: 1; grid-row: auto; }
  .feat-c01 .feat-content { min-height: 360px; }

  /* portfolio immersive mobile */
  .pf-intro { padding: 80px 24px 56px; }
  .pf-meta  { padding: 0 24px 28px; gap: 18px; }
  .pf-visual { height: 58vh; }
  .pf-block { padding: 56px 0 0; }
  .pf-block:last-child { padding-bottom: 100px; }

  .pricing-card { padding: 44px 28px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-num { font-size: 72px; }
}
