/* ============================================
   MIRROR FINISH — DESIGN SYSTEM
   ============================================ */

:root {
  --black: #0a0a0a;
  --carbon: #111111;
  --charcoal: #161616;
  --graphite: #1d1d1d;
  --steel: #2a2a2a;
  --ash: #3a3a3a;
  --smoke: #6a6a6a;
  --silver: #c8c8c8;
  --chrome: #e8e8e8;
  --white: #ffffff;
  --accent: #e8e8e8;

  --chrome-gradient: linear-gradient(135deg, #f4f4f4 0%, #c0c0c0 35%, #888 50%, #c0c0c0 65%, #f4f4f4 100%);
  --dark-gradient: linear-gradient(180deg, #0a0a0a 0%, #161616 100%);
  --hero-radial: radial-gradient(ellipse at 50% 40%, rgba(60, 60, 60, 0.45) 0%, rgba(10, 10, 10, 0) 65%);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--chrome);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.005em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  color: inherit;
}

::selection {
  background: var(--chrome);
  color: var(--black);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.display {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.display-md {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--silver);
  font-weight: 300;
  max-width: 60ch;
  line-height: 1.55;
}

/* ============================================
   LAYOUT
   ============================================ */

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

section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

/* ============================================
   NAVBAR
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.nav.scrolled {
  padding: 0.85rem 0;
  background: rgba(10, 10, 10, 0.85);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.logo {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: opacity 0.3s var(--ease-out);
}

.logo:hover { opacity: 0.75; }

.logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--chrome-gradient);
  box-shadow: 0 0 14px rgba(232, 232, 232, 0.35);
}

/* Real logo image — replaces the chrome dot + wordmark when logo.png exists */
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--ease-out);
}
.logo:hover .logo-img { transform: scale(1.05); }
.nav.scrolled .logo-img { height: 40px; }

.logo-fallback {
  display: none; /* shown via inline JS only if logo.png fails to load */
  align-items: center;
  gap: 0.65rem;
}
.logo.no-image .logo-img { display: none !important; }
.logo.no-image .logo-fallback { display: inline-flex !important; }

@media (max-width: 720px) {
  .logo-img { height: 40px; }
  .nav.scrolled .logo-img { height: 36px; }
}

/* Footer logo lockup */
.footer-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  position: relative;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--silver);
  transition: color 0.3s var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--chrome);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--chrome);
  border-radius: 999px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(232, 232, 232, 0.5);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--chrome);
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 21px; }

.nav-toggle.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(78vw, 360px);
    background: var(--carbon);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.5rem; padding: 0.75rem 0; }
  .nav-link::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 1rem; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.1rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--chrome);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(232, 232, 232, 0.35);
}

.btn-primary .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--chrome);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-radial);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(120, 120, 120, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(80, 80, 80, 0.18) 0%, transparent 45%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-streak {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 232, 232, 0.4) 50%, transparent 100%);
  top: -10%;
  bottom: -10%;
  filter: blur(0.5px);
}

.hero-streak.s1 { left: 18%; animation: streak 11s var(--ease-in-out) infinite; }
.hero-streak.s2 { left: 42%; animation: streak 13s var(--ease-in-out) infinite 2s; opacity: 0.6; }
.hero-streak.s3 { right: 28%; animation: streak 15s var(--ease-in-out) infinite 4s; opacity: 0.5; }
.hero-streak.s4 { right: 8%; animation: streak 12s var(--ease-in-out) infinite 1s; opacity: 0.7; }

@keyframes streak {
  0%, 100% { transform: translateY(-5%) scaleY(1); opacity: 0.2; }
  50% { transform: translateY(5%) scaleY(1.1); opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-headline {
  font-size: clamp(3rem, 10vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 14ch;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s var(--ease-out) forwards;
}

.hero-headline .word:nth-child(1) { animation-delay: 0.1s; }
.hero-headline .word:nth-child(2) { animation-delay: 0.25s; }
.hero-headline .word:nth-child(3) { animation-delay: 0.4s; }

.hero-headline .word.chrome {
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--silver);
  font-weight: 300;
  max-width: 44ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: rise 0.9s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s var(--ease-out) 0.75s forwards;
}

.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: var(--gutter);
  right: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  opacity: 0;
  animation: rise 1.2s var(--ease-out) 1s forwards;
  pointer-events: none;
}
.hero-meta > * { pointer-events: auto; }
@media (max-height: 820px), (max-width: 980px) {
  .hero-meta { position: static; margin-top: 3rem; opacity: 1; animation: none; }
  .hero { padding-bottom: 3rem; }
}

.hero-meta-item span {
  display: block;
  color: var(--chrome);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.4rem;
  text-transform: none;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--chrome) 0%, transparent 100%);
  animation: scroll-pulse 2s var(--ease-in-out) infinite;
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0.3); transform-origin: bottom; }
}

@media (max-width: 720px) {
  .hero-meta { display: none; }
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.section-head-text { max-width: 36rem; }

.section-num {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card {
  background: var(--carbon);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-out);
  cursor: default;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.service-card:hover { background: var(--graphite); }
.service-card:hover::before { opacity: 1; }

.service-card .num {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--smoke);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--smoke);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}

.service-card .meta .arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.service-card:hover .meta .arrow {
  background: var(--chrome);
  color: var(--black);
  transform: translateX(4px);
}

/* ============================================
   WHY US
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 2rem;
}

.why-item {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.5rem;
  color: var(--chrome);
}

.why-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.6;
}

/* ============================================
   GALLERY STRIP / GRID
   ============================================ */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 0.6s var(--ease-out);
}

.gallery-tile-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

.gallery-tile:hover .gallery-tile-bg { transform: scale(1.08); }

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.gallery-tile-overlay .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.4rem;
}

