:root {
  --paper: #f1f0eb;
  --paper-2: #e7e6df;
  --ink: #151713;
  --muted: #73766e;
  --line: rgba(21, 23, 19, 0.15);
  --accent: #b6f238;
  --dark: #11130f;
  --white: #fbfbf7;
  --radius: 18px;
  --mode-color: var(--accent);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body[data-mode="performance"] { --mode-color: #ff7047; }
body.language-open, body.splash-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-shell { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 100; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--mode-color); transform: scaleX(0); transform-origin: left; transition: background .35s ease; }

.brand-splash {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s cubic-bezier(.22,.7,.25,1), visibility .5s;
}
.brand-splash[hidden] { display: none; }
.brand-splash.is-active { opacity: 1; visibility: visible; }
.brand-splash.is-leaving { opacity: 0; visibility: hidden; }
.brand-splash img { width: clamp(112px, 18vw, 170px); aspect-ratio: 1; object-fit: contain; transform: scale(.92); transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.brand-splash.is-active img { transform: scale(1); }
.brand-splash.is-leaving img { transform: scale(1.035); }

.language-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; background: rgba(10,12,9,.78); backdrop-filter: blur(18px); transition: opacity .35s ease, visibility .35s ease; }
.language-modal.is-closing { opacity: 0; visibility: hidden; }
.language-dialog { width: min(560px, 100%); padding: 44px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: var(--paper); box-shadow: 0 32px 90px rgba(0,0,0,.4); transform: translateY(0); transition: transform .35s ease; }
.language-modal.is-closing .language-dialog { transform: translateY(18px); }
.language-dialog-mark { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 34px; border: 1px solid rgba(21,23,19,.16); border-radius: 10px; background: #fff; font-weight: 900; }
.language-dialog .eyebrow { margin-bottom: 14px; }
.language-dialog h2 { margin: 0; font-size: clamp(38px, 7vw, 58px); font-weight: 550; letter-spacing: -.055em; }
.language-dialog > p:not(.eyebrow) { margin: 16px 0 30px; color: var(--muted); font-size: 13px; }
.language-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.language-options button { display: flex; align-items: center; justify-content: space-between; min-height: 68px; padding: 0 18px; color: var(--ink); border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.38); cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.language-options button:hover, .language-options button:focus-visible { border-color: var(--accent); background: white; transform: translateY(-2px); outline: none; }
.language-options button:first-child { border-color: var(--accent); }
.language-options b { font-size: 14px; }
.language-options span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 16px 32px;
  background: rgba(241, 240, 235, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--dark);
  border: 1px solid rgba(21,23,19,.16);
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  transition: background .35s ease;
}
.brand-mark img, .language-dialog-mark img { width: 88%; height: 82%; object-fit: contain; }
.brand-name { font-size: 14px; font-weight: 750; letter-spacing: -.02em; text-transform: lowercase; }
.mode-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}
.mode-button {
  min-width: 112px;
  padding: 10px 18px;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: .25s ease;
}
.mode-button.is-active { color: var(--white); background: var(--dark); }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 14px; }
.language-picker select { height: 38px; padding: 0 30px 0 12px; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; outline: none; background: rgba(255,255,255,.45); font: inherit; font-size: 11px; font-weight: 850; cursor: pointer; }
.language-picker select:focus-visible { outline: 2px solid var(--mode-color); outline-offset: 2px; }
.header-cta { font-size: 13px; font-weight: 750; white-space: nowrap; }
.header-cta span, .text-link span, .price-card a span { color: var(--mode-color); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-block: 80px;
}
.eyebrow, .section-index {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(60px, 7.4vw, 112px);
  font-weight: 520;
  letter-spacing: -.07em;
  line-height: .88;
}
.hero h1 span { color: var(--muted); }
.hero-intro {
  max-width: 550px;
  margin: 42px 0 0;
  color: #4f524b;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.button-primary { color: var(--dark); background: var(--mode-color); }
.text-link { padding-block: 12px; font-size: 13px; font-weight: 800; }
.hero-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 75% 20%, color-mix(in srgb, var(--mode-color) 88%, white), transparent 30%),
    linear-gradient(145deg, var(--dark), #262a21);
  transition: background .4s ease;
  transform: translateY(var(--hero-shift, 0)) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-visual::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}
