:root {
  color-scheme: dark;
  --bg: #08090a;
  --bg-2: #0d0d0b;
  --panel: #111418;
  --panel-2: #191d22;
  --text: #f4f2ed;
  --muted: #b9b4ab;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #c7a45d;
  --steel: #8aa0a8;
  --green: #6c8f7c;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(199, 164, 93, 0.08), transparent 28%),
    radial-gradient(circle at 86% 34%, rgba(138, 160, 168, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 45%, var(--bg));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #f4f2ed);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 52px);
  background: linear-gradient(to bottom, rgba(8, 9, 10, 0.88), rgba(8, 9, 10, 0.35));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 10, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050505;
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: rgba(244, 242, 237, 0.82);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 72px) 86px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 54%;
  transform: scale(1.05);
  animation: heroDrift 18s ease-out both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.9), rgba(8, 9, 10, 0.22) 54%, rgba(8, 9, 10, 0.8)),
    linear-gradient(0deg, var(--bg), rgba(8, 9, 10, 0.12) 50%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.hero-content {
  width: min(830px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(60px, 12vw, 164px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(244, 242, 237, 0.84);
  font-size: clamp(19px, 2.2vw, 28px);
}

.hero-content > * {
  animation: riseIn 800ms ease both;
}

.hero-content h1 {
  animation-delay: 80ms;
}

.hero-lede {
  animation-delay: 160ms;
}

.hero-actions {
  animation-delay: 240ms;
}

.hero-actions,
.contact-card,
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-lead-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  top: 50%;
  width: min(350px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid rgba(199, 164, 93, 0.32);
  border-radius: var(--radius);
  background: rgba(8, 9, 10, 0.64);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
  transform: translateY(-35%);
}

.hero-lead-card span,
.proof-strip span,
.audit-card span,
.brochure-form-top span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead-card strong {
  display: block;
  margin: 10px 0;
  font-size: 25px;
  line-height: 1.05;
}

.hero-lead-card p {
  color: var(--muted);
}

.hero-lead-card a,
.service-card a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.button:hover,
.contact-card a:hover {
  transform: translateY(-1px);
}

.hero-status {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 32px;
  display: flex;
  gap: 10px;
  color: rgba(244, 242, 237, 0.76);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-status span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(8, 9, 10, 0.38);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  place-items: center;
  gap: 10px;
  color: rgba(244, 242, 237, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 1.6s ease-in-out infinite;
}

.signature-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: -36px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 15, 17, 0.88);
  backdrop-filter: blur(18px);
}

.signature-strip div {
  padding: 28px;
}

.signature-strip div + div {
  border-left: 1px solid var(--line);
}

.signature-strip span,
.standard-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.signature-strip strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 19px;
}

.signature-strip p {
  margin: 0;
  color: var(--muted);
}

.section,
.section-band,
.split-section,
.proof-strip,
.lead-offer,
.brochure-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  padding: 78px clamp(20px, 5vw, 58px);
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-copy h2,
.intro-text {
  margin: 0;
}

.intro-text {
  color: var(--muted);
  font-size: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(17, 20, 24, 0.72);
}

.proof-strip div {
  min-height: 132px;
  padding: 24px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.08;
}

.decision-routes {
  padding-top: 28px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(138, 160, 168, 0.1), transparent 42%),
    rgba(17, 20, 24, 0.82);
}

.route-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-grid h3 {
  margin-top: 18px;
  font-size: clamp(25px, 3vw, 38px);
}

.route-grid p {
  color: var(--muted);
}