.gallery-tile-overlay h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Gallery page grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-grid .gallery-tile:nth-child(4n+1) { aspect-ratio: 4/5; }
.gallery-grid .gallery-tile:nth-child(4n+2) { aspect-ratio: 1; }
.gallery-grid .gallery-tile:nth-child(4n+3) { aspect-ratio: 5/4; }
.gallery-grid .gallery-tile:nth-child(4n) { aspect-ratio: 1; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Gallery placeholder backgrounds — no fake AI cars, abstract reflective surfaces */
.bg-paint-1 { background:
  radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 35%),
  linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 50%, #0a0a0a 100%); }
.bg-paint-2 { background:
  radial-gradient(circle at 70% 50%, rgba(220,220,220,0.12) 0%, transparent 40%),
  linear-gradient(160deg, #181818 0%, #060606 60%, #1a1a1a 100%); }
.bg-paint-3 { background:
  linear-gradient(110deg, #0a0a0a 0%, #2c2c2c 35%, #060606 65%, #1a1a1a 100%); }
.bg-paint-4 { background:
  radial-gradient(ellipse at 20% 80%, rgba(200,200,200,0.1) 0%, transparent 50%),
  linear-gradient(180deg, #0c0c0c 0%, #1d1d1d 100%); }
.bg-paint-5 { background:
  conic-gradient(from 220deg at 60% 40%, #0a0a0a, #2a2a2a, #0a0a0a, #1a1a1a, #0a0a0a); }
.bg-paint-6 { background:
  linear-gradient(45deg, #060606 0%, #222 50%, #060606 100%),
  radial-gradient(circle at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 40%); }
.bg-paint-7 { background:
  radial-gradient(ellipse at 50% 100%, rgba(180,180,180,0.15) 0%, transparent 50%),
  linear-gradient(180deg, #050505 0%, #1c1c1c 100%); }
.bg-paint-8 { background:
  linear-gradient(120deg, #0a0a0a 0%, #1a1a1a 30%, #2e2e2e 50%, #1a1a1a 70%, #0a0a0a 100%); }
.bg-paint-9 { background:
  radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 35%),
  radial-gradient(circle at 20% 80%, rgba(150,150,150,0.08) 0%, transparent 40%),
  #0a0a0a; }

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(80, 80, 80, 0.3) 0%, transparent 60%),
    var(--carbon);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: var(--silver);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.footer h5 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.6rem; }
.footer a {
  font-size: 0.9rem;
  color: var(--silver);
  transition: color 0.3s var(--ease-out);
}
.footer a:hover { color: var(--white); }

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-tag {
  color: var(--smoke);
  font-size: 0.95rem;
  max-width: 28ch;
  font-weight: 300;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--smoke);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
  padding-top: 12rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(60, 60, 60, 0.5) 0%, transparent 55%),
    var(--black);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about-text p {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pillar {
  background: var(--carbon);
  padding: 2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: background 0.4s var(--ease-out);
}

.pillar:hover { background: var(--graphite); }

.pillar-num {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--smoke);
  font-weight: 500;
  min-width: 3rem;
}

.pillar h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pillar p {
  color: var(--smoke);
  font-size: 0.92rem;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4rem;
}

.stat {
  background: var(--carbon);
  padding: 2.5rem;
  text-align: center;
}

.stat-num {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ============================================
   BOOKING FLOW
   ============================================ */

.booking-shell {
  padding-top: 8rem;
  padding-bottom: 6rem;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(60, 60, 60, 0.3) 0%, transparent 60%),
    var(--black);
}

.progress-rail {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

.progress-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--smoke);
  transition: all 0.4s var(--ease-out);
  flex-shrink: 0;
}

.progress-step.active .progress-dot {
  background: var(--chrome);
  color: var(--black);
  border-color: var(--chrome);
  box-shadow: 0 0 0 4px rgba(232, 232, 232, 0.12);
}

.progress-step.done .progress-dot {
  background: var(--ash);
  color: var(--chrome);
  border-color: var(--ash);
}

.progress-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.progress-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--chrome);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.progress-step.done + .progress-line::after { transform: scaleX(1); }

.progress-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .progress-label { display: none; }
}

.booking-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.booking-step.active {
  display: block;
  animation: stepIn 0.6s var(--ease-out) forwards;
}

@keyframes stepIn {
  to { opacity: 1; transform: translateY(0); }
}

.step-head {
  margin-bottom: 3rem;
}

.step-head .eyebrow { margin-bottom: 0.75rem; }

.step-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.step-head p {
  color: var(--silver);
  font-size: 1rem;
  font-weight: 300;
  max-width: 50ch;
}

/* Selectable grid (vehicles, packages, extras) */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.option-card {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.75rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
}

.option-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 232, 232, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.option-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.option-card:hover::before { opacity: 1; }

.option-card.selected {
  border-color: var(--chrome);
  background: var(--graphite);
  box-shadow: 0 18px 40px -20px rgba(232, 232, 232, 0.25);
}

.option-card .icon {
  width: 56px;
  height: 28px;
  margin-bottom: 1.25rem;
  color: var(--chrome);
}

.option-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.option-card .desc {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.5;
}

.option-card .price {
  font-size: 0.85rem;
  color: var(--chrome);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-card .check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--chrome);
  color: var(--black);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s var(--ease-out);
}

.option-card.selected .check { opacity: 1; transform: scale(1); }

/* Packages — wider format */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.package-card {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.25rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 360px;
}

.package-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.package-card.selected {
  border-color: var(--chrome);
  background: var(--graphite);
  box-shadow: 0 24px 50px -20px rgba(232, 232, 232, 0.25);
}

.package-card .check {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--chrome);
  color: var(--black);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s var(--ease-out);
}

.package-card.selected .check { opacity: 1; transform: scale(1); }

.package-card .tier {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 500;
}

.package-card h3 {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.package-card .price-line {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.package-card .price-line span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--smoke);
  margin-left: 0.5rem;
}

.package-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.package-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--silver);
}

.package-card li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--chrome);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 500;
}

.form-field label .req { color: var(--chrome); }

.form-field input,
.form-field textarea {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  color: var(--white);
  border-radius: 4px;
  outline: none;
  transition: all 0.3s var(--ease-out);
  width: 100%;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--chrome);
  background: var(--graphite);
  box-shadow: 0 0 0 4px rgba(232, 232, 232, 0.06);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ash);
}

.form-field.error input,
.form-field.error textarea {
  border-color: #d46a6a;
}

.form-field .error-msg {
  font-size: 0.75rem;
  color: #d46a6a;
  display: none;
}

.form-field.error .error-msg { display: block; }

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* Step nav */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
  flex-wrap: wrap;
}

.step-summary {
  font-size: 0.8rem;
  color: var(--smoke);
  letter-spacing: 0.05em;
}

.step-summary strong {
  color: var(--chrome);
  font-weight: 500;
}

.step-actions {
  display: flex;
  gap: 0.75rem;
}

/* Confirmation */
.confirm {
  text-align: center;
  padding: 3rem 0;
}

.confirm-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  background: var(--graphite);
  border: 1px solid rgba(232, 232, 232, 0.2);
  display: grid;
  place-items: center;
  position: relative;
  animation: pop 0.7s var(--ease-out);
}

.confirm-mark::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(232, 232, 232, 0.1);
  animation: ping 2s var(--ease-out) infinite;
}

@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes ping {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.confirm-mark svg { color: var(--chrome); width: 36px; height: 36px; }

.confirm h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.confirm p {
  color: var(--silver);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 44ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.confirm-summary {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.75rem;
  margin: 0 auto 2.5rem;
  max-width: 480px;
  text-align: left;
}

.confirm-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.confirm-summary-row:last-child { border-bottom: none; }

.confirm-summary-row .label {
  color: var(--smoke);
  letter-spacing: 0.05em;
}

.confirm-summary-row .value {
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   MOBILE-FIRST POLISH
   ============================================ */

/* Kill the blue tap flash, snappier touch */
* { -webkit-tap-highlight-color: transparent; }
button, a, .option-card, .package-card, .gallery-tile { touch-action: manipulation; }

/* Prevent iOS auto-zoom on input focus (needs 16px min) */
.form-field input, .form-field textarea, .form-field select { font-size: 16px; }

/* Honor safe-area on notched phones */
@supports (padding: max(0px)) {
  .nav-inner {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
  }
}

/* Don't fire hover styles on touch devices */
@media (hover: none) {
  .service-card:hover { background: var(--carbon); }
  .service-card:hover::before { opacity: 0; }
  .gallery-tile-overlay { opacity: 1; } /* always show captions on touch */
  .gallery-tile:hover .gallery-tile-bg { transform: none; }
  .nav-link::after { display: none; }
  .btn-primary:hover { transform: none; box-shadow: none; }
  .option-card:hover, .package-card:hover { transform: none; }
}

/* ===== Tablet & phone ===== */
@media (max-width: 860px) {
  section { padding: 4.5rem 0; }
  .section-head { margin-bottom: 2.5rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  /* Tighter rhythm */
  section { padding: 3.5rem 0; }
  .hero { min-height: 88vh; padding-top: 5.5rem; padding-bottom: 3rem; }

  /* Hero scaled down */
  .hero-headline { margin-bottom: 1.25rem; }
  .hero-sub { margin-bottom: 1.75rem; font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; padding: 1rem 1.25rem; font-size: 0.78rem; }

  /* Service cards trimmer */
  .service-card { min-height: auto; padding: 2rem 1.5rem; }
  .service-card h3 { font-size: 1.35rem; }

  /* Gallery preview becomes a horizontal swipe rail (native iOS feel) */
  .gallery-strip {
    grid-template-columns: repeat(4, 72vw);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 0 var(--gutter) 1rem;
    margin: 0 calc(-1 * var(--gutter));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-strip::-webkit-scrollbar { display: none; }
  .gallery-strip .gallery-tile { scroll-snap-align: start; }

  /* Booking — tighter shell, room for mobile CTA */
  .booking-shell { padding-top: 6rem; padding-bottom: 7rem; }
  .progress-rail { margin-bottom: 2rem; gap: 0.35rem; }
  .progress-dot { width: 24px; height: 24px; font-size: 0.7rem; }
  .step-head { margin-bottom: 2rem; }
  .step-head h2 { font-size: 1.85rem; }
  .step-head p { font-size: 0.95rem; }

  /* Vehicle + extras: 2 cols on mobile (better than stacked) */
  .option-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .option-card { padding: 1.25rem 1rem; min-height: 140px; }
  .option-card .icon { width: 44px; height: 22px; margin-bottom: 0.85rem; }
  .option-card h3 { font-size: 0.95rem; }
  .option-card .desc { font-size: 0.75rem; line-height: 1.4; }
  .option-card .price { font-size: 0.75rem; padding-top: 0.75rem; margin-top: 0.75rem; }
  .option-card .check { width: 18px; height: 18px; font-size: 0.7rem; top: 0.6rem; right: 0.6rem; }

  /* Packages stay full-width — easier to read on phone */
  .package-grid { gap: 1rem; }
  .package-card { padding: 1.75rem; min-height: auto; gap: 1.25rem; }
  .package-card h3 { font-size: 1.6rem; }

  /* Step nav: full-width buttons stacked-ish */
  .step-nav {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 1rem;
  }
  .step-summary { text-align: center; }
  .step-actions { width: 100%; }
  .step-actions .btn { flex: 1; padding: 1.05rem; font-size: 0.78rem; }

  /* Form cleaner */
  .form-field input, .form-field textarea { padding: 0.95rem 1rem; }

  /* Footer — extra bottom room because mobile CTA bar floats over */
  .footer { padding: 3rem 0 1.5rem; }
  body.has-mobile-cta .footer { padding-bottom: 6rem; }
}

/* ===== Small phones (iPhone SE etc.) ===== */
@media (max-width: 380px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .option-grid { grid-template-columns: 1fr; }
  .progress-dot { width: 22px; height: 22px; font-size: 0.65rem; }
}

/* ============================================
   MOBILE STICKY CTA (bottom action bar)
   ============================================ */

.mobile-cta { display: none; }

@media (max-width: 720px) {
  body.has-mobile-cta .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 0.55rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 95;
    animation: ctaUp 0.6s var(--ease-out) 0.4s backwards;
  }

  @keyframes ctaUp {
    from { transform: translateY(110%); }
    to   { transform: translateY(0); }
  }

  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: transform 0.3s var(--ease-out);
  }
  .mobile-cta-btn:active { transform: scale(0.97); }

  .mobile-cta-btn.primary { background: var(--chrome); color: var(--black); }
  .mobile-cta-btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--chrome);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-cta-btn svg { width: 14px; height: 14px; }
}

/* ============================================
   HERO 3D LOGO
   ============================================ */

.hero-content {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-content.no-logo { grid-template-columns: 1fr; }
.hero-content.no-logo .hero-logo { display: none; }

.hero-text { max-width: 38rem; }

.hero-logo {
  position: relative;
  perspective: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo-3d-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,220,220,0.18) 0%, rgba(120,120,120,0.05) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.logo-3d-float {
  position: relative;
  z-index: 1;
  width: clamp(220px, 28vw, 360px);
  height: clamp(220px, 28vw, 360px);
  animation: logoFloat 7s ease-in-out infinite;
  transform-style: preserve-3d;
  opacity: 0;
  animation: logoFloat 7s ease-in-out infinite, logoEnter 1.2s var(--ease-out) 0.4s forwards;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes logoEnter {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.logo-3d-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  filter:
    drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 60px rgba(200, 200, 200, 0.18));
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.logo-3d-float::before {
  /* chrome rim highlight */
  content: '';
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background: conic-gradient(from 220deg,
    transparent 0deg,
    rgba(232,232,232,0.4) 90deg,
    transparent 180deg,
    rgba(232,232,232,0.2) 270deg,
    transparent 360deg);
  filter: blur(8px);
  opacity: 0.5;
  z-index: -1;
  animation: rimSpin 12s linear infinite;
}

@keyframes rimSpin { to { transform: rotate(360deg); } }

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-logo { order: -1; height: auto; min-height: 180px; }
  .logo-3d-float { width: 200px; height: 200px; }
}

@media (max-width: 720px) {
  .logo-3d-float { width: 160px; height: 160px; }
}

/* ============================================
   CUSTOM CURSOR (desktop only)
   ============================================ */

.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  top: 0; left: 0;
  will-change: transform;
  transform: translate3d(-100px, -100px, 0);
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--chrome);
  margin: -2.5px 0 0 -2.5px;
  box-shadow: 0 0 8px rgba(232, 232, 232, 0.6);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 232, 232, 0.5);
  margin: -18px 0 0 -18px;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              margin 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
              background 0.3s var(--ease-out), opacity 0.3s ease;
}
.cursor-ring.hover {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: rgba(232, 232, 232, 0.85);
  background: rgba(232, 232, 232, 0.04);
}
.cursor-ring.click { transform: translate3d(var(--rx, 0px), var(--ry, 0px), 0) scale(0.85); }

