
/* ============================================================
   DIGIKIT PRODUCTION — Stylesheet
   Design reference: denzongfilms.com (structure/rhythm/interaction, closely matched)
   Brand: Digikit yellow #F9ED1D on near-black — flat colour, no brand gradients.
   Wordmark: Stretch Pro (falls back gracefully if the licensed font isn't installed)
   ============================================================ */

@font-face {
  font-family: "Stretch Pro";
  src: local("Stretch Pro"), local("StretchPro"), local("Stretch Pro Regular"),
       url("assets/fonts/StretchPro.otf") format("opentype");
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --bg: #0a0a0b;
  --bg-alt: #0a0a0b;
  --surface: #17171a;
  --surface-2: #1e1e22;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f2ef;
  --text-muted: #a6a3a0;
  --text-faint: #6f6c69;
  --brand-yellow: #f9ed1d;
  --on-brand: #0a0a0b;
  --accent: #f9ed1d;
  --accent-2: #fff694;
  --accent-dim: #c7bd13;
  /* Flat brand colour by default — gradients are reserved for the hero atmosphere only, used sparingly. */
  --gradient-accent: var(--accent);
  --font-wordmark: "Stretch Pro", "Archivo Black", "Arial Narrow", sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 100px;
  --container: 1360px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-pad: clamp(56px, 8vw, 120px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

body.nav-open {
  overflow: hidden !important;
}

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s, box-shadow 0.35s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease-out); }
.btn:hover { border-color: var(--text); transform: translateY(-2px); }
.btn:hover svg { transform: translate(3px, -3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--on-brand);
  box-shadow: 0 8px 30px -8px rgba(249, 237, 29, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px -6px rgba(249, 237, 29, 0.5);
  transform: translateY(-2px) scale(1.015);
}
.btn-primary svg { color: var(--on-brand); }

.btn-ghost { background: rgba(255,255,255,0.03); }

.btn-lg { padding: 19px 34px; font-size: 15.5px; }

/* ============================================================
   HEADER — floating rounded bar (matches reference nav treatment)
   ============================================================ */
.site-header-wrap {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0 var(--gutter);
  pointer-events: none;
  transition: top 0.4s var(--ease-out);
}
.site-header {
  pointer-events: auto;
  width: 100%;
  max-width: 940px;
  padding: 8px 8px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: var(--radius-pill);
  background: rgba(17, 17, 19, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.88);
  border-color: var(--border-strong);
  box-shadow: 0 14px 40px -16px rgba(0, 0, 0, 0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark-img {
  display: block;
  height: 44px;
  width: auto;
}
.logo .subtitle {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { display: flex; gap: 22px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent-2);
  transition: width 0.3s var(--ease-out);
}
.main-nav a:hover::after { width: 100%; }
.nav-cta { display: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px var(--gutter) 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.25) 35%, rgba(10,10,11,0.45) 65%, var(--bg) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero h1 {
  font-size: clamp(34px, 6.2vw, 68px);
  color: #fff;
  margin-bottom: 22px;
}

.hero .sub {
  font-size: clamp(15px, 2vw, 18px);
  color: #fff;
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Logo marquee ---------- */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--text-faint);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-track span:hover { color: var(--text); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   OUR STORY
   ============================================================ */
.our-story {
  position: relative;
  z-index: 20;
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.story-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 24px;
}
.story-title {
  font-size: clamp(30px, 4.2vw, 52px);
  max-width: 12ch;
}
.story-desc {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 56ch;
}

@media (max-width: 780px) {
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-title { max-width: none; }
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.6vw, 56px);
  color: #fff;
}
.section-head .lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
}
.section-head.center .lead { margin-left: auto; margin-right: auto; }

.section-alt { background: var(--bg-alt); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: var(--section-pad) 0; }

.service-intro { max-width: 640px; margin-bottom: 48px; }
.service-intro h3 { font-size: clamp(22px, 2.4vw, 28px); color: #fff; }
.service-intro .tagline { color: var(--accent-2); font-size: 15px; margin-top: 12px; font-weight: 500; }
.service-intro .desc { color: var(--text-muted); margin-top: 14px; font-size: 15px; }

/* ---------- Bento service grid: large + normal top row, a tall card holding the
   right column across both rows, two more normal cards filling row two. Titles sit
   top-left directly on the image (no bottom scrim card), descriptions sit bottom-left
   where present. ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(200px, 1fr));
  grid-template-areas:
    "large large mid  tall"
    "sm1   norm1 norm2 tall";
  gap: 16px;
}
.bento-grid > *:nth-child(1) { grid-area: large; }
.bento-grid > *:nth-child(2) { grid-area: mid; }
.bento-grid > *:nth-child(3) { grid-area: tall; }
.bento-grid > *:nth-child(4) { grid-area: sm1; }
.bento-grid > *:nth-child(5) { grid-area: norm1; }
.bento-grid > *:nth-child(6) { grid-area: norm2; }

.bento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  isolation: isolate;
}
.bento-card .card-media { position: absolute; inset: 0; transition: transform 0.7s var(--ease-out); }
.bento-card .card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bento-card:hover .card-media { transform: scale(1.05); }
.bento-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.72) 0%, transparent 40%, transparent 70%, rgba(5, 5, 5, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Placeholder category pill hidden here to match the reference's clean full-bleed
   imagery; the title below already names the category, so no information is lost. */
.bento-card .ph-label { opacity: 0; pointer-events: none; }

.bento-title {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 2;
  margin: 0;
  padding: 22px 24px 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 80%;
}
.bento-desc {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 34ch;
}

/* ---------- Kinetic centered CTA paragraph (reference-matched mid-page moment) ---------- */
.kinetic-cta {
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(40px, 6vw, 70px);
  text-align: center;
}
.kinetic-cta-line {
  font-size: clamp(20px, 3vw, 32px);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* Placeholder visual treatment (used wherever real footage/imagery is pending) */
.media-placeholder {
  width: 100%; height: 100%;
  position: relative;
  background: linear-gradient(150deg, #221e1c, #0c0b0a 60%, #050505);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.media-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 20% 15%, rgba(249,237,29,0.14), transparent 60%),
              radial-gradient(70% 70% at 85% 90%, rgba(255,177,153,0.14), transparent 65%);
}
.media-placeholder .ph-label {
  position: relative; z-index: 1;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px dashed rgba(255,255,255,0.25);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 8px;
}
.media-placeholder .ph-label svg { width: 14px; height: 14px; }
.media-placeholder .grain {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 5px);
  mix-blend-mode: overlay;
}

/* ---------- tag ticker ---------- */
.ticker-wrap {
  --ticker-gap: clamp(28px, 3.4vw, 48px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  overflow: hidden;
  background: radial-gradient(60% 140% at 50% 50%, rgba(249, 237, 29, 0.045), transparent 70%);
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-set {
  display: flex;
  align-items: center;
  gap: var(--ticker-gap);
  margin-right: var(--ticker-gap);
  flex-shrink: 0;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.ticker-track span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
}
.ticker-track span:hover {
  background: rgba(249, 237, 29, 0.08);
  border-color: rgba(249, 237, 29, 0.35);
  transform: translateY(-2px);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  position: relative;
  padding-top: var(--section-pad);
  padding-bottom: 0;
}

/* ---------- 3D coverflow carousel: draggable, auto-looping, sits between the
   Portfolio heading and the horizontal-scroll Featured Work section below it ---------- */
.p3d-wrap {
  position: relative;
  z-index: 1;
  height: clamp(360px, 48vw, 520px);
  margin-top: clamp(48px, 6vw, 84px);
  margin-bottom: clamp(48px, 6vw, 84px);
  perspective: 1600px;
  cursor: grab;
  touch-action: pan-y;
  overflow: hidden;
}
.p3d-wrap.dragging { cursor: grabbing; }
.p3d-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.p3d-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 23.6vw, 380px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.7);
  user-select: none;
  will-change: transform, opacity;
}
.p3d-card .card-media { position: absolute; inset: 0; }
.p3d-card .card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p3d-card .ph-label { opacity: 0; pointer-events: none; }
.p3d-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, 0.85) 100%);
  pointer-events: none;
}
.p3d-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0 22px 20px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 640px) {
  .p3d-wrap { height: clamp(320px, 78vw, 420px); }
  .p3d-card { width: clamp(190px, 58vw, 260px); }
}