.route-grid a {
  margin-top: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.brand-statement {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(26px, 7vw, 96px);
  align-items: center;
  padding-top: 126px;
}

.statement-logo {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    #050505;
}

.statement-logo img {
  width: min(340px, 78%);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
}

.statement-copy {
  max-width: 720px;
}

.statement-copy p {
  color: var(--muted);
  font-size: 19px;
}

.fleet-section {
  padding-top: 42px;
}

.fleet-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.fleet-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.fleet-heading .button {
  margin-top: 10px;
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.fleet-panel {
  display: grid;
  align-content: space-between;
  min-height: 470px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(199, 164, 93, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(199, 164, 93, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #0a0d10;
}

.fleet-panel-top span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-panel-top strong {
  display: block;
  max-width: 420px;
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.fleet-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.fleet-status-grid div {
  min-height: 116px;
  padding: 18px;
  background: rgba(8, 9, 10, 0.82);
}

.fleet-status-grid strong,
.fleet-status-grid small {
  display: block;
}

.fleet-status-grid strong {
  margin: 12px 0 2px;
}

.fleet-status-grid small {
  color: var(--muted);
}

.status-dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.status-dot.green {
  background: #65b783;
}

.status-dot.amber {
  background: #d2bf65;
}

.status-dot.orange {
  background: #d58145;
}

.status-dot.red {
  background: #cb5b4f;
}

.fleet-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.fleet-points article {
  min-height: 134px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 20, 24, 0.82);
}

.fleet-points span {
  color: var(--steel);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.fleet-points p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(199, 164, 93, 0.1), transparent 42%),
    var(--panel);
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(199, 164, 93, 0.48);
  transform: translateY(-4px);
}

.service-card-featured {
  border-color: rgba(199, 164, 93, 0.42);
  background:
    linear-gradient(145deg, rgba(199, 164, 93, 0.2), transparent 50%),
    #101214;
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.service-card.with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.92), rgba(8, 9, 10, 0.22));
}

.service-card > div:not(.service-number) {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.service-number {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  color: rgba(244, 242, 237, 0.18);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 900;
  line-height: 0.85;
}

.service-card span,
.label {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p,
.split-copy span,
.atelier p,
.contact-card p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 680px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
  background: var(--panel-2);
}

.steps {
  display: grid;
  gap: 22px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 6px;
}

.lead-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  margin-top: 82px;
  margin-bottom: 82px;
  padding: clamp(44px, 7vw, 84px);
  border: 1px solid rgba(199, 164, 93, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(199, 164, 93, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #0b0d0f;
}

.lead-offer h2 {
  font-size: clamp(46px, 8vw, 106px);
  text-transform: uppercase;
}

.lead-offer p {
  max-width: 760px;
  color: rgba(244, 242, 237, 0.8);
  font-size: clamp(18px, 2vw, 23px);
}

.audit-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(8, 9, 10, 0.72);
}

.audit-card strong {
  display: block;
  margin: 10px 0 18px;
  font-size: 28px;
  line-height: 1.05;
}

.audit-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.brochure-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
  margin-top: 28px;
  margin-bottom: 92px;
}

.brochure-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(199, 164, 93, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(8, 9, 10, 0.88), rgba(8, 9, 10, 0.46)),
    linear-gradient(145deg, rgba(199, 164, 93, 0.18), transparent 48%),
    url("./assets/maybach-gls-600.png") center / cover;
}

.brochure-copy h2 {
  max-width: 840px;
  font-size: clamp(42px, 7vw, 92px);
  text-transform: uppercase;
}