@media (hover: none), (pointer: coarse), (max-width: 720px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--chrome-gradient);
  width: 0;
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(232, 232, 232, 0.5);
  transition: width 0.08s linear;
}

/* ============================================
   BEFORE / AFTER COMPARISON SLIDER
   ============================================ */

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--carbon);
  --split: 50%;
}

.ba-image {
  position: absolute;
  inset: 0;
}
.ba-image > div { width: 100%; height: 100%; }

.ba-image.ba-after {
  clip-path: polygon(var(--split) 0, 100% 0, 100% 100%, var(--split) 100%);
}

.ba-label {
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chrome);
  background: rgba(10, 10, 10, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  pointer-events: none;
  font-weight: 600;
}
.ba-image.ba-before .ba-label { left: 1.5rem; }
.ba-image.ba-after  .ba-label { right: 1.5rem; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 1px;
  background: var(--chrome);
  pointer-events: none;
  box-shadow: 0 0 14px rgba(232, 232, 232, 0.6);
  transform: translateX(-0.5px);
}
.ba-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--chrome);
  color: var(--black);
  display: grid;
  place-items: center;
  pointer-events: auto;
  cursor: ew-resize;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), 0 0 0 5px rgba(232, 232, 232, 0.15);
  transition: transform 0.3s var(--ease-out);
}
.ba-slider:hover .ba-handle-grip { transform: translate(-50%, -50%) scale(1.08); }

.ba-handle-grip svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 720px) {
  .ba-label { font-size: 0.6rem; padding: 0.4rem 0.75rem; bottom: 1rem; }
  .ba-image.ba-before .ba-label { left: 1rem; }
  .ba-image.ba-after  .ba-label { right: 1rem; }
  .ba-handle-grip { width: 44px; height: 44px; }
}

/* ============================================
   SPARKLE / CONFETTI
   ============================================ */

.sparkle {
  position: fixed;
  background: var(--chrome);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(232, 232, 232, 0.9);
  pointer-events: none;
  z-index: 1000;
  animation: sparkleBurst 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes sparkleBurst {
  0%   { transform: translate(0, 0) scale(0); opacity: 0; }
  15%  { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* ============================================
   TOAST NOTIFICATIONS
   (encouraging popups on selection)
   ============================================ */

.mf-toast {
  position: fixed;
  top: 5.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(18, 18, 18, 0.88);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
          backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(232, 232, 232, 0.14);
  padding: 0.95rem 1.2rem 0.95rem 1rem;
  border-radius: 14px;
  box-shadow:
    0 24px 60px -10px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(232, 232, 232, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 290px;
  max-width: 380px;
  opacity: 0;
  transform: translate3d(60px, 0, 0) scale(0.85);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  overflow: hidden;
}

.mf-toast.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.mf-toast.out {
  opacity: 0;
  transform: translate3d(60px, 0, 0) scale(0.92);
  transition:
    opacity 0.35s ease-in,
    transform 0.4s cubic-bezier(0.55, 0, 0.85, 0.4);
}

/* Subtle chrome rim that fades in after the toast lands */
.mf-toast::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(232, 232, 232, 0.55) 0%,
    transparent 35%,
    transparent 70%,
    rgba(232, 232, 232, 0.25) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out) 0.25s;
}
.mf-toast.in::before { opacity: 1; }

/* Sweeping chrome shine that runs once on entrance */
.mf-toast::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60%;
  left: -60%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(232, 232, 232, 0.18) 50%,
    transparent 100%);
  pointer-events: none;
  transform: skewX(-15deg);
}
.mf-toast.in::after {
  animation: toastSheen 1.4s var(--ease-out) 0.3s 1 forwards;
}
@keyframes toastSheen {
  to { left: 120%; }
}

.mf-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--chrome-gradient);
  color: var(--black);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(232, 232, 232, 0.08), 0 6px 16px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}