/* ---------- Featured Work: scroll-pinned horizontal journey ---------- */
.fw-pin {
  position: relative;
  background: var(--bg);
  z-index: 10;
}
.fw-viewport {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fw-track {
  display: flex;
  align-items: center;
  gap: clamp(72px, 7.5vw, 128px);
  padding-left: 8vw;
  padding-right: 18vw;
  will-change: transform;
}
.fw-slide {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 48px);
  flex-shrink: 0;
  will-change: transform, opacity;
}

/* Editorial text block, sitting beside the image rather than overlaid on it */
.fw-text {
  flex-shrink: 0;
  width: clamp(260px, 27vw, 420px);
}
.fw-num {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-weight: 700;
}
.fw-title {
  font-size: clamp(42px, 5.6vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: 18px;
}
.fw-cat {
  display: block;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.5;
}

/* Media panel, clean image with no text overlay, sized to dominate the pinned viewport */
.fw-image {
  position: relative;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.75);
}
.fw-image--cinematic { height: min(70vh, 580px); aspect-ratio: 4 / 3; }
.fw-image--portrait   { height: min(76vh, 640px); aspect-ratio: 3 / 4; }
.fw-image--tall        { height: min(78vh, 660px); aspect-ratio: 2 / 3; }
.fw-image--landscape  { height: min(64vh, 520px); aspect-ratio: 16 / 10; }
.fw-image--compact    { height: min(58vh, 460px); aspect-ratio: 4 / 3.4; }
.fw-image .card-media { position: absolute; inset: -8%; width: 116%; height: 116%; will-change: transform; }
.fw-image .card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Slide 2 variant: oversized wordmark-style title (spanning to the slide's own right edge)
   with images clustered at top/bottom, echoing an edge-bleeding editorial title treatment.
   No independent motion changes — these tiles reuse .fw-image so the existing per-image
   parallax on [data-fw-img] picks them up automatically, same mechanism as every other slide. */
.fw-collage {
  position: relative;
  width: min(88vw, 1240px);
  height: min(64vh, 520px);
}
.fw-collage-tile { position: absolute; z-index: 2; }
.fw-collage-tile-1 { width: 14%; aspect-ratio: 1 / 1; top: 4%; left: 1%; }
.fw-collage-tile-2 { width: 21%; aspect-ratio: 4 / 3; top: -3%; left: 17%; }
.fw-collage-tile-3 { width: 13%; aspect-ratio: 4 / 3; bottom: 4%; left: 0%; }
.fw-collage-tile-4 { width: 19%; aspect-ratio: 16 / 10; bottom: 0%; right: 1%; }
.fw-collage-text-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 6%;
  z-index: 1;
  pointer-events: none;
}
.fw-text--center {
  width: auto;
  max-width: none;
  text-align: left;
  padding-left: 24%;
}
.fw-text--center .fw-title {
  font-family: var(--font-wordmark);
  font-size: clamp(64px, 12.9vw, 185px);
  line-height: 0.92;
  white-space: nowrap;
  text-transform: uppercase;
}
.fw-text--center .fw-cat { font-size: 16px; }

