/* ═══════════════════════════════════════════════════
   HERSHEY'S DETAILING V2 — Studio Noir / Purple Edition
   taste-skill: soft-skill + DESIGN_VARIANCE:8 MOTION_INTENSITY:7 VISUAL_DENSITY:2
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Cinematic black palette */
  --void:        #050507;
  --midnight:    #0b0b12;
  --deep:        #0f0f18;
  --surface:     #14141f;
  --card:        #1a1a28;
  --border:      #252532;
  --border-soft: #1a1a26;

  /* Deep luxury purple */
  --purple:      #6d28ff;
  --purple-mid:  #5b1fe0;
  --purple-soft: #9f7aea;
  --purple-pale: #b794f4;
  --purple-glow: rgba(109, 40, 255, 0.18);
  --purple-rim:  rgba(159, 122, 234, 0.28);

  /* Sharp neutrals */
  --white:       #f8f8fa;
  --off-white:   #e4e4ec;
  --silver:      #a1a1aa;
  --muted:       #52525b;

  /* Fonts */
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;

  /* Motion */
  --spring:    cubic-bezier(0.22, 1, 0.36, 1);
  --smooth:    cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 110px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: none; font: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; outline: none; border: none; background: none; }
img, svg { display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--purple-soft);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--spring), height 0.2s var(--spring), background 0.2s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(159, 122, 234, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.08s, top 0.08s, width 0.3s var(--spring), height 0.3s var(--spring), opacity 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 18px; height: 18px; background: var(--purple-pale); }
body:has(a:hover) .cursor-trail,
body:has(button:hover) .cursor-trail { width: 42px; height: 42px; opacity: 0.5; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ── TYPOGRAPHY ── */
em { font-style: italic; color: var(--purple-soft); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 24px;
}
.eyebrow-num {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section-intro { margin-bottom: 64px; }

/* ── CTA BUTTONS ── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: 3px;
  background: var(--purple);
  color: var(--white);
  transition: background 0.3s var(--spring), box-shadow 0.3s var(--spring), transform 0.3s var(--spring);
  cursor: none;
}
.cta-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta-primary:hover {
  background: #7c3aff;
  box-shadow: 0 14px 44px rgba(109, 40, 255, 0.55);
  transform: translateY(-2px);
}
.cta-secondary {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--silver);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
  cursor: none;
}
.cta-secondary:hover { color: var(--purple-pale); border-color: var(--purple-rim); }
.cta-full { width: 100%; justify-content: center; }

/* ══════════════════════════════
   HEADER / NAV
══════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--smooth), border-color 0.4s var(--smooth);
}
.header.scrolled {
  background: rgba(5, 5, 7, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
  max-width: 1360px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: none;
}
.nav-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--purple);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.logo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-item {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.25s;
  cursor: none;
}
.nav-item:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-book {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--purple);
  padding: 9px 20px;
  border-radius: 3px;
  transition: background 0.3s var(--spring), box-shadow 0.3s var(--spring);
  cursor: none;
}
.nav-book svg { width: 14px; height: 14px; }
.nav-book:hover { background: #7c3aff; box-shadow: 0 6px 28px rgba(109,40,255,0.55); }

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  cursor: none;
}
.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--silver);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(5, 5, 7, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 40px 24px;
  transform-origin: top center;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--silver);
  transition: color 0.2s;
  cursor: none;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-cta {
  margin-top: 16px;
  border-bottom: none !important;
  color: var(--purple-soft) !important;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
/* ══════════════════════════════
   HERO — Video Background
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ── Video layer ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(109, 40, 255, 0.07) 0%, transparent 60%),
    rgba(5, 5, 7, 0.52);
}

/*
  Inward vignette — 4 separate directional gradients stacked.
  Each fades from the site background colour (--void) at the edge
  to transparent toward the centre, so the video only "shows through"
  in the middle and melts seamlessly into surrounding sections.
*/
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    /* top edge */
    linear-gradient(to bottom,  var(--void) 0%, transparent 32%),
    /* bottom edge */
    linear-gradient(to top,     var(--void) 0%, transparent 36%),
    /* left edge */
    linear-gradient(to right,   var(--void) 0%, transparent 28%),
    /* right edge */
    linear-gradient(to left,    var(--void) 0%, transparent 28%);
  /* Stack all four independently */
  background-blend-mode: normal;
  pointer-events: none;
  z-index: 1;
}

/* animate-in helper */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s var(--spring) forwards;
  animation-delay: var(--d, 0ms);
  will-change: transform, opacity;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 860px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--purple); }
  50% { box-shadow: 0 0 22px var(--purple), 0 0 40px rgba(109,40,255,0.4); }
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.h1-line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(38px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55);
}
.h1-line--sub {
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(248, 248, 250, 0.65);
  text-shadow: none;
  white-space: nowrap;
}
.h1-guaranteed {
  font-style: normal;
  color: var(--purple-pale);
  text-shadow:
    0 0 16px rgba(109, 40, 255, 0.5),
    0 0 32px rgba(109, 40, 255, 0.18);
}
/* unused modifiers kept for safety */
.h1-line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--purple-soft);
}
.h1-line--outline {
  -webkit-text-stroke: 1.5px rgba(159, 122, 234, 0.7);
  color: transparent;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--off-white);
  max-width: 480px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 40px;
  max-width: 600px;
  width: 100%;
  margin-top: 56px;
  border-top: 1px solid rgba(159,122,234,0.18);
}
.meta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-val {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--purple-pale);
  line-height: 1;
}
.meta-key {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 40px;
  flex-shrink: 0;
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  will-change: transform;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 28px;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-shift, 50%))); }
}
.marquee-inner span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-inner .mx {
  color: var(--purple-mid);
  font-size: 8px;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--void);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0;
  padding: 40px 40px 32px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--midnight);
  transition: background 0.3s var(--smooth);
  position: relative;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--deep); }