.mf-toast.in .mf-toast-icon {
  animation: toastIconPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s backwards;
}
@keyframes toastIconPop {
  from { transform: scale(0) rotate(-90deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

.mf-toast-icon svg {
  width: 18px;
  height: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mf-toast-text {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.mf-toast-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.mf-toast-body {
  font-size: 0.78rem;
  color: var(--silver);
  line-height: 1.4;
  font-weight: 400;
}

/* Mobile: drop in from the top instead of the right */
@media (max-width: 720px) {
  .mf-toast {
    top: 4.75rem;
    left: 1rem;
    right: 1rem;
    min-width: 0;
    max-width: none;
    transform: translate3d(0, -30px, 0) scale(0.92);
  }
  .mf-toast.in  { transform: translate3d(0, 0, 0) scale(1); }
  .mf-toast.out { transform: translate3d(0, -30px, 0) scale(0.92); }
}

/* ====================================================
   GOLD BRAND PALETTE  (added v3 — matches new logo)
   ==================================================== */
:root {
  --gold:        #c8a96e;
  --gold-light:  #f0d898;
  --gold-dark:   #8a7a60;
  --cream:       #e8e0d0;
  --gold-glow:   rgba(200, 169, 110, 0.25);
  --hex-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23c8a96e' stroke-opacity='0.06' stroke-width='1'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z'/%3E%3Cpath d='M28 50 L56 66 L56 100 L28 116 L0 100 L0 66 Z'/%3E%3C/g%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--black); }

.gold { color: var(--gold); }
.cream { color: var(--cream); }

.bg-hex {
  position: relative;
}
.bg-hex::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hex-pattern);
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: lighten;
}
.bg-hex > * { position: relative; }

/* ====================================================
   TOP DISCOUNT BAR
   ==================================================== */
.discount-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  background: linear-gradient(90deg, #14100b 0%, #2a1f0f 50%, #14100b 100%);
  border-bottom: 1px solid rgba(200, 169, 110, 0.28);
  padding: 0.65rem 3rem;
  font-size: 0.78rem;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  overflow: hidden;
}
.discount-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.discount-bar-tag {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.discount-bar a {
  color: var(--gold-light);
  font-weight: 700;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.3s ease, gap 0.3s ease;
}
.discount-bar a:hover { opacity: 0.85; gap: 0.6rem; }
.discount-bar-close {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.discount-bar-close:hover { opacity: 1; background: rgba(200, 169, 110, 0.08); }

body.has-discount .nav { top: 42px; }
body.has-discount .hero { padding-top: 7rem; }
body.discount-dismissed .discount-bar { display: none; }
body.discount-dismissed .nav { top: 0; }
body.discount-dismissed .hero { padding-top: 6rem; }

@media (max-width: 720px) {
  .discount-bar { font-size: 0.65rem; padding: 0.55rem 2.5rem; gap: 0.5rem; flex-wrap: nowrap; }
  .discount-bar-tag { font-size: 0.5rem; padding: 0.14rem 0.45rem; letter-spacing: 0.12em; }
  body.has-discount .nav { top: 50px; }
  body.has-discount .hero { padding-top: 8rem; }
}

/* ====================================================
   NAVBAR — wordmark refresh
   ==================================================== */
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo-wordmark {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.36em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 2px;
}
.logo:hover .logo-sub { color: var(--gold-light); }

@media (max-width: 720px) {
  .logo-wordmark { font-size: 0.92rem; letter-spacing: 0.28em; }
  .logo-sub { font-size: 0.52rem; letter-spacing: 0.26em; }
}

/* ====================================================
   NAVBAR CALL BUTTON
   ==================================================== */
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 999px;
  background: rgba(200, 169, 110, 0.04);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.nav-call:hover {
  background: rgba(200, 169, 110, 0.14);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 22px rgba(200, 169, 110, 0.2);
  transform: translateY(-1px);
}
.nav-call svg {
  width: 13px;
  height: 13px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}
@media (max-width: 980px) {
  .nav-call .nav-call-num { display: none; }
  .nav-call { padding: 0.6rem 0.75rem; }
}
@media (max-width: 860px) {
  /* mobile menu styles already cover layout — restyle nav-call inside slide-out */
  .nav-links .nav-call {
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .nav-links .nav-call .nav-call-num { display: inline; }
}

/* ====================================================
   FULL EMBEDDED LOGO SVG (hero / promo)
   ==================================================== */
.mf-logo-full {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.mf-logo-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}
.mf-logo-full > * { position: relative; z-index: 1; }

.mf-rule {
  width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.mf-rule.thin { width: 200px; opacity: 0.3; margin-top: 0.5rem; }

.mf-wordmark-big {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.42em;
  color: var(--cream);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 1rem 0 0.5rem;
}
.mf-wordmark-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.6rem;
  opacity: 0.85;
}
.mf-sublabel {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-top: 0.5rem;
  text-align: center;
}

.mf-car-stage {
  position: relative;
  width: 100%;
  height: 165px;
}
.mf-car-svg { width: 100%; height: 100%; display: block; }

@keyframes mfDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.mf-car-body-group { animation: mfDrift 4.5s ease-in-out infinite; }

@keyframes mfDrlPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.mf-drl { animation: mfDrlPulse 2.8s ease-in-out infinite; }

@keyframes mfShine {
  0%   { opacity: 0; transform: translateX(-120px) skewX(-15deg); }
  20%  { opacity: 1; }
  70%  { opacity: 0; }
  100% { opacity: 0; transform: translateX(500px) skewX(-15deg); }
}
.mf-shine { animation: mfShine 5s ease-in-out infinite 1.5s; }

@keyframes mfGroundGlow {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.55; }
}
.mf-ground-glow { animation: mfGroundGlow 4.5s ease-in-out infinite; }

@keyframes mfSparkle {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  50%      { opacity: 1; transform: scale(1); }
}
.mf-s1 { animation: mfSparkle 3s ease-in-out infinite 0s; transform-origin: center; transform-box: fill-box; }
.mf-s2 { animation: mfSparkle 3s ease-in-out infinite 1s; transform-origin: center; transform-box: fill-box; }
.mf-s3 { animation: mfSparkle 3s ease-in-out infinite 2s; transform-origin: center; transform-box: fill-box; }

.mf-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 0.5rem;
  opacity: 0;
  animation: rise 1.2s var(--ease-out) 1.4s forwards;
}

/* Make hero-logo container hold the full SVG nicely */
.hero-logo .mf-logo-full {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
}

/* ====================================================
   PROCESS SECTION
   ==================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--carbon);
  border: 1px solid rgba(200, 169, 110, 0.4);
  display: grid;
  place-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-light);
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 0 0 6px rgba(10, 10, 10, 1);
}
.process-step:hover .process-num {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: scale(1.08);
  box-shadow: 0 0 0 6px var(--black), 0 0 30px var(--gold-glow);
}
.process-step h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.process-step p {
  color: var(--smoke);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 26ch;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   TRUST STRIP
   ==================================================== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  background:
    radial-gradient(ellipse at center, rgba(200, 169, 110, 0.04) 0%, transparent 70%);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  justify-content: center;
}
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.testimonial:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-3px);
  background: var(--graphite);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--chrome);
  margin-bottom: 1.5rem;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); margin-right: 0.15em; }
.testimonial-quote::after  { content: '\201D'; color: var(--gold); margin-left: 0.15em; }
.testimonial-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.testimonial-meta {
  font-size: 0.7rem;
  color: var(--smoke);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Photo testimonials — show actual job alongside review */
.testimonial.has-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.testimonial-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--graphite);
  position: relative;
  overflow: hidden;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.testimonial.has-photo:hover .testimonial-photo img { transform: scale(1.05); }
.testimonial-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,5,5,0.55) 100%);
  pointer-events: none;
}
.testimonial-photo-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(5, 5, 5, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 110, 0.25);
  z-index: 1;
}
.testimonial-body {
  padding: 1.75rem 2rem 2rem;
}
.testimonial-photo-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 169, 110, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0c0c0c 0%, #1d1d1d 50%, #0c0c0c 100%);
  display: grid;
  place-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* ====================================================
   CALENDAR (booking step 4)
   ==================================================== */
.schedule-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.schedule-head h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
}
.schedule-selected {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
}

.calendar {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 6px;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.cal-month {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-transform: uppercase;
}
.cal-nav {
  display: flex;
  gap: 0.5rem;
}
.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--silver);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.cal-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; background: var(--graphite); color: var(--smoke); }
.cal-nav-btn:disabled:hover { background: var(--graphite); color: var(--smoke); border-color: rgba(255,255,255,0.06); }
.cal-nav-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-weekday {
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 0.3rem 0;
  font-weight: 600;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--silver);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--graphite);
  color: var(--cream);
  border-color: rgba(200, 169, 110, 0.25);
}
.cal-day.today {
  color: var(--gold-light);
  border-color: rgba(200, 169, 110, 0.4);
}
.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day.selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-weight: 700;
  border-color: var(--gold);
  box-shadow: 0 8px 24px -8px var(--gold-glow), 0 0 0 4px rgba(200, 169, 110, 0.1);
}
.cal-day.selected::after { display: none; }
.cal-day.disabled { color: var(--ash); cursor: not-allowed; opacity: 0.4; }
.cal-day.empty { cursor: default; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.time-slot {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.85rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver);
  border-radius: 4px;
  font-size: 0.9rem;
}
.time-slot:hover:not(.disabled) {
  border-color: rgba(200, 169, 110, 0.4);
  color: var(--cream);
  background: var(--graphite);
}
.time-slot.selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 22px var(--gold-glow);
}
.time-slot-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
  margin-top: 0.25rem;
  font-weight: 500;
}
.time-slot.disabled { opacity: 0.35; cursor: not-allowed; }

@media (max-width: 480px) {
  .calendar { padding: 1rem; }
  .cal-day { font-size: 0.85rem; }
  .time-slots { grid-template-columns: 1fr 1fr; }
}

/* ====================================================
   WELCOME OFFER POPUP (fires on first page load)
   ==================================================== */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.78);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
  padding: 1.5rem;
}
.welcome-modal.in { opacity: 1; visibility: visible; }
.welcome-modal.out { opacity: 0; visibility: hidden; transition: opacity 0.4s ease-in, visibility 0.4s; }

