:root {
  --ink: #0c0f12;
  --muted: #65707b;
  --line: #dde3e8;
  --paper: #f7f5f0;
  --panel: #ffffff;
  --gold: #b68a35;
  --green: #1f8f54;
  --blue: #1f5f8b;
  --shadow: 0 18px 50px rgba(8, 12, 18, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(12, 15, 18, .9);
  color: #fff;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  object-position: center;
  background: #000;
}
.brand strong, .brand small { display: block; white-space: nowrap; }
.brand small { color: rgba(255,255,255,.68); font-size: 12px; }
.nav { display: none; gap: 20px; color: rgba(255,255,255,.8); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-switch { display: flex; padding: 3px; border: 1px solid rgba(255,255,255,.18); }
.lang, .wa-small {
  min-height: 36px;
  border: 0;
  padding: 0 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.lang.active { background: #fff; color: var(--ink); }
.wa-small { display: grid; place-items: center; background: var(--green); font-weight: 800; }
.mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 38px;
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.24);
  padding: 0;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.mobile-menu-button:hover,
.mobile-menu-button[aria-expanded="true"] {
  background: rgba(255,255,255,.16);
}
.hamburger-icon {
  width: 20px;
  display: grid;
  gap: 4px;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background: currentColor;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 1px);
  right: clamp(12px, 4vw, 48px);
  width: min(360px, calc(100vw - 24px));
  display: grid;
  gap: 1px;
  padding: 10px 14px 14px;
  background: rgba(12, 15, 18, .98);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.mobile-menu-panel[hidden] { display: none; }
.mobile-menu-panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-weight: 850;
}
.mobile-menu-panel a:first-child {
  background: var(--gold);
  color: #111;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,10,.88), rgba(5,7,10,.48) 45%, rgba(5,7,10,.1)), linear-gradient(0deg, rgba(5,7,10,.82), rgba(5,7,10,0) 48%);
}
.hero-content {
  position: relative;
  width: min(980px, 100%);
  padding: 112px clamp(18px, 6vw, 72px) 56px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 14px;
  max-width: 780px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: .96;
  letter-spacing: 0;
}
.hero-sub { max-width: 720px; font-size: clamp(18px, 3vw, 25px); color: rgba(255,255,255,.88); }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.trust-row span {
  padding: 9px 11px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 13px;
}
.trust-row span::before { content: "✓ "; color: #7ee09a; font-weight: 900; }
.hero-buttons, .center-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
}
.btn.primary { background: var(--gold); color: #111; }
.btn.ghost { border-color: rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.08); }
.btn.dark { background: var(--ink); color: #fff; }
.btn.light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.full { width: 100%; min-height: 56px; }

.service-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
  background: var(--ink);
}
.service-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: stretch;
  gap: 14px;
  background: #fff;
  min-height: 120px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.service-card img { width: 104px; height: 100%; object-fit: cover; }
.service-card div {
  padding: 14px 14px 14px 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.service-card h2 { margin-bottom: 3px; font-size: 16px; }
.service-card p { margin-bottom: 8px; color: var(--muted); font-size: 14px; }
.service-card strong { color: var(--gold); }
.reveal-ready {
  opacity: 0;
  transform: translate3d(34px, 0, 0);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

section { scroll-margin-top: 80px; }
.section-intro { width: min(780px, 100%); margin: 0 auto 28px; text-align: center; padding: 0 18px; }
.section-intro h2 { font-size: clamp(30px, 6vw, 54px); line-height: 1.02; margin-bottom: 12px; }
.section-intro p:not(.eyebrow) { color: var(--muted); }
.booking-section, .reviews { padding: 70px 0; }
.booking-shell {
  width: min(1160px, calc(100% - 36px));
  margin: auto;
  display: grid;
  gap: 16px;
}
.booking-side, .booking-form, .review-grid article {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.booking-side { padding: 18px; }
label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 900; color: #27313b; }
select, input, textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  outline-color: var(--gold);
}
textarea { min-height: 92px; padding-top: 12px; resize: vertical; }
.price-panel { margin-top: 14px; padding: 18px; background: #111820; color: #fff; }
.price-panel span, .price-panel small { display: block; color: rgba(255,255,255,.68); }
.price-panel strong { display: block; font-size: 44px; line-height: 1; margin: 8px 0; color: var(--gold); }
.booking-form { padding: 16px; }
.form-block { margin-bottom: 16px; }
.option-row { display: grid; gap: 8px; grid-template-columns: 1fr; }
.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
}
.choice input { width: 18px; min-height: 18px; accent-color: var(--gold); }
.vehicle-grid { display: grid; gap: 12px; margin-bottom: 18px; }
.vehicle-card {
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}
.vehicle-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182,138,53,.16);
}
.vehicle-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.vehicle-card-body {
  padding: 14px;
  display: grid;
  justify-items: center;
}
.vehicle-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
}
.vehicle-detail-list {
  width: 100%;
  display: grid;
  gap: 6px;
  justify-items: center;
}
.vehicle-detail-list p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.vehicle-detail-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vehicle-card strong { display: block; margin-top: 10px; color: var(--gold); font-size: 22px; }
.field-grid { display: grid; gap: 12px; margin-bottom: 18px; }
.booking-actions {
  display: grid;
  gap: 10px;
}
.fixed-service-page .service-picker { display: none; }

.reviews, .service-reviews { background: #fff; }
.service-reviews { padding: 56px 18px; }
.review-grid {
  width: min(1000px, calc(100% - 36px));
  margin: 0 auto 22px;
  display: grid;
  gap: 14px;
}
.review-grid article,
.service-review-grid article {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}
.review-grid p,
.service-review-grid p { color: var(--muted); }
.review-grid span,
.service-review-grid span { color: var(--gold); }
.service-review-grid {
  width: min(920px, 100%);
  margin: 0 auto 22px;
  display: grid;
  gap: 14px;
}
.center-actions { justify-content: center; }

.deep-services { padding: 72px 18px; display: grid; gap: 18px; }
.deep-card {
  width: min(1120px, 100%);
  margin: auto;
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.deep-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.deep-card div {
  padding: clamp(20px, 4vw, 42px);
  display: grid;
  justify-items: center;
  text-align: center;
}
.deep-card h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.05; margin-bottom: 12px; }
.deep-card p, .deep-card li { color: var(--muted); }
.deep-card ul {
  display: grid;
  gap: 8px;
  padding-left: 0;
  margin-bottom: 22px;
  list-style-position: inside;
  justify-items: center;
}
.tour-card-detail div {
  justify-items: center;
}
.tour-card-detail p { max-width: 620px; }
.tour-card-detail ul {
  width: min(360px, 100%);
}

.features {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
}
.features article {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: #fff;
  text-align: center;
  padding: 18px;
}
.features span { display: grid; place-items: center; width: 44px; height: 44px; background: var(--gold); color: #111; font-weight: 900; }

.faq {
  padding: 72px 18px;
  background: var(--paper);
}
.faq-list {
  width: min(900px, 100%);
  margin: auto;
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #111;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}
.legal-page {
  padding: 72px 18px;
  background: var(--paper);
}
.legal-wrap {
  width: min(900px, 100%);
  margin: auto;
  display: grid;
  gap: 18px;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 34px);
}
.legal-card h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}
.legal-card h2 {
  margin: 26px 0 10px;
  font-size: 24px;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
}
.legal-card a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
}
.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.service-landing-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #05070a;
  isolation: isolate;
}
.service-landing-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroCinematicMove 16s ease-in-out infinite alternate;
  transform-origin: center;
}
.service-landing-hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(182,138,53,.2) 45%, transparent 58%);
  mix-blend-mode: screen;
  opacity: .5;
  animation: heroGoldSweep 8s ease-in-out infinite;
}
.service-landing-hero .hero-overlay { z-index: 1; }
.service-landing-hero .hero-content {
  z-index: 2;
  max-width: 980px;
  animation: heroContentRise .9s ease-out both;
}
@keyframes heroCinematicMove {
  0% { transform: scale(1.03) translate3d(-1.4%, 0, 0); }
  50% { transform: scale(1.095) translate3d(1.2%, -1%, 0); }
  100% { transform: scale(1.13) translate3d(-.6%, 1%, 0); }
}
@keyframes heroGoldSweep {
  0%, 22% { transform: translate3d(-42%, 0, 0); opacity: 0; }
  42%, 68% { opacity: .45; }
  100% { transform: translate3d(42%, 0, 0); opacity: 0; }
}
@keyframes heroContentRise {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.service-price {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin: 10px 0 22px;
  padding: 0 16px;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
}
.landing-section {
  padding: 72px 18px;
}
body[data-fixed-service] .landing-section {
  padding: 38px 18px;
}
.landing-section.alt { background: #fff; }
.landing-grid {
  width: min(1120px, 100%);
  margin: auto;
  display: grid;
  gap: 18px;
}
.landing-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 34px);
  text-align: center;
  transition:
    transform .32s ease,
    border-color .32s ease,
    box-shadow .32s ease,
    background .32s ease;
}
.benefits-section .landing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .32s ease;
}
.benefits-section .landing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(182,138,53,.5);
  box-shadow: 0 22px 58px rgba(8, 12, 18, .18);
  background: linear-gradient(180deg, #fff, #fbfaf7);
}
.benefits-section .landing-card:hover::before {
  width: 78px;
}
.benefit-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--ink);
  background: rgba(12, 15, 18, .04);
  border: 1px solid rgba(12, 15, 18, .1);
  transition:
    transform .32s ease,
    background .32s ease,
    border-color .32s ease;
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefits-section .landing-card:hover .benefit-icon {
  transform: translateY(-2px) scale(1.04);
  background: rgba(182,138,53,.08);
  border-color: rgba(182,138,53,.35);
}
body[data-fixed-service] .landing-card {
  padding: clamp(16px, 3vw, 24px);
}
.landing-card h2,
.landing-card h3 {
  margin-bottom: 12px;
}
.landing-card p,
.landing-card li {
  color: var(--muted);
}
.landing-card ul,
.included-list,
.steps-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.included-list li,
.steps-list li {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}
.included-list li::before,
.steps-list li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 900;
}
.other-services {
  width: min(1120px, 100%);
  margin: auto;
  display: grid;
  gap: 12px;
}
.other-services .service-card { min-height: 112px; }