@media (max-width: 860px), (prefers-reduced-motion: reduce) {
  .fw-collage { width: 92vw; height: 78vw; max-height: 62vh; }
  .fw-collage-tile-1, .fw-collage-tile-2, .fw-collage-tile-3, .fw-collage-tile-4 { width: 26%; }
  .fw-text--center { padding-left: 4%; }
  .fw-text--center .fw-title { font-size: clamp(34px, 13vw, 56px); white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .fw-slide { transition: none !important; }
}

@media (max-width: 860px) {
  .fw-pin {
    padding: 0 0 32px;
    background: var(--bg);
  }
}

.fw-viewport.fw-static {
  height: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0 28px;
}
.fw-viewport.fw-static::-webkit-scrollbar { display: none; }
.fw-viewport.fw-static .fw-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: max-content;
  transform: none !important;
}
.fw-viewport.fw-static .fw-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: min(85vw, 360px);
  flex-shrink: 0;
  scroll-snap-align: center;
  transform: none !important;
  opacity: 1 !important;
}
.fw-viewport.fw-static .fw-text {
  width: 100%;
  max-width: none;
}
.fw-viewport.fw-static .fw-num {
  font-size: 11px;
  letter-spacing: 0.14em;
}
.fw-viewport.fw-static .fw-title {
  font-size: clamp(24px, 6.2vw, 32px);
  margin-top: 8px;
  line-height: 1.1;
}
.fw-viewport.fw-static .fw-cat {
  font-size: 13.5px;
  margin-top: 8px;
  line-height: 1.4;
}
.fw-viewport.fw-static .fw-image {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
}
.fw-viewport.fw-static .fw-image .card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none !important;
}
.fw-viewport.fw-static .fw-collage {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.fw-viewport.fw-static .fw-collage-tile {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 0;
}
.fw-viewport.fw-static .fw-collage-tile-1,
.fw-viewport.fw-static .fw-collage-tile-3,
.fw-viewport.fw-static .fw-collage-tile-4 {
  display: none;
}
.fw-viewport.fw-static .fw-collage-tile-2 {
  display: block;
  opacity: 0.35;
}
.fw-viewport.fw-static .fw-collage-text-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2;
}
.fw-viewport.fw-static .fw-text--center {
  padding: 0;
  text-align: center;
}
.fw-viewport.fw-static .fw-text--center .fw-title {
  font-size: clamp(30px, 8vw, 42px);
  white-space: normal;
}