.brochure-copy p {
  max-width: 650px;
  color: rgba(244, 242, 237, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.brochure-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.brochure-proof span {
  padding: 9px 11px;
  border: 1px solid rgba(244, 242, 237, 0.18);
  background: rgba(8, 9, 10, 0.66);
  color: rgba(244, 242, 237, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brochure-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.brochure-form-top,
.brochure-form label:has(textarea),
.brochure-form button {
  grid-column: 1 / -1;
}

.brochure-form-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brochure-form-top strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 28px;
  line-height: 1.05;
}

.brochure-form-top p {
  margin: 0;
  color: var(--muted);
}

.maybach-editorial {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 82px auto;
  padding: clamp(54px, 8vw, 112px);
  overflow: hidden;
  border: 1px solid rgba(199, 164, 93, 0.28);
  background:
    radial-gradient(circle at 78% 20%, rgba(199, 164, 93, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    #0b0c0d;
}

.maybach-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 84%, transparent);
}

.vehicle-kicker {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  top: 24px;
  color: rgba(244, 242, 237, 0.08);
  font-size: clamp(44px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.85;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.vehicle-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
}

.vehicle-copy h2 {
  max-width: 820px;
  font-size: clamp(38px, 7vw, 92px);
  text-transform: uppercase;
}

.vehicle-copy p {
  max-width: 720px;
  color: rgba(244, 242, 237, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.vehicle-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(8, 9, 10, 0.64);
  backdrop-filter: blur(18px);
}

.vehicle-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vehicle-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.vehicle-card div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.vehicle-card dt {
  margin-bottom: 5px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vehicle-card dd {
  margin: 0;
  color: var(--text);
}

.vehicle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-card a {
  color: var(--gold);
  font-weight: 800;
}

.standards {
  padding-top: 70px;
}

.standard-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.standard-list article {
  min-height: 260px;
  padding: 28px;
  background: rgba(17, 20, 24, 0.96);
}

.standard-list h3 {
  margin-top: 44px;
}

.standard-list p {
  color: var(--muted);
}

.atelier {
  align-items: center;
}

.seo-local {
  align-items: center;
}

.seo-local p {
  color: var(--muted);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  background: rgba(17, 20, 24, 0.76);
}

.faq summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-form label,
.brochure-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form label:has(textarea),
.contact-form button {
  grid-column: 1 / -1;
}

.bot-field {
  position: absolute;
  left: -9999px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0d1013;
  color: var(--text);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.contact-card {
  flex-direction: column;
  align-content: start;
  padding: 32px;
  border-radius: var(--radius);
  background: #f4f2ed;
  color: #101214;
}

.contact-logo {
  width: 148px;
  height: 148px;
  margin-bottom: 8px;
  object-fit: contain;
  padding: 8px;
  background: #050505;
  border: 1px solid rgba(16, 18, 20, 0.12);
}

.contact-card p {
  color: #4f565b;
}

.whatsapp {
  width: max-content;
  padding: 10px 12px;
  border: 1px solid rgba(16, 18, 20, 0.18);
  border-radius: 4px;
}

.footer {
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(8, 9, 10, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.quick-contact a {
  padding: 12px 14px;
  color: rgba(244, 242, 237, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-contact a + a {
  border-left: 1px solid var(--line);
}

.quick-contact a:hover {
  background: var(--gold);
  color: #111;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.thanks-shell {
  width: min(840px, 100%);
}

.thanks-shell img {
  width: 176px;
  height: 176px;
  object-fit: contain;
  padding: 10px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  background: #050505;
}

.thanks-shell h1 {
  font-size: clamp(46px, 8vw, 92px);
}

.thanks-shell p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.download-note {
  margin-top: 18px;
  font-size: 14px !important;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.1) translateX(1.5%);
  }
  to {
    transform: scale(1.03) translateX(0);
  }
}

@keyframes cue {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(8, 9, 10, 0.96);
    border: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 920px;
    padding-top: 118px;
  }

  .hero-lead-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(460px, 100%);
    margin-top: 28px;
    transform: none;
  }

  .hero-status {
    left: 20px;
    right: 20px;
    flex-wrap: wrap;
  }

  .section-band,
  .split-section,
  .contact-layout,
  .brand-statement,
  .fleet-layout,
  .lead-offer,
  .brochure-section,
  .vehicle-layout {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .signature-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .signature-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    grid-column: span 1;
  }

  .service-card-featured {
    grid-column: 1 / -1;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .fleet-panel {
    min-height: 410px;
  }

  .service-card {
    min-height: 320px;
  }

  .statement-logo {
    min-height: 300px;
  }

  .maybach-editorial {
    padding: 72px 22px 34px;
  }

  .vehicle-kicker {
    left: 22px;
    right: 22px;
    text-align: left;
    font-size: 42px;
  }

  .standard-list {
    grid-template-columns: 1fr;
  }

  .split-section {
    min-height: 0;
  }

  .split-visual img {
    aspect-ratio: 16 / 10;
  }

  .contact-form,
  .brochure-form {
    grid-template-columns: 1fr;
  }

  .brochure-copy {
    min-height: 460px;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 64px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  h1 {
    font-size: 52px;
  }

  .hero {
    min-height: 900px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-status {
    bottom: 18px;
  }

  .section {
    padding: 82px 0;
  }

  .proof-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured {
    grid-column: 1;
  }

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .lead-offer {
    padding: 34px 22px;
  }

  .quick-contact {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .quick-contact a {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
  }
}