.vehicle-showcase {
  padding: 56px 18px;
  background: #fff;
}
.photo-carousel {
  position: relative;
  width: min(1120px, 100%);
  margin: auto;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  width: 100%;
  overflow: visible;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.carousel-slide figcaption {
  padding: 14px 16px;
  color: rgba(255,255,255,.88);
  font-weight: 900;
  text-align: center;
}
.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--gold);
  color: #111;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: var(--shadow);
}
.carousel-control.prev { left: -8px; }
.carousel-control.next { right: -8px; }

.footer {
  display: grid;
  gap: 22px;
  padding: 34px 18px 90px;
  background: var(--ink);
  color: #fff;
}
.footer p, .footer a { color: rgba(255,255,255,.68); }
.footer a { display: block; margin: 6px 0; }
.footer-brand img {
  width: 148px;
  height: 148px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 12px;
  background: #000;
}
.footer-brand strong { display: block; }
.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0;
  box-shadow: var(--shadow);
}
.floating-wa::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23fff' d='M32.1 8C18.9 8 8.2 18.6 8.2 31.7c0 4.3 1.2 8.4 3.3 12L8 56l12.7-3.3c3.5 1.9 7.4 2.9 11.4 2.9 13.2 0 23.9-10.6 23.9-23.8S45.3 8 32.1 8Zm0 43.4c-3.6 0-7.1-1-10.1-2.8l-.7-.4-7.5 2 2-7.3-.5-.8c-1.9-3.1-2.9-6.6-2.9-10.3 0-10.8 8.8-19.6 19.7-19.6s19.7 8.8 19.7 19.6-8.8 19.6-19.7 19.6Z'/%3E%3Cpath fill='%23fff' d='M43.2 36.8c-.6-.3-3.6-1.8-4.2-2-.6-.2-1-.3-1.4.3-.4.6-1.6 2-2 2.4-.4.4-.7.5-1.3.2-.6-.3-2.5-.9-4.8-3-1.8-1.6-3-3.5-3.3-4.1-.4-.6 0-.9.3-1.2.3-.3.6-.7.9-1.1.3-.4.4-.6.6-1 .2-.4.1-.8 0-1.1-.2-.3-1.4-3.4-1.9-4.6-.5-1.2-1-1-1.4-1h-1.2c-.4 0-1.1.2-1.7.8-.6.6-2.2 2.2-2.2 5.3s2.3 6.1 2.6 6.5c.3.4 4.5 6.9 10.9 9.7 1.5.7 2.7 1.1 3.7 1.4 1.5.5 2.9.4 4 .2 1.2-.2 3.6-1.5 4.1-2.9.5-1.4.5-2.7.4-2.9-.2-.4-.6-.6-1.2-.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 84px;
  z-index: 45;
  display: grid;
  gap: 12px;
  width: min(720px, calc(100vw - 32px));
  padding: 16px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.cookie-banner a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions .btn {
  min-height: 40px;
}