/* ============================================================
   WHY US
   ============================================================ */
.why { padding-top: clamp(40px, 5vw, 80px); padding-bottom: var(--section-pad); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card {
  background: var(--bg);
  padding: 42px 34px;
  transition: background 0.35s;
  position: relative;
}
.why-card:hover { background: var(--surface); }
.why-card .icon-num {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  margin-bottom: 26px;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}
.why-card:hover .icon-num { background: var(--gradient-accent); color: var(--on-brand); border-color: transparent; transform: rotate(-8deg); }
.why-card h3 { font-size: 19px; color: #fff; margin-bottom: 12px; }
.why-card p { font-size: 14.5px; color: var(--text-muted); }
.why-card.wide { grid-column: 1 / -1; }
.why-card.wide p { max-width: 640px; }

/* ============================================================
   SHOWREEL
   ============================================================ */
.showreel {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}
.showreel-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8.5;
  border: 1px solid var(--border);
  background: var(--surface);
}
.showreel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: var(--section-pad) 0; }
.process-list { border-top: 1px solid var(--border); }
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: padding-left 0.4s var(--ease-out);
}
.process-step:hover { padding-left: 12px; }
.process-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-strong);
  transition: -webkit-text-stroke 0.35s, color 0.35s;
}
.process-step:hover .process-num { -webkit-text-stroke: 1px var(--accent); color: var(--accent); }
.process-body h3 { font-size: clamp(19px, 2vw, 24px); color: #fff; }
.process-body .step-tag { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); font-weight: 600; margin-bottom: 10px; display: block; }
.process-body p { color: var(--text-muted); font-size: 15px; margin-top: 12px; max-width: 560px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--section-pad) 0; background: var(--bg-alt); }

/* ---------- Testimonial carousel: draggable, auto-looping card track ---------- */
.testi-kicker {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 20px;
}
.testi-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  padding: 4px 0 10px;
}
.testi-viewport.dragging { cursor: grabbing; }
.testi-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.testi-set { display: flex; gap: 24px; margin-right: 24px; flex-shrink: 0; }