.svc-row--featured {
  background: var(--surface);
  border-left: 3px solid var(--purple);
}
.svc-row--featured:hover { background: #120c20; }

.svc-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-right: 40px;
}

.svc-visual {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--spring);
}
.svc-row:hover .svc-visual { transform: scale(1.04); }

.svc-visual--1 {
  background: linear-gradient(135deg, #08070f 0%, #180d36 60%, #060508 100%);
}
.svc-visual--2 {
  background: linear-gradient(135deg, #070710 0%, #140b2e 60%, #050507 100%);
}
.svc-visual--3 {
  background: linear-gradient(135deg, #0e0630 0%, #26146a 60%, #080610 100%);
}
.svc-visual--4 {
  background: linear-gradient(135deg, #0a0a18 0%, #1c0e42 60%, #060608 100%);
}
.svc-visual--5 {
  background: linear-gradient(135deg, #070710 0%, #180e38 60%, #050508 100%);
}

/* Shimmer overlay on svc visuals */
.svc-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(109,40,255,0.07) 50%,
    transparent 70%
  );
}

.svc-idx {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--purple-soft);
  flex-shrink: 0;
  margin-top: 3px;
}
.svc-badge {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--purple-soft);
  padding: 4px 10px;
  border-radius: 2px;
  position: absolute;
  top: 20px;
  right: 210px;
}
.svc-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-info p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--silver);
  max-width: 520px;
}
.svc-tags {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-right: 0;
  align-items: center;
}
.svc-btn {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  margin-left: 32px;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-tags span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.svc-row:hover .svc-tags span { border-color: var(--purple-rim); color: var(--silver); }

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process {
  padding: 120px 0;
  background: var(--midnight);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
}
.step {
  padding: 40px 32px;
  background: var(--deep);
  border-right: 1px solid var(--border-soft);
  position: relative;
  transition: background 0.3s;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--surface); }

.step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.step:hover .step-num { color: var(--purple-mid); }

.step-body h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-body p {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(255,255,255,0.7);
}
.step-line {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 2px;
  height: 32px;
  background: var(--purple-mid);
  transform: translateY(-50%);
  display: none;
}
.step:hover .step-line { display: block; }
.step-line--last { display: none !important; }