.welcome-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background:
    radial-gradient(ellipse at top right, rgba(200, 169, 110, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #14100b 0%, #0a0807 100%);
  border: 1px solid rgba(200, 169, 110, 0.28);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  transform: translateY(40px) scale(0.92);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(200, 169, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.welcome-modal.in .welcome-card { transform: translateY(0) scale(1); }

/* Sweeping shine on entry */
.welcome-card::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 50%;
  background: linear-gradient(110deg, transparent, rgba(232, 232, 232, 0.16), transparent);
  pointer-events: none;
  transform: skewX(-15deg);
}
.welcome-modal.in .welcome-card::before {
  animation: welcomeSheen 1.6s var(--ease-out) 0.5s forwards;
}
@keyframes welcomeSheen { to { left: 130%; } }

.welcome-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: 1px solid rgba(200, 169, 110, 0.15);
  z-index: 1;
}
.welcome-close:hover { background: rgba(200, 169, 110, 0.12); transform: rotate(90deg); }

.welcome-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200, 169, 110, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 110, 0.25);
  margin-bottom: 1.5rem;
}

.welcome-pct {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 5.5rem);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 0.9;
  filter: drop-shadow(0 6px 20px rgba(200, 169, 110, 0.3));
  margin-bottom: 0.25rem;
}
.welcome-off {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.welcome-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}
.welcome-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 auto 1.75rem;
  max-width: 36ch;
}

.welcome-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.welcome-claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 14px 30px -10px rgba(200, 169, 110, 0.5);
}
.welcome-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(200, 169, 110, 0.65);
}
.welcome-claim svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.welcome-dismiss {
  background: none;
  border: none;
  color: var(--smoke);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.welcome-dismiss:hover { color: var(--cream); }

@media (max-width: 480px) {
  .welcome-card { padding: 2rem 1.5rem; }
  .welcome-title { font-size: 1.4rem; }
  .welcome-body { font-size: 0.95rem; }
}

/* ====================================================
   PACKAGE UPSELL CARD (Associate -> Executive)
   ==================================================== */
.upsell-card {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem 1.75rem;
  background:
    radial-gradient(ellipse at top right, rgba(200, 169, 110, 0.12) 0%, transparent 65%),
    var(--graphite);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.upsell-card.shown { display: block; }
.upsell-card.shown.in { opacity: 1; transform: translateY(0); }

.upsell-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.upsell-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.upsell-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.upsell-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.upsell-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.upsell-tag {
  margin-left: auto;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 169, 110, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 110, 0.25);
}

.upsell-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.upsell-deltas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.25rem;
  margin-bottom: 1.5rem;
}
.upsell-delta {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--cream);
  line-height: 1.4;
}
.upsell-delta svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upsell-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.upsell-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
}
.upsell-btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 10px 22px -10px rgba(200, 169, 110, 0.5);
}
.upsell-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -10px rgba(200, 169, 110, 0.65);
}
.upsell-btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.upsell-btn-ghost:hover { color: var(--cream); border-color: rgba(255, 255, 255, 0.3); }

@media (max-width: 600px) {
  .upsell-deltas { grid-template-columns: 1fr; gap: 0.5rem; }
  .upsell-card { padding: 1.25rem 1.25rem; }
}

/* ====================================================
   GALLERY — real photo treatment
   ==================================================== */
.gallery-tile-bg.bg-photo {
  background: var(--graphite);
}
.gallery-tile-bg.bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.gallery-tile:hover .gallery-tile-bg.bg-photo img { transform: scale(1.08); }

/* Before/after photo treatment */
.ba-image .ba-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-image.ba-before .ba-photo {
  filter: brightness(0.45) sepia(0.55) saturate(0.6) blur(0.4px);
}
.ba-image.ba-after .ba-photo {
  filter: drop-shadow(0 0 30px rgba(200, 169, 110, 0.15));
}

/* ====================================================
   STUDIO LAUNCHER (home page section + button)
   ==================================================== */
.studio-launcher {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
  background: radial-gradient(ellipse at center, #1a1410 0%, #050505 70%);
  border-top: 1px solid rgba(200, 169, 110, 0.12);
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  overflow: hidden;
}
.studio-launcher::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0px, transparent 39px, rgba(200,169,110,0.04) 40px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 39px, rgba(200,169,110,0.04) 40px);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.studio-launcher .container { position: relative; z-index: 1; }

.studio-launcher .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}
.studio-launcher h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 1rem 0 1rem;
  text-transform: uppercase;
}
.studio-launcher h2 .gold-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.studio-launcher p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver);
  font-size: 1.15rem;
  max-width: 38rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* The button itself — circular, energy-charging, video game inspired */
.enter-studio-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1410 0%, #050505 100%);
  border: 1px solid rgba(200, 169, 110, 0.4);
  cursor: pointer;
  text-decoration: none;
  color: var(--gold-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.5s var(--ease-out);
  outline: none;
}

/* Rotating outer ring */
.enter-studio-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    var(--gold) 60deg,
    transparent 120deg,
    transparent 180deg,
    var(--gold-light) 240deg,
    transparent 300deg);
  filter: blur(2px);
  opacity: 0.7;
  animation: ringSpin 6s linear infinite;
  z-index: -1;
}

/* Inner pulsing glow */
.enter-studio-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow:
    0 0 30px rgba(200, 169, 110, 0.4),
    inset 0 0 30px rgba(200, 169, 110, 0.15);
  animation: ringPulse 2.5s ease-in-out infinite;
}

@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes ringPulse {
  0%, 100% { opacity: 0.7; box-shadow: 0 0 30px rgba(200, 169, 110, 0.35), inset 0 0 30px rgba(200, 169, 110, 0.12); }
  50%      { opacity: 1;   box-shadow: 0 0 50px rgba(200, 169, 110, 0.55), inset 0 0 50px rgba(200, 169, 110, 0.25); }
}

.enter-studio-btn:hover {
  transform: scale(1.06);
  letter-spacing: 0.36em;
}
.enter-studio-btn:hover::before {
  animation-duration: 2s;
  filter: blur(1px);
  opacity: 1;
}

.enter-studio-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}
.enter-studio-btn-inner svg {
  width: 32px;
  height: 32px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s var(--ease-out);
}
.enter-studio-btn:hover .enter-studio-btn-inner svg {
  transform: translateX(3px);
}

/* Particle-style dots on hover */
.enter-studio-btn .spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 6px var(--gold-light);
  pointer-events: none;
  opacity: 0;
}
.enter-studio-btn:hover .spark {
  animation: sparkFly 1.2s ease-out infinite;
}
.enter-studio-btn .spark:nth-child(1) { top: 10%; left: 50%; animation-delay: 0s; --sx: 30px; --sy: -40px; }
.enter-studio-btn .spark:nth-child(2) { top: 30%; right: 10%; animation-delay: 0.15s; --sx: 50px; --sy: -10px; }
.enter-studio-btn .spark:nth-child(3) { bottom: 20%; right: 5%; animation-delay: 0.3s; --sx: 40px; --sy: 30px; }
.enter-studio-btn .spark:nth-child(4) { bottom: 10%; left: 30%; animation-delay: 0.45s; --sx: -20px; --sy: 40px; }
.enter-studio-btn .spark:nth-child(5) { top: 40%; left: 5%; animation-delay: 0.6s; --sx: -50px; --sy: 0px; }
.enter-studio-btn .spark:nth-child(6) { top: 5%; left: 25%; animation-delay: 0.75s; --sx: -30px; --sy: -40px; }

@keyframes sparkFly {
  0%   { opacity: 0; transform: translate(0, 0) scale(0); }
  20%  { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

.studio-launcher-hint {
  margin-top: 3rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* ====================================================
   STUDIO PAGE — video-game style configurator
   ==================================================== */
body.studio-page {
  background: #050505;
  overflow-x: hidden;
}
body.studio-page .nav,
body.studio-page .discount-bar,
body.studio-page .mobile-cta { display: none; }

.studio-shell {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(60, 60, 60, 0.3) 0%, transparent 55%),
    #050505;
}
.studio-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0px, transparent 39px, rgba(200,169,110,0.025) 40px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 39px, rgba(200,169,110,0.025) 40px);
  pointer-events: none;
  z-index: 0;
}
.studio-shell > * { position: relative; z-index: 1; }

/* Stage 1: Cinematic intro */
.studio-intro {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at center, #1a1410 0%, #050505 70%);
  z-index: 1000;
  transition: opacity 1s var(--ease-out), visibility 1s;
}
.studio-intro.gone { opacity: 0; visibility: hidden; }