.testi-card {
  display: flex;
  flex-direction: column;
  width: clamp(300px, 34vw, 420px);
  flex-shrink: 0;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(249,237,29,0.06), var(--surface) 55%);
  border: 1px solid var(--border-strong);
  user-select: none;
}
.testi-viewport.dragging .testi-card { pointer-events: none; }

.testi-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.testi-avatar-btn {
  width: 48px; height: 48px; border-radius: 12px;
  background: transparent;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--accent); font-size: 15px;
  font-family: "Bricolage Grotesque", sans-serif;
  flex-shrink: 0;
}
.testi-card blockquote {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  min-height: 4.65em;
}

.testi-meta { margin-top: auto; padding-top: 22px; }
.testi-meta .name { font-weight: 600; color: #fff; font-size: 15px; }
.testi-meta .role { font-size: 13.5px; color: var(--text-muted); margin-top: 2px; }
.stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; }
.star-partial { position: relative; display: inline-block; color: var(--border-strong); }
.star-partial::before {
  content: "★";
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  overflow: hidden;
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .testi-card { width: 82vw; }
}

/* ============================================================
   CTA (mid-page)
   ============================================================ */
.cta-section {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
}
.cta-section h2 {
  font-size: clamp(32px, 5.6vw, 68px);
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
}
.cta-section .sub {
  margin: 22px auto 42px;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 480px;
}
.cta-section .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--section-pad) 0; background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
}
.contact-info h2 { font-size: clamp(30px, 4vw, 48px); color: #fff; }
.contact-info .sub { margin-top: 20px; color: var(--text-muted); font-size: 16px; max-width: 400px; }
.contact-details { margin-top: 44px; display: grid; gap: 20px; }
.contact-details > a, .contact-details > span {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.contact-details .ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); flex-shrink: 0;
}
.contact-details .ic svg { width: 17px; height: 17px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 9px;
  letter-spacing: 0.02em;
}
.field .req { color: var(--accent); margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--border-strong); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: var(--surface-2);
  outline: none;
}
.field-error {
  display: none;
  font-size: 12.5px;
  color: #ff8a65;
  margin-top: 7px;
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff8a65; }
.field.invalid .field-error { display: block; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a6a3a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-note { font-size: 13px; color: var(--text-faint); margin-top: 4px; }
.contact-form button[type="submit"] { width: 100%; justify-content: center; margin-top: 8px; }
.form-status { margin-top: 16px; font-size: 14px; }
.form-status.error { color: #ff8a65; }

/* ============================================================
   THANK YOU (overlay state)
   ============================================================ */
.thankyou-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
  padding: 24px;
}
.thankyou-overlay.visible { opacity: 1; pointer-events: auto; }
.thankyou-card {
  max-width: 520px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 70px) clamp(28px, 6vw, 56px);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.5s var(--ease-out);
}
.thankyou-overlay.visible .thankyou-card { transform: translateY(0) scale(1); }
.thankyou-card .clap {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-card .clap svg { width: 28px; height: 28px; color: var(--on-brand); }
.thankyou-card h2 { font-size: clamp(28px, 4vw, 40px); color: #fff; }
.thankyou-card p { margin-top: 16px; color: var(--text-muted); font-size: 15.5px; }
.thankyou-card .btn { margin-top: 30px; }
.thankyou-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.thankyou-close svg { width: 15px; height: 15px; }

/* ============================================================
   FLOATING CONTACT (call + WhatsApp)
   ============================================================ */
.float-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.float-btn svg { width: 26px; height: 26px; }
.float-btn:hover { transform: translateY(-3px) scale(1.05); }
.float-btn:active { transform: translateY(0) scale(0.97); }
.float-btn--call {
  background: var(--gradient-accent);
  color: var(--on-brand);
  box-shadow: 0 10px 28px -8px rgba(249, 237, 29, 0.55);
}
.float-btn--call:hover { box-shadow: 0 14px 34px -6px rgba(249, 237, 29, 0.7); }
.float-btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.55);
}
.float-btn--whatsapp:hover { box-shadow: 0 14px 34px -6px rgba(37, 211, 102, 0.7); }