/* ══════════════════════════════
   WORK / GALLERY
══════════════════════════════ */
.work {
  padding: 120px 0 0;
  background: var(--void);
}

.work-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 280px;
  gap: 3px;
  background: var(--border-soft);
}
.work-card { overflow: hidden; position: relative; cursor: none; }
.work-card--hero { grid-column: span 2; }
.work-card--wide { grid-column: span 2; }

.work-visual {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--spring);
  position: relative;
}
.work-card:hover .work-visual { transform: scale(1.04); }

/* Cinematic purple-tinted visuals */
.wv-1 {
  background:
    radial-gradient(ellipse 60% 70% at 30% 40%, rgba(124,58,237,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 75% 70%, rgba(200,180,140,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #08050f 0%, #14082a 50%, #080510 100%);
}
.wv-2 {
  background:
    radial-gradient(ellipse 70% 60% at 60% 35%, rgba(109,40,217,0.2) 0%, transparent 55%),
    linear-gradient(135deg, #06040e 0%, #100820 50%, #060610 100%);
}
.wv-3 {
  background:
    radial-gradient(ellipse 60% 60% at 40% 60%, rgba(139,92,246,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #070510 0%, #120a24 50%, #060408 100%);
}
.wv-4 {
  background:
    radial-gradient(ellipse 55% 80% at 25% 50%, rgba(124,58,237,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 80% 50%, rgba(200,180,160,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #060408 0%, #0e0820 55%, #060406 100%);
}
.wv-5 {
  background:
    radial-gradient(ellipse 65% 55% at 50% 35%, rgba(109,40,217,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #06040e 0%, #100826 50%, #060408 100%);
}

.work-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,5,14,0.9) 0%, transparent 55%);
  z-index: 1;
}

.work-beam {
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(167,139,250,0.06) 45%,
    rgba(167,139,250,0.1) 50%,
    rgba(167,139,250,0.06) 55%,
    transparent 100%
  );
  z-index: 2;
  transition: left 0.8s var(--spring);
}
.work-card:hover .work-beam { left: 130%; }

.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.work-labels { display: flex; flex-direction: column; gap: 4px; }
.work-service {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-soft);
}
.work-vehicle {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
}
.work-stat {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--purple-pale);
  white-space: nowrap;
}

/* ══════════════════════════════
   STUDIO / WHY
══════════════════════════════ */
.studio {
  padding: 120px 0;
  background: var(--deep);
  border-top: 1px solid var(--border-soft);
}
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.studio-left { position: sticky; top: 110px; }
.studio-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 440px;
}

/* Koch Chemie cert badge */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(14,14,22,0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.cert-badge:hover {
  border-color: var(--purple-rim);
  box-shadow: 0 6px 24px rgba(109,40,255,0.1);
}
.cert-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  color: var(--purple-soft);
  display: flex; align-items: center; justify-content: center;
}
.cert-icon svg { width: 100%; height: 100%; }
.cert-kc-logo {
  width: 52px; height: 52px;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}
.cert-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cert-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.cert-brand {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Hero cert badge */
.hero-cert-badge {
  margin-top: 0;
}

.studio-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  overflow: hidden;
}
.studio-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 28px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
  transition: background 0.3s;
}
.studio-feat:last-child { border-bottom: none; }
.studio-feat:hover { background: var(--card); }

.feat-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--purple-soft);
  margin-top: 2px;
}
.feat-icon svg { width: 100%; height: 100%; }
.studio-feat h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.studio-feat p {
  font-size: 13px;
  line-height: 1.72;
  color: var(--silver);
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--void);
  border-top: 1px solid var(--border-soft);
}
.featured-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: 6px;
  padding: 48px 56px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.featured-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 36px;
  font-family: var(--serif);
  font-size: 160px;
  font-weight: 900;
  color: var(--purple);
  opacity: 0.06;
  line-height: 1;
}
.fq-stars {
  font-size: 14px;
  color: var(--purple-soft);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.fq-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--off-white);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.fq-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.fq-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.fq-name { display: block; font-size: 14px; font-weight: 500; color: var(--white); }