.hero-number { position: absolute; top: 34px; right: 38px; color: rgba(255,255,255,.55); font-size: 12px; font-weight: 800; }
.hero-art { position: absolute; right: -6%; bottom: 120px; width: 108%; transition: opacity .35s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.hero-art svg { width: 100%; overflow: visible; }
.before-after { right: 0; bottom: 92px; width: 100%; padding: 0 24px; }
.comparison-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.9 / 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: #080a07;
  box-shadow: 0 28px 55px rgba(0,0,0,.34);
  isolation: isolate;
}
.comparison-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; pointer-events: none; }
.comparison-before {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: polygon(0 0, calc(var(--split) + 9%) 0, calc(var(--split) - 9%) 100%, 0 100%);
  transition: clip-path 1.1s cubic-bezier(.65,0,.35,1);
  will-change: clip-path;
}
.comparison-divider {
  position: absolute;
  top: 50%;
  height: 130%;
  left: var(--split);
  z-index: 3;
  width: 2px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 14px rgba(0,0,0,.45);
  transform: translate(-50%, -50%) rotate(10deg);
  transform-origin: center;
  transition: left 1.1s cubic-bezier(.65,0,.35,1);
  pointer-events: none;
}
.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--dark);
  border: 4px solid rgba(255,255,255,.96);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,.34);
  font-size: 18px;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-10deg);
}
.comparison-label {
  position: absolute;
  top: 16px;
  z-index: 4;
  padding: 8px 11px;
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(10,12,9,.7);
  backdrop-filter: blur(9px);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  pointer-events: none;
}
.label-before { left: 16px; }
.label-after { right: 16px; }
.comparison-range { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.before-after.is-dragging .comparison-before, .before-after.is-dragging .comparison-divider { transition: none; }
.before-after:focus-within .comparison-divider span { outline: 3px solid white; outline-offset: 3px; }
.performance-art { display: none; }
body[data-mode="performance"] .detailing-art { display: none; }
body[data-mode="performance"] .performance-art { display: block; }
body[data-mode="performance"] main > section:not(.hero) { display: none; }
body[data-mode="performance"] .hero-copy .eyebrow,
body[data-mode="performance"] .hero-intro,
body[data-mode="performance"] .hero-actions { display: none; }
.exhaust-art { right: -2%; bottom: 80px; width: 102%; }
.exhaust-art svg { filter: drop-shadow(0 24px 25px rgba(0,0,0,.28)); }
.exhaust-pipe { fill: none; stroke: url(#steel); stroke-width: 29; stroke-linecap: round; stroke-linejoin: round; }
.exhaust-pipe.shadow { stroke: rgba(0,0,0,.32); stroke-width: 39; transform: translateY(7px); }
.muffler { fill: url(#steel); stroke: rgba(255,255,255,.65); stroke-width: 3; }
.exhaust-tip { fill: #252722; stroke: url(#steel); stroke-width: 11; stroke-linejoin: round; }
.seam { fill: none; stroke: rgba(30,32,28,.36); stroke-width: 3; }
.bolt { fill: #373a34; stroke: #d8dad4; stroke-width: 2; }
.heat-line { fill: none; stroke: var(--mode-color); stroke-width: 3; stroke-linecap: round; opacity: .8; }
.exhaust-spec { position: absolute; top: 34px; left: 46px; color: white; }
.exhaust-spec span, .exhaust-spec b { display: block; }
.exhaust-spec span { margin-bottom: 7px; color: var(--mode-color); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.exhaust-spec b { font-size: 12px; letter-spacing: .03em; }
.visual-label {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.visual-label span { width: 9px; height: 9px; border-radius: 50%; background: var(--mode-color); box-shadow: 0 0 20px var(--mode-color); }
.visual-label span.is-open { background: var(--accent); box-shadow: 0 0 20px var(--accent); }
.visual-label span.is-closed { background: #ff9b68; box-shadow: 0 0 18px rgba(255,155,104,.72); }
.visual-label b { line-height: 1.45; }

.statement { padding-block: 130px; border-top: 1px solid var(--line); }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.statement h2, .product-copy h2, .section-heading h2, .contact-grid h2, .performance-layout h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 540;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.statement-grid > div > p, .product-copy > p, .performance-layout > div > p {
  max-width: 610px;
  margin: 4px 0 0;
  color: #5f625a;
  font-size: 19px;
  line-height: 1.65;
}
.proof-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 74px; }
.proof-row div { padding-top: 14px; border-top: 1px solid var(--line); }
.proof-row strong, .proof-row span { display: block; }
.proof-row strong { margin-bottom: 28px; font-size: 11px; }
.proof-row span { color: var(--muted); font-size: 12px; line-height: 1.4; }

.team-story { padding-block: 130px; border-top: 1px solid var(--line); }
.team-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.team-title-wrap { position: relative; }
.team-count {
  display: inline-block;
  margin-bottom: 38px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.team-story h2 { margin: 0; font-size: clamp(42px, 5.2vw, 78px); font-weight: 530; letter-spacing: -.065em; line-height: .96; }
.team-copy { padding-top: 58px; }
.team-copy > p { max-width: 610px; margin: 0 0 24px; color: #555850; font-size: 18px; line-height: 1.65; }
.team-signature { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 52px; }
.team-signature span { padding: 18px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; }

.product-story { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; padding-block: 120px; }
.product-story::before { position: absolute; inset: 0 calc(50% - 50vw); z-index: -1; background: var(--paper-2); content: ""; }
.product-copy { position: sticky; top: 120px; align-self: start; }
.product-copy > p { margin-top: 36px; font-size: 17px; }
.product-note { display: flex; align-items: center; gap: 12px; margin-top: 40px; color: var(--muted); font-size: 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.product-card { position: relative; margin: 0; overflow: hidden; border-radius: 14px; background: #fff; }
.product-card-main { grid-row: span 2; }
.product-card img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s ease; }
.product-card-main img { aspect-ratio: .72; }
.product-card:hover img { transform: scale(1.025); }
.product-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  border-radius: 9px;
  background: rgba(17,19,15,.88);
  color: white;
  backdrop-filter: blur(10px);
}
.product-card figcaption span, .product-card figcaption b { display: block; }
.product-card figcaption span { margin-bottom: 6px; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.product-card figcaption b { font-size: 12px; }
.product-credit { position: absolute; right: 0; bottom: 70px; color: var(--muted); font-size: 10px; }

.performance-panel { position: relative; isolation: isolate; padding-block: 120px; }
.performance-panel::before { position: absolute; inset: 0 calc(50% - 50vw); z-index: -1; background: #171713; content: ""; }
.performance-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; align-items: end; color: var(--white); }
.performance-layout > div > p { color: #a6a89e; margin-top: 34px; font-size: 17px; }
.performance-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.performance-metrics article { min-height: 270px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.035); }
.performance-metrics span { color: var(--mode-color); font-size: 11px; font-weight: 800; }
.performance-metrics h3 { margin: 100px 0 10px; font-size: 18px; }
.performance-metrics p { margin: 0; color: #999c91; font-size: 12px; line-height: 1.5; }

.pricing { padding-block: 140px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 70px; }
.section-heading > p { max-width: 340px; margin: 0 0 6px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.detailing-price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.detailing-price-grid .price-card { min-height: 560px; padding-inline: 26px; }
.detailing-price-grid .price-card h3 { margin-top: 82px; }
.price-card { position: relative; min-height: 520px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.24); }
.price-card.featured { color: white; border-color: var(--dark); background: var(--dark); }
.popular { position: absolute; top: 0; right: 24px; padding: 9px 13px; color: var(--dark); border-radius: 0 0 8px 8px; background: var(--mode-color); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.price-top { display: flex; justify-content: space-between; align-items: start; }
.price-top > span { color: var(--muted); font-size: 11px; font-weight: 800; }
.price { margin: 0; font-size: 24px; font-weight: 650; letter-spacing: -.04em; }
.price small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 700; text-align: right; text-transform: uppercase; letter-spacing: .1em; }
.price-card h3 { margin: 100px 0 14px; font-size: 25px; font-weight: 580; letter-spacing: -.04em; }
.price-card > p { min-height: 48px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.price-card ul { display: grid; gap: 10px; margin: 34px 0 48px; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.price-card li::before { margin-right: 9px; color: var(--mode-color); content: "—"; }
.price-card a { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid currentColor; font-size: 12px; font-weight: 800; }
.pricing-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.pricing-notes > div { padding: 24px 26px; border-top: 1px solid var(--line); }
.pricing-notes span { display: block; margin-bottom: 10px; color: var(--ink); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pricing-notes p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.sale-prep-card { display: grid; grid-template-columns: .8fr 1.35fr auto; gap: 50px; align-items: center; margin-top: 64px; padding: 42px; color: white; border-radius: var(--radius); background: var(--dark); }
.sale-prep-card .eyebrow { margin-bottom: 14px; color: var(--mode-color); }
.sale-prep-card h3 { margin: 0; font-size: clamp(26px, 2.5vw, 38px); font-weight: 560; letter-spacing: -.045em; }
.sale-prep-card > p { margin: 0; color: #a6a89e; font-size: 14px; line-height: 1.65; }
.sale-prep-card .text-link { white-space: nowrap; }

.contact-section { color: white; background: var(--dark); }
.contact-inner { padding-block: 120px; }
.contact-section .section-index { color: #7d8076; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; }
.contact-grid .eyebrow { color: var(--mode-color); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-content: end; }
.contact-details > div { padding-top: 13px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-details span { display: block; margin-bottom: 14px; color: #7d8076; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-details a, .contact-details p { margin: 0; font-size: 13px; }
.button-light { grid-column: 1 / -1; justify-self: start; margin-top: 22px; color: var(--dark); background: var(--mode-color); }
.booking-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; margin-top: 100px; padding-top: 80px; border-top: 1px solid rgba(255,255,255,.14); scroll-margin-top: 120px; }
.booking-heading h3 { margin: 0; font-size: clamp(38px, 4.5vw, 66px); font-weight: 540; letter-spacing: -.06em; line-height: .98; }
.booking-heading > p:last-child { max-width: 430px; margin: 30px 0 0; color: #96998f; font-size: 14px; line-height: 1.7; }
.booking-form { display: grid; gap: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 16px; }
.booking-form label > span, .booking-form legend { display: block; margin-bottom: 10px; color: #8f9288; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; color: white; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; outline: none; background: rgba(255,255,255,.045); font: inherit; font-size: 13px; transition: border-color .2s, background .2s; }
.booking-form input, .booking-form select { height: 50px; padding: 0 14px; }
.booking-form textarea { min-height: 132px; padding: 14px; resize: vertical; line-height: 1.55; }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: #686b63; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--mode-color); background: rgba(255,255,255,.07); }
.booking-form select { color-scheme: dark; }
.form-wide { grid-column: 1 / -1; }
.schedule-fields { padding: 24px; border: 1px solid rgba(182,242,56,.3); border-radius: 13px; background: rgba(182,242,56,.045); animation: scheduleIn .4s cubic-bezier(.2,.7,.2,1); }
.schedule-fields[hidden] { display: none; }
.schedule-heading { display: flex; align-items: start; justify-content: space-between; gap: 30px; margin-bottom: 22px; }
.schedule-heading > span { color: var(--mode-color); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.schedule-heading > p { max-width: 310px; margin: 0; color: #85887f; font-size: 11px; line-height: 1.5; text-align: right; }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.schedule-note { min-height: 16px; margin: 14px 0 0; color: #8f9288; font-size: 11px; }
@keyframes scheduleIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.booking-form fieldset { margin: 0; padding: 0; border: 0; }
.condition-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.condition-options label { position: relative; cursor: pointer; }
.condition-options input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.condition-options span { display: flex !important; align-items: center; min-height: 44px; margin: 0 !important; padding: 0 13px; color: #b2b5aa !important; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 10px !important; letter-spacing: .04em !important; text-transform: none !important; transition: .2s; }
.condition-options input:checked + span { color: var(--dark) !important; border-color: var(--mode-color); background: var(--mode-color); }
.condition-options input:focus-visible + span { outline: 2px solid var(--mode-color); outline-offset: 2px; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.form-submit-row > p { max-width: 310px; margin: 0; color: #74776e; font-size: 11px; line-height: 1.5; }
.form-submit-row .button-light { grid-column: auto; flex: none; margin-top: 0; border: 0; cursor: pointer; }
.form-status { min-height: 18px; margin: -16px 0 0; color: var(--mode-color); font-size: 12px; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto auto; gap: 40px; align-items: center; padding: 34px 32px; border-top: 1px solid rgba(255,255,255,.12); color: #8c8f84; background: var(--dark); font-size: 11px; }
.footer-brand b { color: white; font-size: 13px; }
.site-footer p { margin: 0; }
.socials { display: flex; gap: 8px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transition: .2s; }
.socials a:hover { color: var(--dark); border-color: var(--mode-color); background: var(--mode-color); }
.socials svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.socials .fill { fill: currentColor; stroke: none; }

.performance-only { display: none; }
body[data-mode="performance"] .detailing-only { display: none; }
body[data-mode="performance"] .performance-only { display: block; }
body[data-mode="performance"] .price-grid.performance-only { display: grid; }

.reveal-target {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    transform .8s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}
.reveal-target.reveal-left { transform: translateX(-30px); }
.reveal-target.is-visible { opacity: 1; transform: translate(0, 0); }
.price-card.reveal-target, .product-card.reveal-target { transition-duration: .7s; }
body.is-switching .hero-copy { animation: modeCopy .45s cubic-bezier(.2,.7,.2,1); }
body.is-switching .hero-art { animation: modeArt .55s cubic-bezier(.2,.7,.2,1); }
@keyframes modeCopy { from { opacity: .25; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes modeArt { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 1180px) {
  .detailing-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .section-shell { width: min(100% - 36px, 780px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 18px; }
  .mode-switch { grid-column: 1 / -1; grid-row: 2; justify-self: stretch; margin-top: 12px; }
  .mode-button { flex: 1; }
  .header-tools { gap: 8px; }
  .header-cta { font-size: 0; }
  .header-cta span { font-size: 18px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 70px; }
  .hero-visual { min-height: 480px; }
  .statement-grid, .team-layout, .product-story, .performance-layout, .contact-grid, .booking-panel { grid-template-columns: 1fr; gap: 55px; }
  .team-copy { padding-top: 0; }
  .product-copy { position: static; }
  .price-grid, body[data-mode="performance"] .price-grid.performance-only { grid-template-columns: 1fr; }
  .price-card { min-height: 480px; }
  .sale-prep-card { grid-template-columns: 1fr; gap: 26px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p:first-of-type { display: none; }
}

@media (max-width: 620px) {
  .language-dialog { padding: 30px 22px; }
  .language-options { grid-template-columns: 1fr; }
  .site-header { min-height: 70px; }
  .brand-name { font-size: 12px; }
  .hero h1 { font-size: clamp(52px, 16vw, 74px); }
  .hero-visual { min-height: 380px; }
  .hero-art { bottom: 90px; }
  .before-after { right: 0; bottom: 78px; width: 100%; padding: 0 12px; }
  .comparison-frame { aspect-ratio: 1.55 / 1; }
  .comparison-divider span { width: 42px; height: 42px; }
  .comparison-label { top: 10px; padding: 6px 8px; font-size: 8px; }
  .label-before { left: 10px; }
  .label-after { right: 10px; }
  .exhaust-art { bottom: 52px; }
  .exhaust-spec { top: 0; left: 26px; }
  .statement, .team-story, .pricing, .product-story, .performance-panel, .contact-inner { padding-block: 90px; }
  .proof-row { grid-template-columns: 1fr; gap: 26px; margin-top: 50px; }
  .proof-row strong { margin-bottom: 8px; }
  .team-signature { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-card-main { grid-row: auto; }
  .product-card-main img, .product-card img { aspect-ratio: 1; }
  .product-credit { position: static; grid-column: 1 / -1; }
  .performance-metrics { grid-template-columns: 1fr; }
  .performance-metrics article { min-height: 210px; }
  .performance-metrics h3 { margin-top: 60px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 28px; }
  .pricing-notes { grid-template-columns: 1fr; }
  .pricing-notes > div { padding-inline: 0; }
  .sale-prep-card { padding: 30px; }
  .contact-details { grid-template-columns: 1fr; }
  .button-light { grid-column: auto; }
  .booking-panel { margin-top: 76px; padding-top: 64px; }
  .form-grid, .condition-options { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .schedule-heading { display: block; }
  .schedule-heading > p { margin-top: 9px; text-align: left; }
  .schedule-grid { grid-template-columns: 1fr; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .site-footer { gap: 20px; padding-inline: 18px; }
  .copyright { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal-target { opacity: 1; transform: none; }
}