@media (min-width: 720px) {
  .nav { display: flex; }
  .service-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 24px; }
  .option-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-grid, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field.full { grid-column: 1 / -1; }
  .landing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .included-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .other-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deep-card { grid-template-columns: 1fr 1fr; align-items: center; }
  .deep-card:nth-child(even) img { order: 2; }
  .features { grid-template-columns: repeat(4, 1fr); }
  .footer { grid-template-columns: 1.3fr 1fr 1fr; padding-bottom: 34px; }
}

@media (min-width: 1020px) {
  .service-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); transform: translateY(-38px); margin-bottom: -38px; }
  .service-card { grid-template-columns: 1fr; }
  .service-card img { width: 100%; height: 152px; }
  .service-card div { padding: 14px; }
  .booking-shell { grid-template-columns: 320px 1fr; align-items: start; }
  .booking-side { position: sticky; top: 92px; }
  .other-services { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 719px) {
  .mobile-menu-panel {
    left: 0;
    right: 0;
    width: auto;
  }
  .reveal-ready {
    transform: translate3d(0, 22px, 0);
  }
  .reveal-ready.revealed {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 430px) {
  .brand small, .nav { display: none; }
  .site-header { position: sticky; padding: 8px 12px; }
  .brand-logo { width: 58px; height: 58px; }
  .wa-small { display: none; }
  .mobile-menu-open { overflow: hidden; }
  .hero {
    min-height: 0;
    display: block;
    background: #05070a;
  }
  .hero > img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .hero-overlay { display: none; }
  .hero-content {
    padding: 26px 18px 34px;
    background: linear-gradient(180deg, #05070a, #0c0f12);
  }
  h1 { font-size: 42px; line-height: 1; }
  .hero-sub { font-size: 17px; }
  .trust-row span { font-size: 12px; }
  .service-card { grid-template-columns: 116px 1fr; }
  .service-card img { width: 116px; object-position: center; }
  .vehicle-card,
  .vehicle-card h3 {
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
  }
  .faq { padding: 58px 18px; }
  .faq-list summary { align-items: flex-start; }
  body[data-fixed-service] .landing-section {
    padding: 18px 14px;
  }
  body[data-fixed-service] .section-intro {
    margin-bottom: 12px;
    padding: 0;
  }
  body[data-fixed-service] .section-intro h2 {
    font-size: 24px;
    line-height: 1.08;
    margin-bottom: 7px;
  }
  body[data-fixed-service] .section-intro p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 0;
  }
  body[data-fixed-service] .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }
  body[data-fixed-service] .landing-grid {
    gap: 8px;
  }
  body[data-fixed-service] .landing-card {
    padding: 12px;
  }
  body[data-fixed-service] .landing-card h3 {
    margin-bottom: 5px;
    font-size: 17px;
  }
  body[data-fixed-service] .landing-card p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.35;
  }
  body[data-fixed-service] .included-list,
  body[data-fixed-service] .steps-list {
    gap: 6px;
  }
  body[data-fixed-service] .included-list li,
  body[data-fixed-service] .steps-list li {
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.25;
  }
  body[data-fixed-service] .booking-section {
    padding-top: 42px;
  }
  .vehicle-showcase {
    padding: 42px 18px;
  }
  .service-reviews {
    padding: 42px 14px;
  }
  .service-review-grid {
    gap: 10px;
  }
  .service-review-grid article {
    padding: 16px;
  }
  .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
  .carousel-control.prev { left: 4px; }
  .carousel-control.next { right: 4px; }
  .floating-wa {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    min-height: 50px;
  }
  .floating-wa::before {
    width: 30px;
    height: 30px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 76px;
    width: auto;
  }
  .service-landing-hero {
    min-height: 0;
    display: block;
  }
  .service-landing-hero::after {
    inset: 0;
    opacity: .35;
    animation-duration: 9s;
  }
  .service-landing-hero > img {
    position: relative;
    height: auto;
    object-fit: contain;
    animation-name: heroMobileFloat;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-landing-hero > img,
  .service-landing-hero::after,
  .service-landing-hero .hero-content {
    animation: none;
    transform: none;
  }
}

@keyframes heroMobileFloat {
  from { transform: scale(1.01) translate3d(-1%, 0, 0); }
  to { transform: scale(1.045) translate3d(1%, -1%, 0); }
}