.fq-vehicle { display: block; font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }

.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.review-card {
  background: var(--midnight);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s var(--spring);
}
.review-card:hover { border-color: var(--purple-rim); transform: translateY(-3px); }
.rc-stars { font-size: 12px; color: var(--purple-soft); letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.88); font-style: italic; font-family: var(--serif); margin-bottom: 18px; }
.rc-author { display: flex; flex-direction: column; gap: 3px; }
.rc-name { font-size: 13px; font-weight: 500; color: var(--white); }
.rc-vehicle { font-size: 11px; color: rgba(255,255,255,0.6); }

/* ══════════════════════════════
   BOOKING
══════════════════════════════ */
.booking {
  position: relative;
  padding: 120px 0;
  background: var(--midnight);
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bk-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.bk-orb--1 {
  width: 600px; height: 600px;
  top: -180px; right: -100px;
  background: radial-gradient(circle, rgba(109,40,255,0.16) 0%, transparent 65%);
}
.bk-orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle, rgba(91,31,224,0.12) 0%, transparent 65%);
}
.bk-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109,40,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.booking-cta-block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.bk-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}
.bk-contact-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.bk-sep {
  color: var(--border);
  font-size: 12px;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.booking-h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.booking-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--silver);
  max-width: 460px;
}
.booking-contact { display: flex; flex-direction: column; gap: 12px; }
.bk-link, .bk-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--silver);
  transition: color 0.25s;
  cursor: none;
}
.bk-link svg, .bk-hours svg { width: 15px; height: 15px; color: var(--purple-soft); flex-shrink: 0; }
.bk-link:hover { color: var(--purple-pale); }

.bk-form {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-field { display: flex; flex-direction: column; gap: 7px; }
.bk-field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-field input,
.bk-field select,
.bk-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.bk-field input::placeholder,
.bk-field textarea::placeholder { color: var(--muted); }
.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
  border-color: var(--purple-rim);
  box-shadow: 0 0 0 3px rgba(109,40,255,0.14);
}
.bk-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a4d78' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: none;
}
.bk-field select option { background: var(--deep); }
.bk-field textarea { resize: vertical; min-height: 88px; }
.bk-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--void);
  border-top: 1px solid var(--border-soft);
  padding-top: 64px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-soft);
}
.ft-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}
.ft-socials { display: flex; gap: 8px; }
.ft-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  cursor: none;
}
.ft-socials a svg { width: 15px; height: 15px; }
.ft-socials a:hover { color: var(--purple-soft); border-color: var(--purple-rim); background: var(--purple-glow); }

