@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #080705;
  --ink-soft: #0e0b08;
  --surface: #15100b;
  --surface-light: #1d160f;
  --surface-gold: #21180d;
  --paper: #f7f1e6;
  --muted: #d0c6b9;
  --quiet: #aa9e90;
  --gold: #d7a94c;
  --gold-bright: #f2d18a;
  --champagne: #f7e5b6;
  --line: rgba(242, 209, 138, .16);
  --line-strong: rgba(242, 209, 138, .34);
  --shadow: 0 30px 80px rgba(0, 0, 0, .42);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Manrope", Arial, sans-serif;
  --shell: 1240px;
  --header-height: 78px;
  --header-offset: 94px;
  --announcement-height: 38px;
  --ease: cubic-bezier(.22, .72, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; scroll-padding-top: var(--header-offset); scrollbar-color: var(--gold) var(--ink); }
body { margin: 0; overflow-x: clip; background: var(--ink); color: var(--paper); font-family: var(--font-ui); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; transition: opacity .21s ease; }
body.page-leaving { opacity: 0; }
body.menu-open, body.has-loader { overflow: hidden; }
img, video { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
::selection { background: var(--gold-bright); color: #15100b; }

.shell { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(76px, 8vw, 118px); }
.section-dark { position: relative; background: var(--ink-soft); }
.section-warm { position: relative; background: linear-gradient(145deg, #171008, #0d0a07 70%); }
.section-overlap { margin: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 12px 18px; transform: translateY(-160%); border-radius: 10px; background: var(--champagne); color: #171008; font-weight: 800; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { max-width: 100%; overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: pretty; }
h1, h2 { margin-bottom: 24px; padding-block: .06em .08em; font-family: var(--font-display); font-weight: 500; letter-spacing: -.045em; line-height: .94; }
h1 { font-size: clamp(4.3rem, 7vw, 7.75rem); }
h2 { font-size: clamp(3.2rem, 5.3vw, 6.1rem); }
h3 { font-family: var(--font-display); font-size: clamp(1.7rem, 2.4vw, 2.5rem); font-weight: 500; line-height: 1; }
p { color: var(--muted); }
.gold-text { color: var(--gold-bright); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--gold-bright); font-size: .72rem; font-weight: 800; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 1px; background: var(--gold); content: ""; }
.lead { max-width: 58ch; font-size: 1.08rem; }
main [id] { scroll-margin-top: var(--header-offset); }

/* Loading and global navigation */
.site-loader { position: fixed; z-index: 9000; inset: 0; display: grid; place-items: center; overflow: hidden; background: #050403; transition: opacity .62s ease, visibility .62s ease; }
.site-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-core { position: relative; z-index: 2; text-align: center; }
.loader-logo-wrap { width: min(260px, 62vw); margin: 0 auto 18px; }
.loader-logo-wrap img { width: 100%; filter: drop-shadow(0 0 18px rgba(215, 169, 76, .25)); }
.loader-core p { color: var(--champagne); font-size: .7rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.loader-bubbles span { position: absolute; width: 90px; aspect-ratio: 1; border: 1px solid rgba(242, 209, 138, .12); border-radius: 55% 45% 62% 38%; animation: loaderFloat 4s ease-in-out infinite alternate; }
.loader-bubbles span:nth-child(1) { top: 13%; left: 12%; }
.loader-bubbles span:nth-child(2) { top: 22%; right: 16%; width: 150px; animation-delay: -.8s; }
.loader-bubbles span:nth-child(3) { bottom: 12%; left: 23%; width: 190px; animation-delay: -1.5s; }
.loader-bubbles span:nth-child(4) { right: 8%; bottom: 20%; width: 62px; animation-delay: -2s; }
.loader-bubbles span:nth-child(n+5) { display: none; }
@keyframes loaderFloat { to { transform: translate3d(0, -18px, 0) rotate(4deg); } }

.announcement { position: relative; z-index: 101; border-bottom: 1px solid rgba(242, 209, 138, .1); background: #070604; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; gap: 10px; color: #b9aa98; font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.announcement-inner a { margin-left: auto; color: var(--champagne); }
.signal-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(215, 169, 76, .7); }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(242, 209, 138, .11); background: rgba(7, 6, 4, .92); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); transition: background .3s, box-shadow .3s; }
.header-compact .site-header { background: rgba(7, 6, 4, .97); box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.nav-inner { min-height: 78px; display: grid; grid-template-columns: 230px 1fr auto; align-items: center; gap: 24px; transition: min-height .3s var(--ease); }
.header-compact .nav-inner { min-height: 66px; }
.brand { display: inline-flex; width: 205px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { justify-self: center; display: flex; gap: clamp(20px, 2.5vw, 38px); }
.desktop-nav a { position: relative; padding-block: 10px; color: #d7ccbe; font-size: .82rem; font-weight: 700; white-space: nowrap; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--gold-bright); content: ""; transition: transform .28s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.desktop-nav a[aria-current="page"] { color: var(--paper); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { color: var(--paper); font-size: .82rem; font-weight: 800; white-space: nowrap; }
.menu-toggle { display: none; width: 48px; height: 48px; place-content: center; gap: 6px; border: 1px solid var(--line-strong); border-radius: 14px; background: transparent; }
.menu-toggle span { display: block; width: 20px; height: 1px; background: var(--paper); transition: transform .3s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: absolute; z-index: 90; top: 100%; right: 0; left: 0; height: calc(100dvh - var(--header-height)); display: grid; grid-template-rows: 0fr; overflow: hidden; background: rgba(7, 6, 4, .98); visibility: hidden; transition: grid-template-rows .45s var(--ease), visibility .45s; }
.page-home:not(.header-compact) .mobile-menu { height: calc(100dvh - var(--header-height) - var(--announcement-height)); }
.mobile-menu > div { min-height: 0; overflow-x: hidden; overflow-y: auto; }
.mobile-menu.open { grid-template-rows: 1fr; visibility: visible; }
.mobile-menu nav { display: grid; padding-block: 42px 24px; }
.mobile-menu nav a { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: clamp(1.85rem, 8vw, 2.3rem); line-height: 1.05; }
.mobile-menu nav span { color: var(--gold); font-family: var(--font-ui); font-size: .7rem; }
.mobile-menu nav a > span { display: none; }
.mobile-menu-actions { display: flex; flex-wrap: wrap; gap: 12px; padding-bottom: 40px; }

/* Compact page navigation cues */
.header-scroll-button { position: absolute; z-index: 79; top: calc(var(--header-height) + 12px); left: 50%; min-height: 42px; display: inline-flex; align-items: center; gap: 10px; padding: 0 16px; transform: translateX(-50%); border: 1px solid rgba(242, 209, 138, .38); border-radius: 999px; background: rgba(10, 8, 6, .88); color: var(--champagne); box-shadow: 0 12px 28px rgba(0, 0, 0, .24); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); font-size: .65rem; font-weight: 800; letter-spacing: .12em; line-height: 1; text-transform: uppercase; transition: border-color .25s, background .25s, transform .25s var(--ease), opacity .25s; }
.page-home .header-scroll-button { top: calc(var(--announcement-height) + var(--header-height) + 12px); }
.header-scroll-button:hover { transform: translateX(-50%) translateY(2px); border-color: var(--gold-bright); background: #15100b; }
.header-scroll-button i { color: var(--gold-bright); font-size: 1rem; font-style: normal; animation: scrollCue 1.7s ease-in-out infinite; }
body.menu-open .header-scroll-button { opacity: 0; pointer-events: none; }
@keyframes scrollCue { 50% { transform: translateY(3px); } }

/* Premium action language */
.button, .line-link { position: relative; isolation: isolate; display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px; overflow: hidden; border: 1px solid transparent; border-radius: 999px 999px 999px 18px; padding: 0 25px; font-size: .82rem; font-weight: 800; letter-spacing: -.01em; line-height: 1; transition: color .3s, border-color .3s, background .3s, box-shadow .3s, transform .3s var(--ease); }
.button::before, .line-link::before { position: absolute; z-index: -1; top: -50%; bottom: -50%; left: -45%; width: 35%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent); content: ""; transition: left .62s var(--ease); }
.button:hover::before, .line-link:hover::before { left: 118%; }
.button:hover, .line-link:hover { transform: translateY(-2px); }
.button-gold { border-color: var(--champagne); background: linear-gradient(135deg, #fff2c8, #e7bd67 72%, #c99435); color: #171008; box-shadow: 0 12px 28px rgba(199, 144, 51, .22), inset 0 1px rgba(255,255,255,.64); }
.button-gold:hover { box-shadow: 0 16px 34px rgba(199, 144, 51, .34), inset 0 1px rgba(255,255,255,.72); }
.button-ghost { border-color: var(--line-strong); background: rgba(242, 209, 138, .045); color: var(--paper); box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }
.line-link { border-color: rgba(242, 209, 138, .48); background: rgba(242, 209, 138, .075); color: var(--paper); box-shadow: 0 10px 24px rgba(0,0,0,.16), inset 0 0 0 1px rgba(0,0,0,.1); }
.button-ghost:hover, .line-link:hover { border-color: var(--gold-bright); background: rgba(242, 209, 138, .1); }
.button span[aria-hidden="true"], .line-link span[aria-hidden="true"] { transition: transform .3s var(--ease); }
.button:hover span[aria-hidden="true"], .line-link:hover span[aria-hidden="true"] { transform: translate(3px, -2px); }
.nav-actions .button { min-height: 46px; padding-inline: 20px; }

/* Organic depth stays behind the content */
[data-bubbles] { position: relative; isolation: isolate; }
.bubble-field { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.brand-bubble { position: absolute; top: var(--y); left: var(--x); width: var(--size); aspect-ratio: var(--oval, 1); opacity: var(--opacity); border: 1px solid rgba(242, 209, 138, .72); border-radius: 58% 42% 62% 38% / 47% 59% 41% 53%; background: radial-gradient(circle at 30% 24%, rgba(255,255,255,.28), transparent 18%), radial-gradient(circle at 60% 70%, rgba(215,169,76,.12), transparent 58%); box-shadow: inset 0 0 20px rgba(242,209,138,.08); transform: translate3d(var(--react-x, 0), var(--react-y, 0), 0); animation: bubbleDrift var(--duration) ease-in-out var(--delay) infinite alternate; }
@keyframes bubbleDrift { to { transform: translate3d(calc(var(--dx) + var(--react-x, 0px)), calc(-14px + var(--react-y, 0px)), 0) rotate(5deg); } }

/* Intentional entrance movement */
.js .reveal { opacity: .82; transform: translate3d(0, 28px, 0); transition: opacity .56s ease, transform .68s var(--ease), clip-path .72s var(--ease); }
.js .page-hero-copy.reveal, .js .form-intro.reveal, .js .compare-copy.reveal { transform: translate3d(-46px, 0, 0); }
.js .hero-stage.reveal, .js .page-hero-media.reveal, .js .compare-shell.reveal, .js .request-form.reveal { transform: translate3d(46px, 0, 0); }
.js .wide-stage.reveal, .js .editorial-gallery.reveal { transform: none; clip-path: inset(0 0 12% 0 round 28px); }
.js .reveal.is-visible { opacity: 1; transform: none; clip-path: inset(0); }
.js .home-gallery.reveal article, .js .editorial-gallery.reveal .gallery-item, .js .service-listing.reveal .service-row { opacity: .76; transform: translateY(20px); }
.js .home-gallery.reveal.is-visible article, .js .editorial-gallery.reveal.is-visible .gallery-item, .js .service-listing.reveal.is-visible .service-row { opacity: 1; transform: none; transition: opacity .65s ease, transform .72s var(--ease); }
.js .home-gallery.reveal.is-visible article:nth-child(2), .js .editorial-gallery.reveal.is-visible .gallery-item:nth-child(2), .js .service-listing.reveal.is-visible .service-row:nth-child(2) { transition-delay: .09s; }
.js .home-gallery.reveal.is-visible article:nth-child(3), .js .editorial-gallery.reveal.is-visible .gallery-item:nth-child(3), .js .service-listing.reveal.is-visible .service-row:nth-child(3) { transition-delay: .17s; }

/* Home: a journey with strict text/media separation */
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 79% 18%, rgba(215,169,76,.1), transparent 25rem), radial-gradient(ellipse at 12% 90%, rgba(87,52,22,.28), transparent 44rem), #090704; }
.hero-layout { min-height: min(760px, calc(100svh - 116px)); display: grid; grid-template-columns: minmax(0, .96fr) minmax(430px, 1.04fr); align-items: center; gap: clamp(44px, 6vw, 90px); padding-block: clamp(52px, 7vw, 92px); }
.hero-copy { min-width: 0; }
.hero-copy h1 { font-size: clamp(3.75rem, 3.75vw, 4.5rem); }
.hero-copy h1 span { display: block; }
.hero-copy h1 > span:not(.hero-script) { white-space: nowrap; }
.hero-copy h1 .hero-script { margin: -.03em 0 .01em; color: var(--champagne); font-size: .58em; font-style: italic; font-weight: 400; letter-spacing: -.025em; text-transform: lowercase; }
.hero-subline { margin-bottom: 14px; color: var(--gold-bright); font-family: var(--font-display); font-size: clamp(1.4rem, 2vw, 1.9rem); font-style: italic; }
.hero-lead { max-width: 59ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stage { position: relative; min-width: 0; min-height: 590px; }
.hero-stage::before { position: absolute; inset: 8% -4% -4% 8%; border: 1px solid rgba(242,209,138,.18); border-radius: 44% 56% 40% 60% / 55% 42% 58% 45%; content: ""; }
.hero-video-frame { position: absolute; z-index: 2; inset: 0; overflow: hidden; border: 1px solid rgba(242,209,138,.22); border-radius: 38px 132px 38px 38px; background: #090806; box-shadow: var(--shadow); }
.hero-video-frame::after { position: absolute; z-index: 2; inset: 0; background: linear-gradient(180deg, rgba(7,6,4,.04), transparent 45%, rgba(7,6,4,.72)); content: ""; pointer-events: none; }
.hero-video { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 54%; }
.detailing-sweep > img, .hero-video-frame.detailing-sweep > .hero-signature-video { opacity: .28; filter: saturate(.58) contrast(.84) brightness(.42) blur(.6px); transform: scale(1.025); transition: opacity 1.1s var(--ease), filter 1.3s var(--ease), transform 1.6s var(--ease); }
.detailing-sweep.is-clean > img, .hero-video-frame.detailing-sweep.is-clean > .hero-signature-video { opacity: 1; filter: saturate(.94) contrast(1.05) brightness(.94); transform: none; }
.detailing-sweep::before { position: absolute; z-index: 3; inset: -5% auto -5% -50%; width: 55%; transform: skewX(-9deg); background: linear-gradient(100deg, transparent, rgba(242,209,138,.26), rgba(255,255,255,.12), transparent); content: ""; pointer-events: none; transition: left 1.35s var(--ease); }
.detailing-sweep.is-clean::before { left: 115%; }
.hero-video-caption { position: absolute; z-index: 4; right: 22px; bottom: 18px; left: 22px; display: flex; justify-content: space-between; color: var(--champagne); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-bubble { position: absolute; z-index: 3; right: -7%; bottom: -5%; width: 36%; aspect-ratio: 1; border: 1px solid rgba(242,209,138,.2); border-radius: 58% 42% 62% 38%; pointer-events: none; }
.service-marquee { position: relative; z-index: 3; width: 100%; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #090705; }
.hero-copy .service-marquee { margin-top: 22px; border-radius: 2px; }
.service-marquee__track { display: flex; width: max-content; will-change: transform; animation: doll-marquee 24s linear infinite; }
.service-marquee__group { min-width: 100vw; flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; color: #c2b5a5; font-family: var(--font-ui); font-size: .66rem; font-weight: 700; letter-spacing: .13em; line-height: 1; white-space: nowrap; }
.service-marquee__group span { flex: none; padding: 12px 18px; }
.service-marquee__group i { flex: none; color: var(--gold-bright); font-size: .9rem; font-style: normal; line-height: 1; }
@keyframes doll-marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

.statement { background: linear-gradient(180deg, #0c0906, #171008); }
.statement-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); align-items: end; gap: clamp(44px, 7vw, 100px); }
.statement-grid > *, .split-heading > *, .compare-showcase > *, .service-rail > *, .faq-layout > *, .form-layout > *, .contact-grid > * { min-width: 0; }
.statement-grid h2 { font-size: clamp(3rem, 4.1vw, 5rem); }
.statement-copy { padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.018); }
.statement-copy > p { font-size: 1.08rem; }
.statement-note { display: grid; gap: 4px; padding-top: 20px; border-top: 1px solid var(--line); }
.statement-note span { color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .14em; }
.statement-note strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.service-ribbon { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-ribbon span { padding: 18px; color: var(--muted); font-size: .75rem; font-weight: 700; text-align: center; }
.service-ribbon span + span { border-left: 1px solid var(--line); }

.split-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr); align-items: end; gap: clamp(36px, 7vw, 100px); margin-bottom: clamp(38px, 5vw, 64px); }
.split-heading > p { max-width: 50ch; margin-bottom: 8px; }
.split-heading em { color: var(--champagne); font-weight: 400; text-transform: none; }
.home-packages .split-heading h2 { font-size: clamp(3rem, 4vw, 4.8rem); }
.home-packages .split-heading h2 em { font-size: .72em; line-height: 1.02; }
.wide-stage { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr); gap: 20px; }
.wide-media { position: relative; min-height: 500px; overflow: hidden; border-radius: 32px 90px 32px 32px; }
.wide-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.floating-copy { display: grid; align-content: end; gap: 8px; padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(150deg, rgba(242,209,138,.08), rgba(255,255,255,.018)); }
.floating-copy span { color: var(--gold); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.floating-copy strong { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 500; line-height: .95; }
.package-teaser { margin-top: 8px; }
.teaser-grid { border-top: 1px solid var(--line); }
.teaser-package { display: grid; grid-template-columns: 180px minmax(150px, .5fr) 120px 1fr; align-items: center; gap: 20px; padding: 22px 18px; border-bottom: 1px solid var(--line); transition: background .3s, padding .3s var(--ease); }
.teaser-package:hover, .teaser-package.featured { background: linear-gradient(90deg, rgba(242,209,138,.075), transparent); }
.teaser-package:hover { padding-inline: 26px 10px; }
.teaser-package h3, .teaser-package p { margin: 0; }
.teaser-no { color: var(--gold); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.teaser-price { color: var(--champagne); font-weight: 800; }
.teaser-package > p:last-child { font-size: .86rem; }
.teaser-action, .gallery-action { display: flex; justify-content: flex-end; margin-top: 26px; }

.compare-showcase { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); align-items: center; gap: clamp(50px, 7vw, 96px); }
.compare-copy h2 { font-size: clamp(3.15rem, 4vw, 5rem); }
.compare-copy h2 em, .page-hero h1 em, .form-intro h2 em { display: block; color: var(--paper); font-weight: 400; }
.compare-copy h2 span { display: block; }
.compare-shell { margin: 0; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 30px; background: var(--surface); box-shadow: var(--shadow); }
.compare-frame { --compare-pos: 50%; position: relative; aspect-ratio: 1.18; overflow: hidden; background: #080705; }
.compare-frame > img, .compare-after-wrap, .compare-after-wrap img { width: 100%; height: 100%; object-fit: cover; }
.compare-after-wrap { position: absolute; inset: 0; width: 100%; overflow: hidden; clip-path: inset(0 calc(100% - var(--compare-pos)) 0 0); }
.compare-after-wrap img { width: 100%; max-width: none; }
.compare-divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--compare-pos); width: 2px; transform: translateX(-1px); background: var(--champagne); box-shadow: 0 0 12px rgba(242,209,138,.6); }
.compare-knob { position: absolute; z-index: 4; top: 50%; left: var(--compare-pos); width: 48px; height: 48px; display: grid; place-items: center; transform: translate(-50%, -50%); border: 1px solid var(--champagne); border-radius: 50%; background: #13100c; color: var(--champagne); }
.compare-frame input { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.compare-tag { position: absolute; z-index: 4; top: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(7,6,4,.8); color: var(--paper); font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.compare-tag-before { left: 16px; }
.compare-tag-after { right: 16px; }
.compare-shell figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; }
.compare-shell figcaption span { color: var(--gold); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.compare-shell figcaption strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }

.home-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.home-gallery article { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.home-gallery article:nth-child(1) { grid-column: span 4; }
.home-gallery article:nth-child(2) { grid-column: span 5; }
.home-gallery article:nth-child(3) { grid-column: span 3; }
.home-gallery img { width: 100%; height: clamp(440px, 38vw, 560px); object-fit: cover; }
.gallery-caption { display: grid; gap: 4px; min-height: 88px; align-content: center; padding: 16px 18px; border-top: 1px solid var(--line); }
.gallery-caption span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.gallery-caption strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }

.process { overflow: hidden; background: radial-gradient(circle at 50% 48%, rgba(215,169,76,.09), transparent 26rem), #0a0806; }
.process .split-heading h2 { font-size: clamp(3.1rem, 4.3vw, 5rem); }
.process-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(34px, 6vw, 86px); padding-top: 54px; }
.process-track article { position: relative; z-index: 3; padding-top: 26px; }
.process-track h3 { margin-bottom: 10px; }
.process-track p { font-size: .86rem; }
.process-node { position: absolute; top: -5px; left: 0; width: 12px; height: 12px; border: 2px solid var(--gold-bright); border-radius: 50%; background: var(--ink); box-shadow: 0 0 18px rgba(242,209,138,.5); }
.process-curve { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 120px; overflow: visible; }
.process-curve path { fill: none; stroke: rgba(242,209,138,.34); stroke-width: 1.5; stroke-dasharray: 1; stroke-dashoffset: 1; vector-effect: non-scaling-stroke; }
.process-light { fill: var(--champagne); stroke: rgba(255,255,255,.72); stroke-width: 1; opacity: 0; filter: drop-shadow(0 0 8px var(--gold)); vector-effect: non-scaling-stroke; transition: opacity .2s ease; }
.process-track.is-progressing .process-light { opacity: 1; }

.contact-band { position: relative; padding-block: clamp(68px, 7vw, 100px); overflow: hidden; border-top: 1px solid var(--line); background: radial-gradient(circle at 84% 14%, rgba(242,209,138,.1), transparent 23rem), linear-gradient(135deg, #171008, #090705); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); align-items: center; gap: clamp(48px, 8vw, 110px); }
.contact-grid h2 { font-size: clamp(3.2rem, 4.4vw, 5.2rem); }
.contact-lines { display: grid; gap: 12px; }
.contact-lines a { display: grid; grid-template-columns: 82px 1fr auto; align-items: center; gap: 14px; min-height: 86px; padding: 18px 22px; border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(255,255,255,.022); transition: background .3s, border-color .3s, transform .3s var(--ease); }
.contact-lines a:hover { transform: translateX(5px); border-color: var(--gold-bright); background: rgba(242,209,138,.09); }
.contact-lines span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .11em; }
.contact-lines strong { min-width: 0; overflow-wrap: normal; font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; }
.contact-lines i { color: var(--champagne); font-style: normal; }

/* Shared page openings: no text/image collision */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 84% 18%, rgba(215,169,76,.09), transparent 24rem), #0a0806; }
.page-hero-grid { min-height: 570px; display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr); align-items: center; gap: clamp(48px, 6vw, 88px); padding-block: clamp(46px, 6vw, 72px); }
.page-hero-copy { min-width: 0; }
.page-hero-copy h1 span, .page-hero-copy h1 em, .page-hero-copy h1 strong { display: block; font-style: normal; font-weight: 500; }
.page-hero-copy h1 em { color: var(--champagne); font-style: italic; }
.page-hero-copy h1 strong { color: var(--gold-bright); }
.page-hero-copy > p:not(.eyebrow) { max-width: 57ch; }
.page-hero-media { position: relative; min-width: 0; min-height: 460px; }
.page-hero-image { position: absolute; z-index: 2; inset: 0; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 34px 112px 34px 34px; box-shadow: var(--shadow); }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-orbit { position: absolute; z-index: 1; inset: 10% -7% -7% 10%; border: 1px solid rgba(242,209,138,.16); border-radius: 46% 54% 42% 58%; }
.page-hero-index { position: absolute; z-index: 5; right: 20px; bottom: 18px; color: var(--champagne); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.packages-opener .page-hero-image img { object-position: center 58%; }
.gallery-opener .page-hero-image { inset: 0 0 0 18%; }
.gallery-opener-secondary { position: absolute; z-index: 4; bottom: 28px; left: 0; width: 34%; height: 38%; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 24px 58px 24px 24px; box-shadow: var(--shadow); }
.gallery-opener-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* Text-only services */
.service-text-hero { position: relative; overflow: hidden; padding-block: clamp(90px, 11vw, 160px); border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 30%, rgba(215,169,76,.12), transparent 25rem), linear-gradient(145deg, #080705, #171008); }
.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr); align-items: end; gap: clamp(50px, 9vw, 130px); }
.service-hero-copy h1 span, .service-hero-copy h1 em { display: block; }
.service-hero-copy h1 em { color: var(--gold-bright); font-weight: 400; }
.service-hero-note { padding: 30px; border: 1px solid var(--line-strong); border-radius: 22px; background: rgba(242,209,138,.045); }
.service-hero-note span { display: block; margin-bottom: 12px; color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .13em; }
.service-hero-note strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; line-height: 1.05; }
.service-overview { background: linear-gradient(180deg, #0d0a07, #15100b 45%, #090705); }
.service-intro { display: grid; grid-template-columns: minmax(0, .8fr) minmax(300px, 1.2fr); gap: clamp(46px, 8vw, 120px); margin-bottom: clamp(66px, 8vw, 110px); }
.service-intro > p { max-width: 62ch; font-size: 1.08rem; }
.service-phases { border-top: 1px solid var(--line-strong); }
.service-phase { display: grid; grid-template-columns: 190px minmax(220px, .55fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 70px); padding-block: clamp(54px, 6vw, 84px); border-bottom: 1px solid var(--line); }
.service-phase-index { color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-phase-heading h2 { margin-bottom: 14px; font-size: clamp(2.8rem, 4vw, 4.6rem); }
.service-phase-heading p { max-width: 38ch; font-size: .88rem; }
.service-listing { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 42px minmax(170px, .7fr) minmax(0, 1.3fr); align-items: start; gap: 18px; padding-block: 20px; border-bottom: 1px solid var(--line); }
.service-row > span { color: var(--gold-bright); font-size: .67rem; font-weight: 800; }
.service-row h3 { margin: 0; font-family: var(--font-ui); font-size: .98rem; font-weight: 800; line-height: 1.45; }
.service-row p { margin: 0; font-size: .84rem; }
.service-extra { background: #0a0806; }
.service-extra-grid { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: clamp(52px, 8vw, 110px); }
.service-extra-list { border-top: 1px solid var(--line-strong); }
.service-extra-list div { display: flex; justify-content: space-between; gap: 24px; padding-block: 20px; border-bottom: 1px solid var(--line); }
.service-extra-list strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.service-extra-list span { color: var(--quiet); font-size: .72rem; font-weight: 700; text-align: right; }

/* Packages */
.detailing-levels { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 30px; background: #0c0906; box-shadow: var(--shadow); }
.level-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.level-tabs button { position: relative; min-height: 104px; display: grid; grid-template-columns: 36px 1fr; align-content: center; gap: 2px 12px; padding: 18px 22px; border: 0; border-right: 1px solid var(--line); background: transparent; text-align: left; }
.level-tabs button:last-child { border-right: 0; }
.level-tabs button::after { position: absolute; right: 18px; bottom: -1px; left: 18px; height: 3px; transform: scaleX(0); background: var(--gold-bright); content: ""; transition: transform .35s var(--ease); }
.level-tabs button:hover, .level-tabs button.is-active { background: rgba(242,209,138,.075); }
.level-tabs button.is-active::after { transform: scaleX(1); }
.level-tabs span { grid-row: span 2; color: var(--gold); font-size: .68rem; font-weight: 800; }
.level-tabs strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.level-tabs em { color: var(--muted); font-size: .75rem; font-style: normal; font-weight: 700; }
.level-badge { position: absolute; top: 12px; right: 14px; padding: 4px 7px; border: 1px solid rgba(242,209,138,.42); border-radius: 999px; background: rgba(242,209,138,.11); color: var(--gold-bright); font-size: .54rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.level-stage { position: relative; min-height: 510px; }
.level-panel { min-height: 510px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); animation: panelIn .42s var(--ease) both; }
.level-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateX(22px); } }
.level-visual { position: relative; min-height: 510px; margin: 0; overflow: hidden; border-radius: 0 90px 0 0; background: #070604; }
.level-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,6,4,.08), transparent 58%, rgba(7,6,4,.3)); content: ""; pointer-events: none; }
.level-visual img, .level-visual video { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.72) contrast(1.08) brightness(.75); }
.level-video-basic { object-position: center; }
.level-video-standard { object-position: 54% center; }
.level-video-premium { object-position: center 58%; }
.level-content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(36px, 5vw, 70px); }
.level-index { color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
.level-content h2 { margin-block: 14px 6px; }
.level-claim { color: var(--champagne); font-family: var(--font-display); font-size: 1.55rem; font-style: italic; }
.package-benefits { width: 100%; margin: 18px 0 28px; padding: 0; list-style: none; }
.package-benefits li { padding: 12px 0 12px 24px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.package-benefits li::before { margin-left: -24px; margin-right: 12px; color: var(--gold); content: "✓"; }
.level-swipe-hint { display: none; }
.price-note { max-width: 76ch; margin: 26px 0 0; font-size: .78rem; }
.service-rail { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); align-items: start; gap: clamp(50px, 8vw, 110px); }
.service-rail h2 { font-size: clamp(2.5rem, 2.5vw, 3rem); }
.addon-list { border-top: 1px solid var(--line-strong); }
.addon-list > div { width: 100%; min-height: 76px; display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 16px; padding: 0 12px; border-bottom: 1px solid var(--line); }
.addon-list > div > span { color: var(--gold); font-size: .66rem; font-weight: 800; }
.addon-list h3 { margin: 0; font-family: var(--font-ui); font-size: 1rem; font-weight: 800; }
.addon-list small { color: var(--muted); }

/* Gallery */
.gallery-filters { position: sticky; z-index: 20; top: var(--header-height); display: flex; justify-content: center; gap: 30px; margin-bottom: 32px; padding-block: 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(8,7,5,.94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.gallery-filters button { position: relative; padding: 8px 0; border: 0; background: transparent; color: var(--quiet); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.gallery-filters button::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; transform: scaleX(0); background: var(--gold-bright); content: ""; transition: transform .3s; }
.gallery-filters button.is-active { color: var(--paper); }
.gallery-filters button.is-active::after { transform: scaleX(1); }
.gallery-compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.editorial-gallery { display: grid; gap: 24px; transition: opacity .2s; }
.editorial-gallery.is-filtering { opacity: .35; }
.gallery-cluster { display: grid; gap: 24px; }
.gallery-cluster-lead, .gallery-cluster-cascade, .gallery-cluster-finale { grid-template-columns: repeat(3, 1fr); }
.gallery-cluster-duet { grid-template-columns: 1.2fr .8fr; }
.gallery-cluster-triptych { grid-template-columns: .8fr 1.2fr .8fr; }
.gallery-item { min-width: 0; display: grid; grid-template-rows: 1fr auto; overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); color: var(--paper); text-align: left; }
.gallery-item[hidden], .gallery-cluster[hidden] { display: none; }
.gallery-item img { width: 100%; height: clamp(390px, 42vw, 620px); min-height: 0; object-fit: cover; transition: transform .7s var(--ease), filter .4s; }
.gallery-item:hover img { transform: scale(1.035); filter: brightness(1.05); }
.gallery-item span { padding: 15px 18px; border-top: 1px solid var(--line); color: var(--champagne); font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.gallery-cluster-duet .gallery-item:first-child img { min-height: 520px; }
.gallery-cluster-duet .gallery-item:last-child img { min-height: 520px; }
.lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 28px; background: rgba(3,2,1,.94); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { width: min(1100px, 84vw); }
.lightbox-figure { height: min(74vh, 780px); margin: 0; display: grid; place-items: center; }
.lightbox-image { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox-caption { display: flex; justify-content: space-between; gap: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.lightbox-caption > div { display: grid; }
.lightbox-meta, .lightbox-count { color: var(--gold); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.lightbox-control { position: absolute; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(15,12,8,.9); color: var(--paper); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { top: 50%; left: 24px; }
.lightbox-next { top: 50%; right: 24px; }

/* Contact */
.contact-opener .page-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); }
.contact-constellation { min-height: 420px; display: grid; align-content: center; gap: 14px; }
.contact-orbit { position: relative; z-index: 2; min-height: 158px; display: grid; grid-template-columns: 1fr auto; align-content: center; gap: 4px 18px; padding: 30px; border: 1px solid var(--line-strong); border-radius: 28px 78px 28px 28px; background: rgba(242,209,138,.055); transition: border-color .3s, background .3s, transform .3s var(--ease); }
.contact-orbit + .contact-orbit { border-radius: 28px 28px 78px 28px; }
.contact-orbit:hover { transform: translateX(5px); border-color: var(--gold-bright); background: rgba(242,209,138,.1); }
.contact-orbit span { color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-orbit strong { grid-column: 1; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 500; }
.contact-orbit i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--champagne); font-style: normal; }
.contact-orbit-line { display: none; }
.contact-bridge { padding-block: 24px; border-bottom: 1px solid var(--line); }
.contact-bridge .shell { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--muted); font-size: .72rem; }
.contact-bridge span { color: var(--gold); font-weight: 800; letter-spacing: .09em; }
.contact-bridge i { color: var(--gold-bright); font-style: normal; }
.form-layout { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); align-items: start; gap: clamp(54px, 8vw, 110px); }
.form-intro { position: sticky; top: var(--header-offset); }
.form-intro h1 span { display: block; }
.request-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line-strong); border-radius: 28px; background: rgba(255,255,255,.018); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-field { display: grid; gap: 7px; }
.form-field.full, .form-consent, .form-note, .form-status, .request-form > .button { grid-column: 1 / -1; }
.form-field label { color: var(--champagne); font-size: .72rem; font-weight: 800; }
.form-field label span { color: var(--quiet); font-weight: 600; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 54px; padding: 12px 4px; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; background: transparent; font-size: 16px; outline: 0; transition: border-color .3s, box-shadow .3s; }
.form-field select { color-scheme: dark; background-color: #15100b; color: var(--paper); }
.form-field select option { background-color: #15100b; color: var(--paper); }
.form-field select option[value=""] { color: var(--quiet); }
.form-field textarea { min-height: 104px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold-bright); box-shadow: 0 1px var(--gold-bright); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #aa9e90; opacity: 1; }
.field-error { min-height: 18px; color: #ffb6a5; font-size: .7rem; }
.form-consent { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 6px 10px; align-items: start; }
.form-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--gold-bright); }
.form-consent label { color: var(--muted); font-size: .76rem; line-height: 1.55; }
.form-consent label a { color: var(--champagne); text-decoration: underline; text-underline-offset: 3px; }
.form-consent .field-error { grid-column: 2; }
.form-note { margin: 0; color: var(--muted); font-size: .72rem; }
.form-status { min-height: 0; padding: 0; border: 1px solid transparent; border-radius: 14px; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.form-status:not(:empty) { min-height: 50px; padding: 13px 16px; }
.form-status.is-success { border-color: rgba(126, 193, 139, .46); background: rgba(77, 142, 91, .12); color: #c8edcf; }
.form-status.is-error { border-color: rgba(221, 120, 99, .5); background: rgba(169, 66, 46, .12); color: #ffd0c6; }
.form-status.is-info { border-color: rgba(242, 209, 138, .48); background: rgba(215, 169, 76, .1); color: var(--champagne); }
.request-form > .button { justify-self: start; }
.request-form > .button:disabled { cursor: wait; opacity: .68; transform: none; }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr); gap: clamp(50px, 8vw, 110px); }
.faq-layout h2 { font-size: clamp(3rem, 3.9vw, 4.75rem); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; min-height: 86px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 0; border: 0; background: transparent; color: var(--paper); text-align: left; }
.faq-question > span:first-child { font-size: 1rem; font-weight: 700; }
.faq-question > span:last-child { color: var(--gold-bright); font-size: 1.7rem; transition: transform .3s; }
.faq-question[aria-expanded="true"] > span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-answer > div { min-height: 0; overflow: hidden; }
.faq-answer p { max-width: 66ch; padding: 0 0 24px; margin: 0; }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

/* Legal */
.legal-page { min-height: 52vh; background: linear-gradient(145deg, #090705, #15100b 58%, #0b0805); }
.legal-hero { padding-block: clamp(68px, 8vw, 116px) clamp(44px, 5vw, 70px); }
.legal-wrap { max-width: 980px; }
.legal-wrap h1 { max-width: 100%; margin: 0; font-size: clamp(4.2rem, 8vw, 7.6rem); line-height: .9; text-transform: none; overflow-wrap: anywhere; }
.legal-wrap h1.legal-title-privacy { overflow-wrap: normal; }
.legal-meta { margin: 18px 0 0; color: var(--quiet); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-rule { width: 100%; height: 1px; margin-top: clamp(34px, 5vw, 58px); background: linear-gradient(90deg, var(--gold), rgba(242,209,138,.12), transparent); }
.legal-editorial { padding-bottom: clamp(84px, 10vw, 140px); }
.legal-layout { display: grid; grid-template-columns: minmax(180px, 230px) minmax(0, 1fr); gap: clamp(42px, 7vw, 96px); align-items: start; }
.legal-layout-simple { grid-template-columns: minmax(0, 860px); }
.legal-toc { position: sticky; top: calc(var(--header-offset) + 24px); padding-top: 4px; }
.legal-toc > span { display: block; margin-bottom: 16px; color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.legal-toc nav { display: grid; border-top: 1px solid var(--line); }
.legal-toc a { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--quiet); font-size: .78rem; line-height: 1.35; text-decoration: none; transition: color .2s ease, padding-left .2s ease; }
.legal-toc a:hover, .legal-toc a:focus-visible { padding-left: 5px; color: var(--champagne); }
.legal-article { min-width: 0; max-width: 820px; }
.legal-section { padding: clamp(34px, 5vw, 54px) 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-offset) + 24px); }
.legal-section:first-child { padding-top: 0; border-top: 0; }
.legal-kicker { margin: 0 0 10px; color: var(--gold); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.legal-section h2 { margin: 0 0 20px; font-size: clamp(2rem, 3.1vw, 2.85rem); line-height: 1.04; text-transform: none; }
.legal-section h3 { margin: 28px 0 10px; color: var(--paper); font-family: var(--font-ui); font-size: 1rem; font-weight: 800; letter-spacing: .02em; text-transform: none; }
.legal-section p, .legal-section li, .legal-address { max-width: 72ch; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.08rem); line-height: 1.75; }
.legal-section p { margin: 0 0 16px; }
.legal-section ul { display: grid; gap: 8px; padding-left: 1.25rem; margin: 0 0 18px; }
.legal-address { display: grid; gap: 2px; margin: 0; font-style: normal; }
.legal-address strong { margin-bottom: 7px; color: var(--paper); }
.legal-contact-list { display: grid; max-width: 620px; margin-top: 24px; border-top: 1px solid var(--line); }
.legal-contact-list a { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 20px; min-height: 54px; align-items: center; border-bottom: 1px solid var(--line); color: var(--champagne); text-decoration: none; overflow-wrap: anywhere; }
.legal-contact-list a[href^="tel:"] strong { white-space: nowrap; }
.legal-contact-list span { color: var(--quiet); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal-section a { color: var(--champagne); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.legal-note { padding: 20px 22px; margin-top: 24px; border-left: 2px solid var(--gold); background: rgba(242,209,138,.045); }
.legal-note p:last-child { margin-bottom: 0; }

/* A stronger close on every page */
.site-footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: radial-gradient(circle at 12% 12%, rgba(215,169,76,.11), transparent 25rem), #050403; }
.footer-cta { padding-block: clamp(72px, 9vw, 120px); border-bottom: 1px solid var(--line); }
.footer-cta-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); align-items: end; gap: clamp(44px, 8vw, 110px); }
.footer-cta h2 { margin: 0; font-size: clamp(3.8rem, 6.5vw, 7.2rem); }
.footer-cta h2 span { display: block; color: var(--gold-bright); font-style: italic; }
.footer-cta-copy { display: grid; gap: 18px; }
.footer-cta-copy p { margin: 0; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: clamp(32px, 5vw, 70px); padding-block: 46px; }
.footer-brand { width: 210px; }
.footer-intro p { max-width: 32ch; margin-top: 18px; font-size: .82rem; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links h3 { margin: 0 0 10px; color: var(--gold); font-family: var(--font-ui); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: var(--muted); font-size: .8rem; transition: color .25s, transform .25s; }
.footer-links a:hover { transform: translateX(3px); color: var(--paper); }
.footer-bottom { min-height: 62px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-top: 1px solid var(--line); color: var(--quiet); font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-signoff { display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin-left: auto; }
.footer-credit { color: var(--champagne); letter-spacing: .04em; text-transform: none; transition: color .25s; }
.footer-credit:hover { color: var(--gold-bright); }
.back-to-top { min-height: 40px; display: inline-flex; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(242, 209, 138, .045); color: var(--champagne); font-size: .65rem; font-weight: 800; letter-spacing: .08em; line-height: 1; transition: border-color .25s, background .25s, transform .25s var(--ease); }
.back-to-top:hover { transform: translateY(-2px); border-color: var(--gold-bright); background: rgba(242, 209, 138, .1); }
.back-to-top i { color: var(--gold-bright); font-size: .9rem; font-style: normal; }
.mobile-cta { position: fixed; z-index: 80; right: 12px; bottom: 12px; left: 12px; display: none; transform: translateY(140%); transition: transform .4s var(--ease); }
.mobile-cta a { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 20px; border: 1px solid var(--champagne); border-radius: 18px; background: linear-gradient(135deg, #fff2c8, #d7a94c); color: #171008; box-shadow: 0 16px 38px rgba(0,0,0,.45); }
.mobile-cta span { font-weight: 800; }
.mobile-cta strong { font-size: .72rem; }

/* Page-specific density: generous, but every vertical interval has a purpose. */
.page-home .section { padding-block: clamp(70px, 7vw, 104px); }
.page-home .home-packages { padding-block: clamp(68px, 6.5vw, 94px); }
.page-home .process { padding-block-end: clamp(62px, 6vw, 84px); }
.package-compare-section { padding-block: clamp(88px, 8vw, 122px) clamp(58px, 5vw, 78px); }
.package-intro h1, .gallery-main h1 { font-size: clamp(3.6rem, 5.5vw, 6.3rem); }
.form-intro h1 { font-size: clamp(2.4rem, 2.5vw, 3rem); white-space: normal; }
.package-intro > p { max-width: 56ch; }
.addon-rail-section { padding-block: clamp(56px, 5.5vw, 78px); }
.package-faq { padding-block: clamp(56px, 5.5vw, 82px); }
.page-gallery .gallery-main { padding-block: clamp(84px, 8vw, 118px) clamp(68px, 6vw, 92px); }
.page-contact #anfrage { padding-block: clamp(84px, 8vw, 116px) clamp(62px, 6vw, 88px); }
.page-contact #faq { padding-block: clamp(56px, 5.5vw, 82px); }

@media (max-width: 1120px) {
  .nav-inner { grid-template-columns: 200px 1fr auto; }
  .desktop-nav, .nav-phone { display: none; }
  .nav-actions { justify-self: end; }
  .menu-toggle { display: grid; }
  .hero-layout { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: 42px; }
  .page-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); gap: 48px; }
  .teaser-package { grid-template-columns: 150px minmax(130px,.5fr) 100px 1fr; }
  .gallery-cluster-lead, .gallery-cluster-cascade, .gallery-cluster-finale, .gallery-cluster-triptych { grid-template-columns: repeat(2, 1fr); }
  .gallery-cluster .gallery-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --header-height: 68px; --header-offset: 82px; --announcement-height: 36px; }
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .announcement-inner > span:nth-child(2) { max-width: none; overflow: visible; text-overflow: clip; white-space: nowrap; font-size: 0; }
  .announcement-inner > span:nth-child(2)::after { font-size: .62rem; content: "Innenraumaufbereitung"; }
  .nav-inner { min-height: 68px; grid-template-columns: 170px 1fr auto; }
  .nav-actions > .button { display: none; }
  .js .page-hero-copy.reveal, .js .form-intro.reveal, .js .compare-copy.reveal,
  .js .hero-stage.reveal, .js .page-hero-media.reveal, .js .compare-shell.reveal, .js .request-form.reveal { transform: translate3d(0, 30px, 0); }
  .js .page-hero-copy.reveal.is-visible, .js .form-intro.reveal.is-visible, .js .compare-copy.reveal.is-visible,
  .js .hero-stage.reveal.is-visible, .js .page-hero-media.reveal.is-visible, .js .compare-shell.reveal.is-visible, .js .request-form.reveal.is-visible { transform: none; }
  .hero-layout, .page-hero-grid, .statement-grid, .split-heading, .wide-stage, .compare-showcase, .contact-grid, .service-hero-grid, .service-intro, .service-extra-grid, .service-rail, .form-layout, .faq-layout, .footer-cta-grid { grid-template-columns: 1fr; }
  .hero-layout { min-height: 0; gap: 42px; }
  .hero-copy h1 { font-size: clamp(3.9rem, 12.5vw, 6rem); }
  .hero-copy h1 > span:not(.hero-script) { white-space: normal; }
  .hero-stage { min-height: min(620px, 110vw); }
  .statement-grid, .service-hero-grid { align-items: start; }
  .split-heading { align-items: start; }
  .wide-stage { gap: 16px; }
  .floating-copy { min-height: 230px; }
  .compare-showcase { align-items: start; }
  .teaser-package { grid-template-columns: 115px 1fr auto; }
  .teaser-package > p:last-child { grid-column: 2 / -1; }
  .process-track { grid-template-columns: 1fr; gap: 12px; padding-top: 10px; }
  .process-track article { padding: 20px 0 20px 34px; border-left: 1px solid var(--line-strong); }
  .process-node { top: 30px; left: -6px; }
  .process-curve, .process-light { display: none; }
  .page-hero-grid { min-height: 0; padding-block: 62px; }
  .page-hero-media { min-height: min(590px, 105vw); }
  .gallery-opener .page-hero-image { inset-inline-start: 12%; }
  .service-phase { grid-template-columns: 120px minmax(0, 1fr); }
  .service-listing { grid-column: 1 / -1; }
  .level-panel { grid-template-columns: 1fr; }
  .level-visual { min-height: 450px; border-radius: 0 0 70px 0; }
  .level-content { padding: 38px; }
  .gallery-compare-grid { grid-template-columns: 1fr; }
  .gallery-cluster-lead, .gallery-cluster-cascade, .gallery-cluster-finale, .gallery-cluster-triptych, .gallery-cluster-duet { grid-template-columns: repeat(2, 1fr); }
  .contact-opener .page-hero-grid { grid-template-columns: 1fr; }
  .contact-constellation { min-height: 0; }
  .contact-bridge .shell { flex-wrap: wrap; justify-content: flex-start; }
  .form-intro { position: static; }
  .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-toc { position: static; }
  .legal-toc nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid .footer-links:last-child { grid-column: 2; }
  .footer-bottom { flex-wrap: wrap; padding-block: 12px; }
}

@media (max-width: 620px) {
  :root { --header-height: 64px; --header-offset: 78px; --announcement-height: 36px; }
  body.page-home, body.page-packages, body.page-gallery, body.page-contact { padding-bottom: 78px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding-block: 62px; }
  h1 { font-size: clamp(3.45rem, 16vw, 5.1rem); }
  h2 { font-size: clamp(2.8rem, 13.5vw, 4.4rem); }
  .compare-copy h2, .service-rail h2, .faq-layout h2, .contact-grid h2, .process .split-heading h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .service-rail h2 { font-size: clamp(2rem, 8vw, 2.45rem); }
  .announcement-inner { min-height: 36px; font-size: .58rem; }
  .announcement-inner a { min-height: 36px; display: inline-flex; align-items: center; }
  .announcement-inner a { font-size: 0; }
  .announcement-inner a::after { font-size: .62rem; content: "TERMIN ↗"; }
  .service-marquee__track { animation-duration: 28s; }
  .service-marquee__group { font-size: .6rem; letter-spacing: .11em; }
  .service-marquee__group span { padding: 10px 14px; }
  .service-marquee__group i { font-size: .78rem; }
  .nav-inner { min-height: 64px; grid-template-columns: 150px 1fr auto; }
  .brand { width: 150px; }
  .legal-hero { padding-block: 56px 40px; }
  .legal-wrap h1 { font-size: clamp(3.15rem, 15vw, 4.7rem); overflow-wrap: anywhere; }
  .legal-meta { font-size: .72rem; }
  .legal-toc nav { grid-template-columns: 1fr; }
  .legal-toc a { min-height: 44px; display: flex; align-items: center; }
  .legal-section { padding-block: 34px; }
  .legal-section h2 { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .legal-section p, .legal-section li, .legal-address { font-size: 1rem; line-height: 1.7; }
  .legal-contact-list a { grid-template-columns: 1fr; gap: 2px; min-height: 64px; align-content: center; }
  .hero-layout { padding-block: 48px 58px; }
  .js .page-hero-copy.reveal, .js .form-intro.reveal, .js .compare-copy.reveal,
  .js .hero-stage.reveal, .js .page-hero-media.reveal, .js .compare-shell.reveal, .js .request-form.reveal { transform: translate3d(0, 28px, 0); }
  .js .page-hero-copy.reveal.is-visible, .js .form-intro.reveal.is-visible, .js .compare-copy.reveal.is-visible,
  .js .hero-stage.reveal.is-visible, .js .page-hero-media.reveal.is-visible, .js .compare-shell.reveal.is-visible, .js .request-form.reveal.is-visible { transform: none; }
  .hero-copy h1 { font-size: clamp(3.4rem, 15.8vw, 4.7rem); }
  .form-intro h1 { font-size: clamp(2.35rem, 11vw, 3rem); }
  .page-contact .form-intro h1 { font-size: clamp(1.34rem, 6.8vw, 2.15rem); }
  .hero-actions, .footer-cta-actions { display: grid; }
  .hero-actions .button, .hero-actions .line-link, .footer-cta-actions .button { width: 100%; }
  .hero-stage { min-height: 112vw; max-height: 580px; }
  .hero-video-frame { border-radius: 24px 78px 24px 24px; }
  .hero-video-caption { right: 14px; bottom: 13px; left: 14px; }
  .hero-video-caption strong { display: none; }
  .service-ribbon { grid-template-columns: 1fr; }
  .service-ribbon span + span { border-top: 1px solid var(--line); border-left: 0; }
  .wide-media { min-height: 112vw; border-radius: 24px 72px 24px 24px; }
  .teaser-package { grid-template-columns: 1fr auto; gap: 7px 16px; padding: 20px 8px; }
  .teaser-no, .teaser-package > p:last-child { grid-column: 1 / -1; }
  .teaser-package > p:last-child { margin-top: 8px; }
  .home-gallery { grid-template-columns: 1fr; }
  .home-gallery article:nth-child(n) { grid-column: 1; }
  .home-gallery img { height: auto; aspect-ratio: 4 / 4.7; }
  .compare-frame { aspect-ratio: 4 / 4.3; }
  .contact-lines a { grid-template-columns: 70px 1fr auto; padding-inline: 16px; }
  .contact-lines strong { font-size: 1.15rem; }
  .page-hero-grid { padding-block: 40px 50px; }
  .page-hero-media { min-height: 112vw; }
  .gallery-opener .page-hero-image { inset: 0 0 0 10%; }
  .gallery-opener-secondary { bottom: 18px; width: 38%; height: 34%; }
  .service-text-hero { padding-block: 72px; }
  .service-hero-note { padding: 22px; }
  .service-phase { grid-template-columns: 1fr; gap: 18px; }
  .service-listing { grid-column: auto; }
  .service-row { grid-template-columns: 32px 1fr; }
  .service-row p { grid-column: 2; }
  .service-extra-list div { display: grid; gap: 5px; }
  .service-extra-list span { text-align: left; }
  .page-packages .package-intro h1 { font-size: clamp(2.35rem, 9.8vw, 2.8rem); line-height: .94; letter-spacing: -.055em; }
  .level-tabs { overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
  .level-tabs::-webkit-scrollbar { display: none; }
  .level-tabs button { min-width: 150px; min-height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; scroll-snap-align: center; padding: 30px 10px 12px; text-align: center; }
  .level-tabs button > span { position: absolute; top: 11px; left: 12px; grid-row: auto; }
  .level-tabs strong { max-width: 100%; font-size: 1.35rem; line-height: 1; white-space: nowrap; }
  .level-tabs em { font-size: .7rem; line-height: 1; }
  .level-badge { top: 8px; right: 8px; font-size: .48rem; }
  .level-stage { min-height: 0; }
  .level-panel { min-height: 0; }
  .level-visual { min-height: 106vw; }
  .level-content { padding: 28px 22px 34px; }
  .level-swipe-hint { display: block; margin: 12px 16px 16px; color: var(--quiet); font-size: .68rem; text-align: center; }
  .addon-list > div { min-height: 70px; grid-template-columns: 34px 1fr; }
  .addon-list small { grid-column: 2; margin-top: -16px; }
  .gallery-filters { top: var(--header-height); justify-content: flex-start; gap: 24px; overflow-x: auto; white-space: nowrap; }
  .gallery-filters button { min-height: 44px; }
  .gallery-cluster-lead, .gallery-cluster-cascade, .gallery-cluster-finale, .gallery-cluster-triptych, .gallery-cluster-duet { grid-template-columns: 1fr; }
  .gallery-cluster .gallery-item:last-child:nth-child(odd) { grid-column: auto; }
  .gallery-item img, .gallery-cluster-duet .gallery-item:first-child img, .gallery-cluster-duet .gallery-item:last-child img { height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  .lightbox { padding: 16px; }
  .lightbox-inner { width: 100%; }
  .lightbox-control { width: 44px; height: 44px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .contact-orbit { min-height: 136px; padding: 22px; }
  .contact-bridge { display: none; }
  .request-form { grid-template-columns: 1fr; padding: 24px 18px; }
  .form-field.full, .form-consent, .form-note, .form-status, .request-form > .button { grid-column: auto; }
  .request-form > .button { width: 100%; }
  .faq-question { min-height: 74px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-grid .footer-links:last-child { grid-column: auto; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
  .header-scroll-button { top: calc(var(--header-height) + 9px); min-height: 38px; padding-inline: 14px; }
  .page-home .header-scroll-button { top: calc(var(--announcement-height) + var(--header-height) + 9px); }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .footer-signoff { width: 100%; flex-wrap: wrap; justify-content: flex-start; gap: 10px 16px; margin-left: 0; }
  .back-to-top { margin-left: auto; }
  .mobile-cta { display: block; }
  .mobile-cta-visible .mobile-cta { transform: none; }
}

@media (max-width: 390px) {
  .hero-copy h1 { font-size: clamp(2.55rem, 11vw, 2.7rem); }
  .gallery-main h1 { font-size: 3rem; }
  .page-packages .package-intro h1 { font-size: clamp(2.2rem, 9.8vw, 2.5rem); }
  .page-contact .form-intro h1 { font-size: clamp(1.34rem, 6.8vw, 1.85rem); }
  .page-hero-copy h1 { font-size: 3.35rem; }
  .contact-lines a { grid-template-columns: 1fr auto; }
  .contact-lines span { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal, .js .page-hero-copy.reveal, .js .hero-stage.reveal, .js .page-hero-media.reveal, .js .compare-shell.reveal, .js .request-form.reveal, .js .form-intro.reveal, .js .compare-copy.reveal, .js .wide-stage.reveal, .js .editorial-gallery.reveal { opacity: 1; transform: none; clip-path: none; }
  .js .home-gallery.reveal article, .js .editorial-gallery.reveal .gallery-item, .js .service-listing.reveal .service-row { opacity: 1; transform: none; }
  .detailing-sweep > img, .detailing-sweep.is-clean > img, .hero-video-frame.detailing-sweep > .hero-signature-video, .hero-video-frame.detailing-sweep.is-clean > .hero-signature-video { opacity: 1; filter: saturate(.94) contrast(1.04) brightness(.92); transform: none; }
  .detailing-sweep::before { display: none; }
  .service-marquee__track { animation: none !important; transform: none !important; }
}