.intro-bg-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  animation: introRing 4s ease-out infinite;
}
.intro-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.intro-ring:nth-child(2) { width: 200px; height: 200px; animation-delay: 1.3s; }
.intro-ring:nth-child(3) { width: 200px; height: 200px; animation-delay: 2.6s; }
@keyframes introRing {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.7; border-width: 2px; }
  100% { transform: translate(-50%, -50%) scale(6); opacity: 0; border-width: 0.5px; }
}

.intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 540px;
  padding: 0 var(--gutter);
}
.intro-eyebrow {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 999px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: introFade 0.8s var(--ease-out) 0.3s forwards;
}
.intro-headline {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 6.5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--cream), var(--gold-light), var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: introFade 1s var(--ease-out) 0.6s forwards;
}
.intro-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver);
  font-size: 1.2rem;
  max-width: 36ch;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
  opacity: 0;
  animation: introFade 1s var(--ease-out) 1.1s forwards;
}
@keyframes introFade { to { opacity: 1; } }

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 2.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 18px 40px -10px var(--gold-glow);
  opacity: 0;
  animation: introFade 1s var(--ease-out) 1.6s forwards;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), gap 0.3s ease;
}
.intro-cta:hover {
  transform: translateY(-3px);
  gap: 1rem;
  box-shadow: 0 24px 50px -10px rgba(200, 169, 110, 0.7);
}

/* Stage 2: Builder HUD */
.studio-main {
  padding: 2rem var(--gutter) 6rem;
  max-width: 1280px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.studio-main.visible { opacity: 1; }

.hud-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(20, 16, 11, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 8px;
  margin-bottom: 2rem;
  position: sticky;
  top: 1rem;
  z-index: 50;
}
.hud-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 600;
  transition: color 0.3s ease;
}
.hud-back:hover { color: var(--gold); }
.hud-back svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hud-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
}
.hud-stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.hud-stat-bar {
  width: 180px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.hud-stat-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 999px;
  transition: width 0.6s var(--ease-out);
  box-shadow: 0 0 12px var(--gold-glow);
}
.hud-stat-val {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  min-width: 30px;
  text-align: right;
}

.hud-count {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.hud-count-num {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hud-count-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

@media (max-width: 720px) {
  .hud-bar { grid-template-columns: 1fr; gap: 0.85rem; padding: 0.85rem 1rem; text-align: center; }
  .hud-stat { justify-content: flex-start; }
  .hud-stat-bar { width: 100%; flex: 1; }
  .hud-count { justify-content: center; }
}

/* Stage 2: Car canvas */
.studio-canvas {
  background: linear-gradient(180deg, #0c0c0c 0%, #1a1a1a 100%);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: 8px;
  padding: 2rem 1rem 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.studio-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0px, transparent 23px, rgba(200,169,110,0.04) 24px);
  pointer-events: none;
  opacity: 0.6;
}
.studio-canvas::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.studio-car {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 3/1;
  z-index: 1;
}
.studio-car svg { width: 100%; height: 100%; display: block; }

/* Color picker */
.color-picker {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s var(--ease-out);
  background: var(--swatch-color);
  box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.4);
}
.color-swatch:hover { transform: scale(1.15); }
.color-swatch.active {
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(5, 5, 5, 1), 0 0 0 4px var(--gold), 0 0 18px var(--gold-glow);
}

/* Service feedback overlays on car */
.car-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.car-fx.on { opacity: 1; }

.car-fx-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.18) 0%, transparent 70%);
  filter: blur(20px);
  animation: glowBreathe 3s ease-in-out infinite;
}
@keyframes glowBreathe {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Hydrophobic beads on car when ceramic active */
.car-fx-bead {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.85) 0%, rgba(220, 230, 245, 0.4) 30%, rgba(140, 160, 180, 0.15) 60%, transparent 75%);
  box-shadow: inset -2px -2px 4px rgba(20, 30, 40, 0.25), 0 1px 2px rgba(0, 0, 0, 0.4);
  animation: carBeadFall 4s linear infinite;
  opacity: 0;
}
@keyframes carBeadFall {
  0%   { transform: translateY(-10px) scale(0.8); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(60px) scale(1); opacity: 0; }
}

/* Service picker grid */
.service-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.service-pick {
  background: rgba(20, 16, 11, 0.4);
  border: 1px solid rgba(200, 169, 110, 0.18);
  padding: 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  font-family: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 130px;
}
.service-pick::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-pick:hover {
  border-color: rgba(200, 169, 110, 0.5);
  transform: translateY(-3px);
}
.service-pick:hover::before { opacity: 1; }
.service-pick.selected {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.06);
  box-shadow: 0 0 0 1px var(--gold), 0 0 24px var(--gold-glow);
}
.service-pick.selected::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }

.service-pick-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 0.25rem;
  transition: transform 0.4s var(--ease-out);
}
.service-pick:hover .service-pick-icon { transform: scale(1.1); }
.service-pick.selected .service-pick-icon { color: var(--gold-light); }
.service-pick-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.service-pick-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-transform: uppercase;
}
.service-pick-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--smoke);
  font-size: 0.88rem;
  line-height: 1.4;
  flex: 1;
}
.service-pick-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.service-pick-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--graphite);
  border: 1px solid rgba(200, 169, 110, 0.3);
  transition: all 0.3s ease;
}
.service-pick.selected .service-pick-status { color: var(--gold-light); }
.service-pick.selected .service-pick-status::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 8px var(--gold); }
.service-pick.selected .service-pick-status::after { content: 'EQUIPPED'; }
.service-pick:not(.selected) .service-pick-status::after { content: 'TAP TO ADD'; }

/* Finalize button */
.studio-finalize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.4rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 18px 40px -15px rgba(200, 169, 110, 0.5);
  position: relative;
  overflow: hidden;
}
.studio-finalize:disabled {
  background: var(--graphite);
  color: var(--smoke);
  cursor: not-allowed;
  box-shadow: none;
}
.studio-finalize:not(:disabled)::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  left: -60%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s var(--ease-out);
}
.studio-finalize:not(:disabled):hover::before { left: 110%; }
.studio-finalize:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 24px 50px -15px rgba(200, 169, 110, 0.7); }

.studio-finalize svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Stage 3: Step-by-step */
.studio-questions {
  display: none;
  min-height: 80vh;
  padding: 4rem var(--gutter);
  max-width: 720px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
}
.studio-questions.shown { display: flex; }

.q-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.q-pip {
  flex: 1;
  height: 3px;
  background: var(--graphite);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.q-pip.active::after, .q-pip.done::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 999px;
  box-shadow: 0 0 8px var(--gold-glow);
}
.q-pip.active::after { animation: qPipFill 0.6s var(--ease-out) forwards; transform-origin: left; transform: scaleX(0); }
@keyframes qPipFill { to { transform: scaleX(1); } }

.q-question {
  display: none;
  opacity: 0;
}
.q-question.active {
  display: block;
  animation: qFadeIn 0.6s var(--ease-out) 0.1s forwards;
}
@keyframes qFadeIn { to { opacity: 1; } }