.ft-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col h5 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.ft-col a, .ft-col span {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  cursor: none;
}
.ft-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .step:nth-child(even) { border-right: none; }
  .studio-grid { grid-template-columns: 1fr; gap: 52px; }
  .studio-left { position: static; }
  .booking-layout { grid-template-columns: 1fr; gap: 52px; }
  .work-grid { grid-template-rows: 280px 220px; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
  a, button { cursor: pointer; }

  .container { padding: 0 20px; }
  .nav-center, .nav-book { display: none; }
  .burger { display: flex; }
  .nav { padding: 0 20px; }

  .hero-content { padding: 0 20px; }
  .hero-meta { padding: 24px 20px; flex-wrap: wrap; gap: 20px; }
  .meta-divider { display: none; }
  .meta-item { flex: none; width: calc(50% - 10px); }

  .hero-bottom { align-items: center; gap: 24px; }

  .svc-row { grid-template-columns: 1fr; }
  .svc-left { padding-right: 0; }
  .svc-badge { right: 20px; }
  .svc-btn { grid-column: 1; grid-row: auto; margin-left: 0; margin-top: 20px; align-self: start; }
  .svc-row { padding-bottom: 28px; }

  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; }

  .work-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work-card--hero, .work-card--wide { grid-column: span 1; }
  .work-visual { height: 220px !important; }

  .reviews-row { grid-template-columns: 1fr; }
  .featured-quote { padding: 32px 24px; }

  .bk-row { grid-template-columns: 1fr; }
  .bk-form { padding: 24px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .ft-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .services { padding: 80px 0; }
  .process { padding: 80px 0; }
  .work { padding: 80px 0 0; }
  .studio { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .booking { padding: 80px 0; }
}

/* ══════════════════════════════
   MOBILE PERF — ≤ 768px
   Shorter durations + simpler easing so the browser
   doesn't struggle to interpolate spring curves on mobile CPUs.
══════════════════════════════ */
@media (max-width: 768px) {
  /* Force hero video onto its own GPU layer */
  .hero-video {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  /* Snap fade-up: no translate, opacity-only — cheapest possible paint */
  .fade-up {
    transform: none;
    animation: fadeUpMobile 0.45s ease-out forwards;
    animation-delay: var(--d, 0ms);
  }
  @keyframes fadeUpMobile {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Simpler reveal transition */
  .reveal {
    transform: none;
    transition: opacity 0.45s ease-out;
  }
  .reveal.visible { transform: none; }

  /* Kill continuous pulse glow — expensive on low-end phones */
  .kicker-dot { animation: none; }

  /* Reduce button transition complexity */
  .cta-primary {
    transition: background 0.2s, box-shadow 0.2s;
  }
}

/* ══════════════════════════════
   MOBILE HERO — ≤ 640px
══════════════════════════════ */
@media (max-width: 640px) {

  /* ── Safe-area nav ── */
  :root { --nav-h: 72px; }
  .header { padding-top: env(safe-area-inset-top, 0px); }
  .nav {
    height: var(--nav-h);
    padding: 0 20px;
    align-items: center;
  }
  .nav-logo-img { height: 60px; }

  /* ── Hero shell ── */
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    justify-content: center;
  }

  /* Lighter overlay — let video breathe on smaller screens */
  .hero-tint {
    background:
      linear-gradient(160deg, rgba(109,40,255,0.06) 0%, transparent 55%),
      rgba(5, 5, 7, 0.44);
  }

  /* Remove vignette on mobile — gradients show as black bars on small screens */
  .hero-vignette { display: none; }

  /* ── Hero content ── */
  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    gap: 8px;
  }

  .hero-h1 {
    gap: 8px;
    margin-bottom: 24px;
  }

  /* Allow wrapping on mobile — no nowrap */
  .h1-line,
  .h1-line--sub { white-space: normal; }

  .h1-line {
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }
  .h1-line--sub {
    font-size: clamp(16px, 4.6vw, 24px);
    letter-spacing: 0.03em;
    line-height: 1.4;
  }

  /* ── Hero bottom ── */
  .hero-bottom { gap: 20px; }

  .hero-desc {
    font-size: 14px;
    line-height: 1.65;
    max-width: 100%;
    color: rgba(248,248,250,0.75);
  }

  /* CTA: primary full-width, secondary centred below */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero-ctas .cta-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }
  .hero-ctas .cta-secondary {
    text-align: center;
    font-size: 13px;
    padding: 4px 0;
    border: none;
    color: rgba(248,248,250,0.5);
  }
  .hero-ctas .cta-secondary:hover { color: var(--purple-pale); }

  /* ── Stats bar — 3 equal columns ── */
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 20px 24px;
    margin-top: 28px;
    max-width: 100%;
    border-top: 1px solid rgba(159,122,234,0.14);
  }
  .meta-item {
    flex: unset;
    width: auto;
    align-items: center;
    text-align: center;
  }
  .meta-val  { font-size: 22px; }
  .meta-key  { font-size: 9px; letter-spacing: 0.12em; }
  .meta-divider { display: none; }
}

@media (max-width: 480px) {
  .ft-links { grid-template-columns: 1fr; }
}

/* ── SELECTION / SCROLLBAR ── */
::selection { background: rgba(109,40,255,0.32); color: var(--white); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-mid); }