@media (max-width: 640px) {
  .float-contact { right: 16px; bottom: 16px; gap: 12px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 23px; height: 23px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 72px 0 32px; border-top: 1px solid var(--border); }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 22px; margin-left: -5px; }
.footer-tagline { color: var(--text-muted); font-size: 14px; margin-top: 22px; line-height: 1.5; }

.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: 20px; font-weight: 700; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--text-muted); transition: color 0.25s; }
.footer-col a:hover { color: var(--text); }
.footer-plain li { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }
.footer-nav-grid { display: flex; gap: 48px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-faint);
  flex-wrap: wrap; gap: 12px;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.25s, border-color 0.25s;
}
.footer-socials a:hover { color: var(--text); border-color: var(--border-strong); }
.footer-socials svg { width: 16px; height: 16px; }

/* ============================================================
   SCROLL-REVEAL (JS toggled)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal-stagger].in-view > *,
[data-reveal-stagger] > *.in-view { opacity: 1; transform: translateY(0); }

/* When GSAP is active, kill CSS transitions so they do not fight GSAP transforms */
.has-gsap [data-reveal],
.has-gsap [data-reveal-stagger] > * {
  transition: none !important;
}

/* ---------- Kinetic word-by-word headings ---------- */
[data-kinetic] { overflow: visible; }
.kinetic-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; }
.kinetic-word-inner { display: inline-block; will-change: transform, opacity; }

/* ============================================================
   RESPONSIVE OPTIMIZATIONS
   ============================================================ */