.q-num {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.q-prompt {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.q-hint {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--silver);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.q-input, .q-area {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(200, 169, 110, 0.3);
  padding: 0.85rem 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s ease;
  letter-spacing: 0.02em;
}
.q-area {
  font-size: 1.15rem;
  font-family: inherit;
  font-weight: 400;
  resize: vertical;
  min-height: 100px;
  border: 2px solid rgba(200, 169, 110, 0.3);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  background: rgba(20, 16, 11, 0.3);
  line-height: 1.5;
}
.q-input:focus, .q-area:focus { border-color: var(--gold-light); }
.q-input::placeholder, .q-area::placeholder { color: var(--ash); }

.q-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.q-next {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 14px 30px -10px var(--gold-glow);
}
.q-next:hover { transform: translateY(-2px); gap: 0.85rem; box-shadow: 0 18px 36px -10px rgba(200, 169, 110, 0.6); }
.q-next svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.q-skip {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--smoke);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.q-skip:hover { color: var(--cream); border-color: rgba(255, 255, 255, 0.3); }

.q-error {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #d46a6a;
  margin-top: 0.65rem;
  display: none;
}
.q-question.error .q-error { display: block; }
.q-question.error .q-input,
.q-question.error .q-area { border-color: #d46a6a; }

.q-yn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 420px;
}
.q-yn-btn {
  padding: 1.5rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(20, 16, 11, 0.4);
  border: 1px solid rgba(200, 169, 110, 0.25);
  color: var(--cream);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.q-yn-btn:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
  transform: translateY(-2px);
}

/* Stage 4: Done */
.studio-done {
  display: none;
  min-height: 80vh;
  padding: 4rem var(--gutter);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.studio-done.shown { display: flex; }

.done-mark {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  display: grid;
  place-items: center;
  position: relative;
  animation: doneMarkPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 8px rgba(200, 169, 110, 0.1), 0 30px 60px -15px var(--gold-glow);
}
.done-mark::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.3);
  animation: donePing 2.2s var(--ease-out) infinite;
}
@keyframes donePing {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes doneMarkPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.done-mark svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.studio-done h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.studio-done p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver);
  font-size: 1.15rem;
  max-width: 38ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.done-summary {
  display: inline-flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.5rem 2rem;
  background: rgba(20, 16, 11, 0.5);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 8px;
  margin-bottom: 2.5rem;
  text-align: left;
  min-width: 300px;
}
.done-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.done-summary-row:last-child { border-bottom: none; }
.done-summary-row .lk {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.done-summary-row .lv {
  color: var(--cream);
  font-weight: 500;
  text-align: right;
}
.studio-done .btn {
  margin-top: 0;
}

/* ====================================================
   ADDRESS AUTOCOMPLETE (Photon / OpenStreetMap)
   ==================================================== */
.addr-wrap {
  position: relative;
  width: 100%;
}
.addr-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--carbon);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 6px;
  z-index: 200;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.75);
}
.addr-suggestions.open { display: block; animation: addrIn 0.18s ease-out; }
@keyframes addrIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.addr-suggestion {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--cream);
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.4;
}
.addr-suggestion:last-child { border-bottom: none; }
.addr-suggestion:hover, .addr-suggestion.active {
  background: rgba(200, 169, 110, 0.1);
  color: var(--gold-light);
}
.addr-suggestion svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.addr-suggestion span {
  flex: 1;
}
.addr-suggestions::-webkit-scrollbar { width: 6px; }
.addr-suggestions::-webkit-scrollbar-thumb { background: rgba(200, 169, 110, 0.25); border-radius: 999px; }
.addr-suggestions::-webkit-scrollbar-track { background: transparent; }

/* ====================================================
   BOOK PAGE — Premium services promo banner
   ==================================================== */
.services-promo-bar {
  padding: 1.5rem var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.services-promo-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background:
    radial-gradient(ellipse at top right, rgba(200, 169, 110, 0.18) 0%, transparent 65%),
    linear-gradient(135deg, #14100b 0%, #0a0807 100%);
  border: 1px solid rgba(200, 169, 110, 0.32);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.services-promo-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.services-promo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 24px var(--gold-glow);
}
.services-promo-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.services-promo-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.services-promo-text p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.4;
}
.services-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), gap 0.3s ease;
  box-shadow: 0 12px 26px -10px rgba(200, 169, 110, 0.4);
}
.services-promo-btn:hover {
  transform: translateY(-2px);
  gap: 0.7rem;
  box-shadow: 0 18px 36px -10px rgba(200, 169, 110, 0.55);
}
@media (max-width: 720px) {
  .services-promo-card { grid-template-columns: auto 1fr; gap: 0.85rem; padding: 1.25rem; }
  .services-promo-btn { grid-column: 1 / -1; justify-content: center; padding: 1rem; }
  .services-promo-text h3 { font-size: 0.95rem; }
}

/* ====================================================
   PREMIUM SERVICES PAGE
   ==================================================== */
body.services-page { background: #050505; }

/* HERO */
.services-hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 169, 110, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(60, 60, 60, 0.4) 0%, transparent 55%),
    var(--black);
}
.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.services-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 1rem 0 1.5rem;
  text-transform: uppercase;
}
.services-hero h1 .gold-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hydrophobic beading background — animated water droplets */
.beads {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bead {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.85) 0%, rgba(220, 230, 245, 0.4) 30%, rgba(140, 160, 180, 0.15) 60%, transparent 75%);
  box-shadow:
    inset -2px -2px 6px rgba(20, 30, 40, 0.25),
    inset 1px 1px 2px rgba(255, 255, 255, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.3);
  animation: beadRoll linear infinite;
  opacity: 0;
}
@keyframes beadRoll {
  0%   { transform: translateY(-30px) scale(0.8); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(110vh) scale(1.05); opacity: 0; }
}

/* SERVICE TABS */
.services-tabs-wrap {
  position: sticky;
  top: 84px;
  z-index: 50;
  background: rgba(5, 5, 5, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
body.has-discount .services-tabs-wrap { top: 124px; }
body.discount-dismissed .services-tabs-wrap { top: 84px; }
.services-tabs {
  display: flex;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  gap: 0;
}
.service-tab {
  flex: 1;
  max-width: 240px;
  padding: 1.25rem 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.service-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}
.service-tab:hover { color: var(--cream); }
.service-tab.active { color: var(--gold-light); }
.service-tab.active::after { transform: scaleX(1); }
@media (max-width: 600px) {
  .service-tab { font-size: 0.7rem; letter-spacing: 0.08em; padding: 1rem 0.5rem; }
}

.service-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}
.service-panel.active {
  display: block;
  animation: panelIn 0.6s var(--ease-out) forwards;
}
@keyframes panelIn { to { opacity: 1; transform: translateY(0); } }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .service-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-visual { order: -1; }
}

.service-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0c0c0c 0%, #1d1d1d 50%, #0c0c0c 100%);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.15);
}

/* Hood surface for visual demo */
.hood-surface {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    linear-gradient(160deg, #1a1a1a 0%, #060606 50%, #1a1a1a 100%);
}

.service-detail h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-detail .lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--silver);
  margin-bottom: 1.75rem;
  font-weight: 300;
  line-height: 1.55;
}
.service-detail-features {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.service-detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.5;
}
.service-detail-features svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Durability bar */
.durability {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.durability-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.durability-label .key {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
}
.durability-label .val {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.durability-bar {
  height: 6px;
  background: var(--graphite);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.durability-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 999px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 16px var(--gold-glow);
}
.service-panel.active .durability-bar-fill { width: var(--bar-w, 50%); }

/* COMPARISON TABLE */
.comp-table {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.comp-row:last-child { border-bottom: none; }
.comp-row > div {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  color: var(--silver);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.comp-row > div:last-child { border-right: none; }
.comp-row.head {
  background: rgba(255, 255, 255, 0.02);
}
.comp-row.head > div {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 1.25rem;
}
.comp-row .label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
}
.comp-cell-best {
  background: rgba(200, 169, 110, 0.04);
  color: var(--gold-light) !important;
  font-weight: 600;
  position: relative;
}
.comp-row.head .comp-cell-best {
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.16) 0%, rgba(200, 169, 110, 0.04) 100%);
  color: var(--gold-light);
}
.comp-cell-best::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 2px;
  background: var(--gold);
}
@media (max-width: 720px) {
  .comp-row { grid-template-columns: 1fr 1fr 1fr 1.2fr; }
  .comp-row > div { padding: 0.85rem 0.6rem; font-size: 0.78rem; }
  .comp-row.head > div { padding: 0.95rem 0.5rem; font-size: 0.65rem; letter-spacing: 0.1em; }
  .comp-row .label { font-size: 0.65rem; }
}

/* QUIZ */
.quiz-wrap {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.quiz-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.quiz-progress-dot {
  flex: 1;
  height: 3px;
  background: var(--graphite);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.quiz-progress-dot.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: progFill 0.5s var(--ease-out) forwards;
  transform-origin: left;
  transform: scaleX(0);
}
.quiz-progress-dot.done::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
@keyframes progFill { to { transform: scaleX(1); } }

.quiz-question {
  display: none;
  opacity: 0;
}
.quiz-question.active {
  display: block;
  animation: quizIn 0.5s var(--ease-out) forwards;
}
@keyframes quizIn { to { opacity: 1; } }

.quiz-question h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.quiz-question .qsub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.quiz-options {
  display: grid;
  gap: 0.65rem;
}
.quiz-option {
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--cream);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.quiz-option:hover {
  border-color: rgba(200, 169, 110, 0.4);
  background: var(--steel);
  transform: translateX(4px);
}
.quiz-option .qmark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.quiz-result {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.quiz-result.shown { display: block; animation: quizIn 0.6s var(--ease-out) forwards; }
.quiz-result-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.quiz-result-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.quiz-result-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver);
  font-size: 1.1rem;
  max-width: 36ch;
  margin: 0 auto 2rem;
  line-height: 1.55;
}
.quiz-restart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--smoke);
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.3s ease;
}
.quiz-restart:hover { color: var(--gold); }