/* ══════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE PASS v2
   Fills gaps: laptop, tablet, mobile section polish
══════════════════════════════════════════════════ */

/* ── Wide desktop: give text more room to breathe ── */
@media (min-width: 1400px) {
  .container { padding: 0 60px; }
  .studio-grid { gap: 100px; }
  .svc-info p { max-width: 560px; }
}

/* ── 1100px: tight laptop ── */
@media (max-width: 1100px) {
  .studio-grid { gap: 56px; }
  .svc-info p { max-width: 420px; }
}

/* ── 900px: tablet landscape ── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-center { gap: 24px; }
  .featured-quote { padding: 40px 36px; }
  /* Move "Signature Service" badge to top-right corner so it never overlaps text */
  .svc-badge { right: 20px; }
}

/* ── 640px: mobile section polish ──
   (Hero already handled above; this covers all other sections) */
@media (max-width: 640px) {
  /* ─ Section intros ─ */
  .section-intro { margin-bottom: 40px; }

  /* ─ Services ─ */
  .svc-row { padding: 28px 20px 24px; }
  .svc-left { gap: 14px; }
  .svc-info h3 { font-size: 19px; }
  .svc-info p { font-size: 14px; max-width: 100%; }
  .svc-tags { margin-top: 16px; gap: 6px; }
  .svc-tags span { padding: 5px 10px; font-size: 10px; }
  .svc-btn { padding: 13px 22px; font-size: 13px; }

  /* ─ Process ─ */
  .step { padding: 28px 22px; }
  .step-num { font-size: 38px; margin-bottom: 16px; }
  .step-body h4 { font-size: 16px; }
  .step-body p { font-size: 13.5px; }

  /* ─ Studio "Ready to Book?" ─ */
  .studio-feat { padding: 20px; gap: 16px; }
  .studio-feat h4 { font-size: 15px; margin-bottom: 6px; }
  .studio-feat p { font-size: 13px; }
  .studio-body { font-size: 14px; line-height: 1.75; max-width: 100%; }
  .cert-badge { padding: 12px 16px; gap: 10px; }
  .cert-icon { width: 40px; height: 40px; }
  .cert-kc-logo { width: 40px; height: 40px; }
  .cert-brand { font-size: 14px; }

  /* ─ Testimonials ─ */
  .review-card { padding: 22px 20px; }
  .fq-text { font-size: clamp(16px, 4.5vw, 22px); line-height: 1.6; }
  .featured-quote { padding: 28px 22px; }

  /* ─ CTA / Reserve section ─ */
  .booking-h2 { font-size: clamp(40px, 11vw, 60px); }
  .booking-sub { font-size: 14px; line-height: 1.7; }
  .bk-cta-actions { gap: 20px; margin-top: 32px; }
  .bk-contact-strip { flex-direction: column; gap: 10px; align-items: center; }
  .bk-sep { display: none; }
  .bk-link, .bk-hours { font-size: 14px; }

  /* ─ Footer ─ */
  .footer { padding-top: 48px; }
  .footer-top { padding-bottom: 40px; }
  .ft-brand p { font-size: 14px; }
  .ft-col h5 { font-size: 11px; }
  .ft-col a, .ft-col span { font-size: 14px; }
  .footer-bottom { padding: 18px 0; font-size: 12px; }

  /* ─ Mobile nav tap targets ─ */
  .mobile-nav a { padding: 15px 0; font-size: 15px; }
  .mobile-cta { font-size: 15px; }
}

/* ── 480px: very small mobile ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .svc-row { padding: 24px 16px 20px; }
  .step { padding: 24px 16px; }
  .review-card { padding: 20px 16px; }
  .featured-quote { padding: 24px 16px; }
  .services { padding: 64px 0; }
  .process  { padding: 64px 0; }
  .studio   { padding: 64px 0; }
  .testimonials { padding: 64px 0; }
  .booking  { padding: 64px 0; }
  .studio-feat { padding: 18px 16px; gap: 14px; }
  .meta-key { font-size: 8px; }
}