/* Navigation overlay scrim */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  body.nav-open .site-header-wrap {
    pointer-events: auto;
  }
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(14, 14, 16, 0.94);
  }
  .site-header.scrolled {
    background: rgba(10, 10, 11, 0.98);
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    height: 100dvh;
    background: #111114;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 86px 24px 32px;
    gap: 24px;
    border-left: 1px solid var(--border-strong);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
    transition: right 0.35s var(--ease-out);
    z-index: 1000;
    overflow-y: auto;
    pointer-events: auto;
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .main-nav ul a {
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .main-nav ul a:hover {
    color: var(--accent);
  }
  .nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 13px 20px;
  }
  .header-contact-btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
    pointer-events: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .why-card.wide {
    grid-column: span 1;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, minmax(180px, 1fr));
    grid-template-areas:
      "large large"
      "mid   tall"
      "sm1   tall"
      "norm1 norm2";
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 44px;
    --gutter: 18px;
  }

  /* Header on small screens */
  .site-header-wrap {
    top: 10px;
    padding: 0 14px;
  }
  .site-header {
    padding: 6px 6px 6px 14px;
    gap: 10px;
    border-radius: var(--radius-pill);
  }
  .logo-mark-img {
    height: 36px;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding: 92px var(--gutter) 42px;
    justify-content: flex-end;
  }
  .hero h1 {
    font-size: clamp(28px, 7.8vw, 38px);
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .hero .sub {
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.5;
  }
  .hero .cta-row {
    width: 100%;
  }
  .hero .cta-row .btn {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  /* Logo Marquee */
  .marquee-wrap {
    padding: 16px 0;
  }
  .marquee-track {
    gap: 36px;
  }
  .marquee-track span {
    font-size: 15px;
  }

  /* Section heads */
  .section-head {
    margin-bottom: 32px;
  }
  .section-head h2 {
    font-size: clamp(26px, 7vw, 35px);
    line-height: 1.15;
  }
  .section-head .lead {
    font-size: 14.5px;
    margin-top: 12px;
  }

  /* Our Story */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .story-pill {
    margin-bottom: 14px;
    padding: 6px 16px;
    font-size: 11px;
  }
  .story-title {
    max-width: none;
    font-size: clamp(25px, 6.8vw, 34px);
    line-height: 1.18;
  }
  .story-desc {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Services / Bento Grid */
  .service-intro {
    margin-bottom: 28px;
  }
  .service-intro h3 {
    font-size: 21px;
    line-height: 1.25;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    gap: 14px;
  }
  .bento-card {
    height: 200px;
  }
  .bento-title {
    font-size: 18px;
    padding: 18px 20px 0;
    max-width: 90%;
  }

  /* Tag ticker */
  .ticker-wrap {
    padding: 18px 0;
  }
  .ticker-track span {
    padding: 9px 18px;
    font-size: 13px;
  }

  /* Kinetic CTA */
  .kinetic-cta {
    padding-top: 44px;
    padding-bottom: 36px;
  }
  .kinetic-cta-line {
    font-size: clamp(21px, 5.8vw, 26px);
    margin-bottom: 22px;
  }
  .kinetic-cta .btn {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  /* Why Us */
  .why {
    padding-top: 24px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }
  .why-card {
    padding: 26px 20px;
  }
  .why-card .icon-num {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .why-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Showreel */
  .showreel-frame {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
  }

  /* Process */
  .process-step {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .process-num {
    font-size: 24px;
  }
  .process-body h3 {
    font-size: 17.5px;
    line-height: 1.3;
  }
  .process-body p {
    font-size: 14px;
    margin-top: 8px;
  }

  /* Testimonials */
  .testi-card {
    width: 84vw;
    max-width: 310px;
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }
  .testi-card blockquote {
    font-size: 14.5px;
    min-height: auto;
  }
  .testi-avatar-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  /* Mid-Page CTA */
  .cta-section h2 {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.15;
  }
  .cta-section .sub {
    font-size: 15px;
    margin: 14px auto 26px;
  }
  .cta-section .cta-row .btn {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  /* Contact Form */
  .contact-details {
    margin-top: 24px;
    gap: 14px;
  }
  .contact-details > a,
  .contact-details > span {
    font-size: 14px;
    padding-bottom: 14px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
    padding: 13px 14px;
  }

  /* Floating Contact Buttons (Call + WhatsApp) */
  .float-contact {
    right: 14px;
    bottom: 16px;
    gap: 10px;
    z-index: 250;
  }
  .float-btn {
    width: 46px;
    height: 46px;
  }
  .float-btn svg {
    width: 21px;
    height: 21px;
  }

  /* Footer */
  .footer {
    padding: 44px 0 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-nav-grid {
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================================
   THANK YOU PAGE (thank-you.html) — Simple & Focused
   ============================================================ */
.thankyou-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.thankyou-simple-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
}

.thankyou-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 90vw);
  height: 480px;
  background: radial-gradient(circle, rgba(249, 237, 29, 0.12) 0%, rgba(249, 237, 29, 0.02) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.thankyou-simple-card {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.65);
}

.thankyou-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--on-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px 0;
  box-shadow: 0 0 35px rgba(249, 237, 29, 0.4);
  animation: thankyouBadgePulse 3s ease-in-out infinite;
}

@keyframes thankyouBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(249, 237, 29, 0.35);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 50px rgba(249, 237, 29, 0.55);
  }
}

.thankyou-icon-badge svg {
  width: 34px;
  height: 34px;
  display: block;
}

.thankyou-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1;
  text-align: center;
}

.thankyou-eyebrow::before,
.thankyou-eyebrow::after {
  display: none !important;
  content: none !important;
}

.thankyou-simple-card h1 {
  font-size: clamp(32px, 5vw, 44px);
  color: var(--text);
  line-height: 1.15;
}

.thankyou-simple-card .thankyou-lead {
  margin: 18px auto 0;
  max-width: 480px;
  font-size: clamp(15.5px, 1.8vw, 17.5px);
  color: var(--text-muted);
  line-height: 1.6;
}

.thankyou-simple-card .thankyou-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.thankyou-simple-footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

/* Spinner for submit button */
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.spin {
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
}