/* PRODUCTS STRIP */
.products-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  align-items: center;
}
.product-mark {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.product-mark:hover { opacity: 1; color: var(--gold); }
.product-mark .pname {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  color: inherit;
  display: block;
  margin-bottom: 0.2rem;
}
.product-mark .pmeta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* QUOTE FORM */
.quote-form {
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 3rem);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.quote-grid .form-field.full { grid-column: 1 / -1; }
@media (max-width: 720px) { .quote-grid { grid-template-columns: 1fr; } }

.service-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.5rem;
}
@media (max-width: 600px) { .service-checks { grid-template-columns: 1fr; } }

.service-check {
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.95rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--silver);
}
.service-check:hover {
  border-color: rgba(200, 169, 110, 0.3);
  color: var(--cream);
}
.service-check.checked {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
  color: var(--gold-light);
}
.service-check .box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}
.service-check.checked .box {
  background: var(--gold);
  border-color: var(--gold);
}
.service-check .box svg {
  width: 12px;
  height: 12px;
  color: var(--black);
  opacity: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-check.checked .box svg { opacity: 1; }

/* Condition radios */
.condition-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 600px) { .condition-row { grid-template-columns: 1fr 1fr; } }
.condition-pill {
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.85rem 0.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  transition: all 0.3s var(--ease-out);
}
.condition-pill:hover { color: var(--cream); }
.condition-pill.selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 18px var(--gold-glow);
}

/* Photo upload */
.photo-upload {
  border: 2px dashed rgba(200, 169, 110, 0.3);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  background: rgba(200, 169, 110, 0.02);
}
.photo-upload:hover, .photo-upload.dragover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.06);
}
.photo-upload-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  color: var(--gold);
}
.photo-upload-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.photo-upload-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.photo-upload-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--smoke);
}
.photo-upload input { display: none; }
.photo-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}
.photo-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--graphite);
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  line-height: 1;
}

.quote-submit {
  width: 100%;
  padding: 1.25rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 18px 40px -15px rgba(200, 169, 110, 0.5);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}
.quote-submit::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  left: -60%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s var(--ease-out);
}
.quote-submit:hover::before { left: 110%; }
.quote-submit:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -15px rgba(200, 169, 110, 0.65); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  background: transparent;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 2.5rem 1.5rem 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  position: relative;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-light); }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out);
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--gold-light); }
.faq-item .faq-body {
  padding: 0 0 1.75rem;
  color: var(--silver);
  font-size: 0.97rem;
  line-height: 1.65;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  max-width: 70ch;
}

/* Quote thanks */
.quote-thanks {
  display: none;
  text-align: center;
  padding: 4rem 0;
}
.quote-thanks.visible { display: block; animation: quizIn 0.7s var(--ease-out) forwards; }
.quote-thanks-mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px rgba(200, 169, 110, 0.1), 0 24px 50px -15px var(--gold-glow);
}
.quote-thanks-mark svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.quote-thanks h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.quote-thanks p {
  color: var(--silver);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 38ch;
  line-height: 1.6;
}

/* ====================================================
   PROMO PAGE — cinematic intro + special form
   ==================================================== */
body.promo-page {
  background: #050505;
  overflow-x: hidden;
}
body.promo-page .nav,
body.promo-page .discount-bar,
body.promo-page .mobile-cta { display: none; }

.promo-intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a1410 0%, #050505 70%);
  z-index: 1000;
  display: grid;
  place-items: center;
  transition: opacity 1s var(--ease-out), visibility 1s;
}
.promo-intro.gone { opacity: 0; visibility: hidden; }

.promo-stage {
  position: relative;
  width: min(92vw, 720px);
  height: min(60vw, 360px);
}

.promo-car {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.promo-car .mf-car-svg { width: 100%; height: 100%; }

.promo-car-dirty {
  filter: brightness(0.42) sepia(0.5) saturate(0.5) blur(0.4px);
  transition: opacity 0.8s var(--ease-out), filter 1.2s var(--ease-out);
}
.promo-stage.cleaning .promo-car-dirty {
  opacity: 0;
  filter: brightness(0.7) sepia(0) blur(0);
}

.promo-car-clean {
  opacity: 0;
  transition: opacity 1s var(--ease-out) 0.3s;
  filter: drop-shadow(0 20px 40px rgba(200, 169, 110, 0.15));
}
.promo-stage.cleaning .promo-car-clean { opacity: 1; }

.dust-overlay {
  position: absolute;
  inset: 10%;
  background:
    radial-gradient(circle at 18% 35%, rgba(140, 105, 65, 0.4) 0%, transparent 7%),
    radial-gradient(circle at 32% 60%, rgba(120, 90, 55, 0.4) 0%, transparent 6%),
    radial-gradient(circle at 50% 25%, rgba(130, 100, 60, 0.35) 0%, transparent 8%),
    radial-gradient(circle at 65% 70%, rgba(115, 85, 50, 0.4) 0%, transparent 7%),
    radial-gradient(circle at 80% 40%, rgba(125, 95, 60, 0.4) 0%, transparent 6%),
    radial-gradient(circle at 88% 65%, rgba(130, 100, 65, 0.3) 0%, transparent 8%),
    radial-gradient(circle at 25% 80%, rgba(115, 85, 50, 0.35) 0%, transparent 7%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 1s ease;
  border-radius: 12px;
}
.promo-stage.cleaning .dust-overlay { opacity: 0; }

.water-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(200, 230, 255, 0.05) 25%,
    rgba(220, 240, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(220, 240, 255, 0.35) 55%,
    rgba(200, 230, 255, 0.05) 75%,
    transparent 100%);
  transform: translateX(-110%);
  transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
  filter: blur(6px);
}
.promo-stage.cleaning .water-sweep { transform: translateX(110%); }

/* Foam droplets that briefly appear during the wipe */
.foam-bubble {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  opacity: 0;
}
.promo-stage.cleaning .foam-bubble { animation: foamPop 1.4s ease-out forwards; }
@keyframes foamPop {
  0% { opacity: 0; transform: scale(0); }
  40% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4) translateY(-20px); }
}

.promo-logo-reveal {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-out) 1.4s, transform 1.1s var(--ease-out) 1.4s;
  pointer-events: none;
}
.promo-stage.revealing .promo-logo-reveal {
  opacity: 1;
  transform: scale(1);
}
.promo-logo-reveal .mf-logo-full {
  background: rgba(5, 5, 5, 0.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  border: 1px solid rgba(200, 169, 110, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(200, 169, 110, 0.15);
}
.promo-logo-reveal .mf-car-stage { display: none; }
.promo-logo-reveal .mf-wordmark-big { font-size: clamp(1.4rem, 4vw, 2.4rem); margin: 0.5rem 0 0.4rem; }

.promo-skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
  background: none;
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  z-index: 1001;
}
.promo-skip:hover { color: var(--gold); border-color: var(--gold); }
.promo-intro.gone .promo-skip { display: none; }

.promo-main {
  min-height: 100vh;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) 4rem;
  max-width: 760px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  position: relative;
  z-index: 1;
}
.promo-main.visible { opacity: 1; transform: translateY(0); }

.promo-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease, gap 0.3s ease;
}
.promo-back:hover { color: var(--gold); gap: 0.7rem; }

.discount-badge {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  position: relative;
}
.discount-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(200, 169, 110, 0.06), transparent 60%);
  pointer-events: none;
}
.badge-pct-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}
.badge-pct {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 0.85;
  filter: drop-shadow(0 6px 20px rgba(200, 169, 110, 0.3));
}
.badge-off {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.45em;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.discount-badge-text { position: relative; }
.discount-badge h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.discount-badge p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  color: var(--silver);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
  max-width: 38ch;
}

@media (max-width: 600px) {
  .discount-badge { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 2rem 0; }
}

.promo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.promo-form .form-field.full { grid-column: 1 / -1; }
@media (max-width: 720px) { .promo-form { grid-template-columns: 1fr; } }

.promo-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 1.25rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 18px 40px -15px rgba(200, 169, 110, 0.5);
  position: relative;
  overflow: hidden;
}
.promo-submit::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  left: -60%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.7s var(--ease-out);
}
.promo-submit:hover::before { left: 110%; }
.promo-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -15px rgba(200, 169, 110, 0.65);
}

.promo-call-line {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver);
  font-size: 1rem;
}
.promo-call-line a {
  color: var(--gold-light);
  font-style: normal;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(240, 216, 152, 0.4);
  transition: border-color 0.3s ease;
}
.promo-call-line a:hover { border-bottom-color: var(--gold-light); }

.promo-thanks {
  text-align: center;
  padding: 4rem 0;
  display: none;
}
.promo-thanks.visible { display: block; animation: stepIn 0.8s var(--ease-out); }
.promo-thanks .badge-pct { font-size: 4rem; margin-bottom: 1rem; }
.promo-thanks h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.promo-thanks p {
  color: var(--silver);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 38ch;
  line-height: 1.6;
}
