:root {
  --ink: #f7efd8;
  --night: #051b12;
  --panel: #0b2b1d;
  --muted: #c8b987;
  --line: rgba(218, 174, 80, .28);
  --soft: #0f3324;
  --gold: #c99a37;
  --gold-2: #e4c06d;
  --champagne: #f6ebcf;
  --emerald: #063d2a;
  --blue: #185a9d;
  --whatsapp: #25d366;
  --white: #fff;
  --radius: 8px;
  --container: 1180px;
  --header-height: 74px;
  --shadow: 0 18px 48px rgba(12, 22, 34, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--night);
}
body.is-rtl {
  direction: rtl;
  font-family: Tahoma, "Noto Naskh Arabic", "Segoe UI", Arial, sans-serif;
}
body.menu-open { overflow: hidden; }
img, svg, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 84px 0; }
.section { background: linear-gradient(180deg, #082417, #061d13); }
.section--soft { background: linear-gradient(180deg, #0d3021, #082116); }
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-heading { max-width: 700px; margin: 0 auto 34px; text-align: center; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; color: var(--white); font-size: clamp(2.15rem, 4.4vw, 4.35rem); line-height: 1.04; letter-spacing: 0; }
h2 { margin: 0; color: var(--champagne); font-size: clamp(1.75rem, 3vw, 2.55rem); line-height: 1.16; letter-spacing: 0; }
h3 { margin: 0; line-height: 1.25; }
.section-heading p:last-child { margin: 12px 0 0; color: #d8cda8; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  width: 100%;
  min-height: var(--header-height);
  background: rgba(5, 27, 18, .92);
  border-bottom: 1px solid rgba(228, 192, 109, .28);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { box-shadow: 0 12px 28px rgba(0, 0, 0, .22); }
.navbar { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo, .footer-logo { display: inline-flex; align-items: center; font-weight: 900; }
.logo {
  flex: 0 0 auto;
  height: var(--header-height);
}
.logo img {
  width: auto;
  height: auto;
  max-height: calc(var(--header-height) - 10px);
  max-width: 150px;
  object-fit: contain;
}
.footer-logo {
  width: fit-content;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
}
.footer-logo img {
  width: auto;
  height: auto;
  max-height: 70px;
  max-width: 260px;
  object-fit: contain;
}
.nav-menu { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-link, .nav-menu__mobile a {
  display: inline-flex;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: #f4e8c7;
  font-size: .86rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover, .nav-link.active { color: var(--night); background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.header-actions { display: inline-flex; align-items: center; gap: 10px; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(228, 192, 109, .38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}
.language-switcher button,
.language-mobile button {
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--champagne);
  background: transparent;
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
}
.language-switcher button { min-width: 34px; padding: 6px 8px; }
.language-switcher button.active,
.language-mobile button.active { color: var(--night); background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--night);
  font-weight: 900;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--champagne);
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu__mobile { display: none; }

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 58px 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(228, 192, 109, .2), transparent 28%),
    linear-gradient(90deg, rgba(5, 27, 18, .98), rgba(6, 61, 42, .88) 55%, rgba(5, 27, 18, .42)),
    url("img/cars/togg-t10x.jpg") center / cover no-repeat;
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); align-items: center; gap: 40px; }
.hero__text { max-width: 620px; margin: 18px 0 0; color: #d7dee8; font-size: 1.12rem; }
.hero__question { margin: 12px 0 0; color: var(--gold-2); font-weight: 900; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.trust-pills li {
  padding: 8px 12px;
  border: 1px solid rgba(228, 192, 109, .3);
  border-radius: 999px;
  color: #edf2f7;
  background: rgba(255,255,255,.08);
  font-size: .88rem;
  font-weight: 800;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn--primary { color: var(--night); background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 14px 34px rgba(215,154,43,.28); }
.btn--whatsapp { color: var(--white); background: var(--whatsapp); box-shadow: 0 14px 34px rgba(37,211,102,.22); }
.btn--instagram { color: var(--white); background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4); box-shadow: 0 14px 34px rgba(221,42,123,.22); }
.btn--instagram svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.btn--call { color: var(--white); background: var(--blue); box-shadow: 0 14px 34px rgba(21,101,216,.22); }
.btn--dark { min-height: 40px; color: var(--white); background: var(--night); padding: 10px 14px; }
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 3;
  justify-self: end;
  margin: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__visual figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(8,17,28,.86);
}
.hero__visual figcaption strong { font-size: 1.05rem; }
.hero__visual figcaption span { color: #d7dee8; font-size: .88rem; font-weight: 750; }
.booking-form, .contact-form { display: grid; gap: 14px; margin-top: 18px; }
label { display: grid; gap: 6px; color: var(--champagne); font-size: .86rem; font-weight: 850; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--champagne);
  background: #082417;
}
textarea { resize: vertical; }
.contact-form input,
.contact-form textarea {
  min-height: 40px;
  padding: 9px 10px;
}
.contact-form textarea { min-height: 88px; }
.contact-form .btn { min-height: 42px; padding: 10px 16px; }

.stats-band { margin-top: -1px; padding: 24px 0; color: var(--white); background: linear-gradient(90deg, #04160f, #0e3a28, #04160f); border-block: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stats-grid div { padding: 12px; border-left: 1px solid rgba(255,255,255,.14); }
.stats-grid strong { display: block; color: var(--gold-2); font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1; }
.stats-grid span { color: #cdd6e0; font-weight: 750; }

.filter-tabs { display: none; }
.filter-tab {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #35404c;
  font-weight: 850;
  cursor: pointer;
}
.filter-tab.active { color: var(--night); border-color: #f1d290; background: #fff2d2; }
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 270px));
  justify-content: center;
  gap: 20px;
}
.vehicle-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(228, 192, 109, .28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #103825, #092316);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 24px 62px rgba(12,22,34,.16); }
.vehicle-card.is-hidden { display: none; }
.vehicle-card img { width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; object-position: center; background: #0b2016; }
.vehicle-card:nth-child(2) img { object-position: center 58%; }
.vehicle-card:nth-child(4) img { object-position: center 56%; }
.vehicle-card:nth-child(6) img { object-position: center 52%; }
.vehicle-card__body { flex: 1; display: flex; flex-direction: column; padding: 15px; }
.vehicle-card__tag { width: fit-content; padding: 5px 9px; border-radius: 999px; color: var(--night); background: linear-gradient(135deg, var(--gold-2), var(--gold)); font-size: .78rem; font-weight: 900; }
.vehicle-card h3 { margin-top: 8px; color: var(--champagne); font-size: 1.18rem; }
.vehicle-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin: 13px 0 16px; padding: 0; list-style: none; }
.vehicle-note { color: #d8cda8; margin: 12px 0 16px; font-weight: 750; }
.vehicle-card__body .btn { margin-top: auto; }
.vehicle-card__footer strong { max-width: 168px; font-size: .98rem; line-height: 1.18; }
.vehicle-card__footer span { display: block; color: var(--muted); font-size: .78rem; font-weight: 800; }
.price-note { margin: 18px 0 0; color: var(--muted); font-size: .9rem; text-align: center; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-card, .contact-card, .step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #123b28, #092316);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(12,22,34,.08);
}
.feature-card svg {
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius);
  color: var(--gold);
  background: #fff4da;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3, .step-card h3, .contact-card h3 { margin-top: 14px; font-size: 1.08rem; }
.feature-card p, .step-card p, .content-box p { color: #d8cda8; margin-bottom: 0; }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.steps--three { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 920px; margin-inline: auto; }
.step-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--gold-2);
  font-weight: 950;
}
.segment-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.segment-card { position: relative; min-height: 190px; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--night); }
.segment-card img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; transition: transform .28s ease; }
.segment-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,11,19,.82)); }
.segment-card figcaption { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; color: var(--white); font-weight: 950; }
.segment-card:hover img { transform: scale(1.05); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.video-card {
  border: 1px solid rgba(228, 192, 109, .28);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #123b28, #092316);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.video-card video {
  width: 100%;
  max-height: 460px;
  display: block;
  background: #03120c;
}
.video-card h3 {
  margin: 0;
  padding: 14px 16px;
  color: var(--champagne);
  font-size: 1rem;
}

.cta-strip {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(5,27,18,.96), rgba(8,48,32,.78)),
    url("img/cars/peugeot-2008.webp") center / cover no-repeat;
}
.cta-strip__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 26px; }
.cta-strip h2 { color: var(--white); }
.cta-strip p:last-child { color: #d7dee8; }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.two-column { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); align-items: center; gap: 44px; }
.about-section img { width: 100%; margin-top: 22px; aspect-ratio: 16 / 10; object-fit: contain; border-radius: var(--radius); background: rgba(246,235,207,.94); padding: 24px; box-shadow: var(--shadow); }
.content-box { font-size: 1.06rem; }
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #0b2b1d; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border: 0; color: var(--champagne); background: transparent; font-weight: 900; text-align: start; cursor: pointer; }
.faq-question b { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: var(--gold-2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { margin: 0; padding: 0 20px 18px; color: var(--muted); }
.faq-item.active .faq-answer { max-height: 190px; }

.contact-grid { display: grid; grid-template-columns: minmax(270px, .85fr) minmax(0, 1fr); gap: 22px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin: 18px 0 0; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; color: var(--muted); }
.contact-list svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: var(--radius);
  color: var(--gold);
  background: #fff4da;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-list li:nth-child(2) svg { color: var(--whatsapp); }
.contact-list a { color: var(--gold-2); font-weight: 900; }
.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: end;
  width: min(100%, 620px);
  margin: 0;
  padding: 18px;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #123b28, #092316);
  box-shadow: var(--shadow);
}
.form-wide { grid-column: 1 / -1; }
.map-wrapper {
  grid-column: 1 / -1;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b2b1d;
  box-shadow: var(--shadow);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  border: 0;
}

.floating-actions {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  gap: 10px;
}
.floating-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(12,22,34,.22);
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
}
.floating-btn svg { width: 25px; height: 25px; }
.floating-btn:hover { transform: translateY(-2px); }
.floating-btn--whatsapp { background: var(--whatsapp); }
.floating-btn--phone { background: var(--blue); }
.floating-btn--instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4); }
.floating-btn--instagram svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-btn--top { background: var(--night); opacity: 0; visibility: hidden; font-size: 1.2rem; font-weight: 950; }
.floating-btn--top.visible { opacity: 1; visibility: visible; }

.site-footer {
  padding: 58px 0 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(228,192,109,.16), transparent 30%),
    linear-gradient(180deg, #083020, #04160f);
  border-top: 1px solid rgba(228, 192, 109, .28);
}
.footer__grid { display: grid; grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(155px, .75fr)); gap: 30px; align-items: start; }
.footer-brand p, .footer-column ul, .footer-bottom p { margin: 0; }
.footer-brand p, .footer-column a, .footer-bottom { color: #c8d2de; }
.footer-brand p { max-width: 430px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-badges span {
  padding: 7px 9px;
  border: 1px solid rgba(242,184,75,.26);
  border-radius: 999px;
  color: #f6d99b;
  background: rgba(242,184,75,.08);
  font-size: .78rem;
  font-weight: 850;
}
.footer-column h3 { margin: 0 0 14px; font-size: 1rem; }
.footer-column ul { display: grid; gap: 9px; padding: 0; list-style: none; }
.footer-contact li { display: grid; gap: 2px; }
.footer-contact strong { color: var(--white); font-size: .82rem; }
.footer-contact span { color: #c8d2de; }
.footer-column a:hover, .digital-signature a { color: var(--gold-2); }
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.footer-cta strong { display: block; font-size: 1.08rem; }
.footer-cta span { display: block; margin-top: 4px; color: #c8d2de; }
.footer-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.footer-cta .btn { min-height: 42px; padding: 10px 14px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.digital-signature { font-weight: 800; }
.footer-slogan {
  margin: 12px 0 0;
  color: var(--gold-2);
  font-size: 1.05rem;
  font-weight: 950;
}

body.is-rtl .hero__content,
body.is-rtl .section-heading,
body.is-rtl .feature-card,
body.is-rtl .step-card,
body.is-rtl .content-box,
body.is-rtl .contact-card,
body.is-rtl .footer-column,
body.is-rtl .footer-brand {
  text-align: right;
}
body.is-rtl .hero__actions,
body.is-rtl .cta-strip__actions,
body.is-rtl .trust-pills {
  justify-content: flex-start;
}
body.is-rtl .contact-list li {
  grid-template-columns: 1fr 40px;
}
body.is-rtl .contact-list svg {
  grid-column: 2;
}
body.is-rtl .contact-list li > span {
  grid-column: 1;
  grid-row: 1;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .nav-link { padding-inline: 8px; font-size: .82rem; }
  .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 320px)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .segment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps, .steps--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --header-height: 68px; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px 16px max(90px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #082417;
    box-shadow: 0 22px 55px rgba(12,22,34,.22);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .24s ease;
    z-index: 140;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu__mobile { display: block; }
  .language-switcher { display: none; }
  .language-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 6px;
  }
  .language-mobile button {
    background: #103825;
    color: var(--champagne);
  }
  .nav-link, .nav-menu__mobile a {
    width: 100%;
    min-height: 46px;
    align-items: center;
    padding: 12px;
    background: #103825;
    color: var(--champagne);
  }
  .hero { min-height: auto; padding: 38px 0 32px; background-position: 62% center; }
  .hero__grid, .two-column, .contact-grid, .cta-strip__inner { grid-template-columns: 1fr; }
  .hero__visual { width: min(100%, 340px); max-width: 340px; justify-self: start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip__actions { justify-content: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-cta { align-items: flex-start; flex-direction: column; }
  .footer-cta__actions { justify-content: flex-start; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(1.88rem, 9.6vw, 2.75rem); }
  .logo img { max-height: calc(var(--header-height) - 12px); max-width: 126px; }
  .hero { padding-top: 34px; }
  .hero__actions, .cta-strip__actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-pills li { font-size: .8rem; }
  .contact-form, .feature-card, .contact-card, .step-card { padding: 18px; }
  .vehicle-grid, .feature-grid, .steps, .segment-grid, .contact-form { grid-template-columns: minmax(0, 1fr); }
  .vehicle-card { width: min(100%, 340px); margin-inline: auto; }
  .vehicle-card__body { padding: 14px; }
  .stats-grid { gap: 8px; }
  .stats-grid div { padding: 10px 8px; }
  .vehicle-card__footer { align-items: stretch; flex-direction: column; }
  .vehicle-card__footer .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer-cta__actions { width: 100%; flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .video-grid { grid-template-columns: minmax(0, 1fr); }
  .floating-actions { right: 12px; bottom: 12px; gap: 8px; display: grid; }
  .floating-btn { width: 48px; height: 48px; }
  .map-wrapper, .map-wrapper iframe { min-height: 240px; }
}

@media (max-width: 360px) {
  .vehicle-card ul { grid-template-columns: 1fr; }
  .filter-tab { flex: 1 1 auto; }
  .logo img { max-height: calc(var(--header-height) - 16px); max-width: 112px; }
  .hero__text { font-size: .98rem; }
}

/* Final polish: lighter HMS gold balance, clearer text, compact videos. */
body {
  color: #173224;
  background: #f3dfad;
}
.site-header {
  background: rgba(247, 232, 191, .94);
  border-bottom-color: rgba(10, 61, 42, .2);
}
.logo {
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.logo img {
  max-height: calc(var(--header-height) - 6px);
  max-width: 168px;
  filter: drop-shadow(0 5px 10px rgba(5, 27, 18, .24));
}
.nav-link {
  color: #0b2b1d;
}
.language-switcher {
  border-color: rgba(10, 61, 42, .22);
  background: rgba(255, 250, 235, .92);
  box-shadow: 0 10px 24px rgba(5, 27, 18, .08);
}
.language-switcher button {
  color: #0b2b1d;
}
.section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,0)),
    linear-gradient(180deg, #f6e8c2, #ecd28e);
}
.section--soft {
  background:
    linear-gradient(180deg, rgba(8,61,42,.08), rgba(8,61,42,.03)),
    linear-gradient(180deg, #fff2ce, #ead18d);
}
.section-heading p:last-child,
.feature-card p,
.step-card p,
.content-box p,
.vehicle-note,
.faq-answer p,
.contact-list li {
  color: #385743;
}
h2,
.vehicle-card h3,
.video-card h3,
.feature-card h3,
.step-card h3,
.contact-card h3 {
  color: #0b2b1d;
}
.section-kicker {
  color: #0b5b3a;
}
.hero {
  background:
    linear-gradient(90deg, rgba(5, 27, 18, .92), rgba(6, 61, 42, .72) 50%, rgba(238, 202, 116, .34)),
    url("img/cars/togg-t10x.jpg") center / cover no-repeat;
}
.hero h1,
.hero .hero__text {
  text-shadow: 0 2px 18px rgba(0,0,0,.34);
}
.hero__visual,
.vehicle-card,
.feature-card,
.step-card,
.contact-card,
.contact-form,
.faq-item,
.video-card {
  border-color: rgba(12, 71, 48, .2);
  background: linear-gradient(180deg, #fff8df, #efd99c);
  box-shadow: 0 16px 34px rgba(31, 56, 38, .13);
}
.vehicle-card img {
  background: #f2dfaa;
}
.btn--dark {
  color: #0b2b1d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}
.stats-band {
  color: #103825;
  background: linear-gradient(90deg, #e4c06d, #fff0c5, #d4a044);
}
.stats-grid span {
  color: #31523d;
}
.stats-grid div {
  border-left-color: rgba(10, 61, 42, .18);
}
.video-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.video-card {
  max-width: 220px;
  justify-self: center;
}
.video-card video {
  aspect-ratio: 9 / 14;
  max-height: 300px;
  object-fit: contain;
  background: #111;
}
.video-card h3 {
  padding: 10px 12px;
  font-size: .9rem;
  text-align: center;
}
.segment-card {
  background: #0b2b1d;
}
.contact-form input,
.contact-form textarea,
input,
select,
textarea {
  color: #153727;
  background: #fff8df;
}
.map-wrapper {
  background: #fff8df;
}
.site-footer {
  color: #fff8df;
  background:
    radial-gradient(circle at 12% 12%, rgba(228,192,109,.22), transparent 30%),
    linear-gradient(180deg, #0c422b, #061d13);
}
.footer-logo {
  padding: 12px 14px;
  background: #fff8df;
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
}
.footer-logo img {
  max-height: 84px;
  max-width: 300px;
  filter: drop-shadow(0 5px 10px rgba(5, 27, 18, .14));
}
.footer-brand p,
.footer-column a,
.footer-bottom,
.footer-contact span {
  color: #f4e8c7;
}

@media (max-width: 1080px) {
  .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .navbar { gap: 8px; }
  .logo { order: 1; }
  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 8px;
  }
  .language-switcher {
    display: inline-flex;
    padding: 3px;
  }
  .language-switcher button {
    min-width: 30px;
    min-height: 30px;
    padding: 5px 7px;
    font-size: .72rem;
  }
  .menu-toggle {
    order: 3;
    flex: 0 0 auto;
    background: #fff8df;
  }
  .menu-toggle span {
    background: #0b2b1d;
  }
  .nav-menu {
    background: #fff0c5;
    border-top-color: rgba(10, 61, 42, .18);
  }
  .nav-link,
  .nav-menu__mobile a {
    color: #0b2b1d;
    background: rgba(255,255,255,.48);
  }
  .language-mobile { display: none; }
  .logo img {
    max-width: 132px;
  }
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .video-card {
    width: 100%;
    max-width: 180px;
  }
  .video-card video {
    max-height: 250px;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, var(--container)); }
  .logo img {
    max-height: 48px;
    max-width: 112px;
  }
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .video-card {
    max-width: 165px;
  }
  .video-card video {
    max-height: 220px;
  }
  .video-card h3 {
    font-size: .82rem;
    padding: 8px;
  }
}

@media (max-width: 360px) {
  .language-switcher button {
    min-width: 27px;
    padding-inline: 5px;
  }
  .logo img {
    max-width: 96px;
  }
  .video-card {
    max-width: 145px;
  }
}

/* Emerald and gold balance pass: brighter surfaces, compact cards, fuller gallery. */
body {
  color: #123427;
  background: #f4efe2;
}
.site-header {
  background: rgba(248, 244, 232, .96);
  border-bottom-color: rgba(13, 84, 58, .18);
}
.section {
  background:
    linear-gradient(135deg, rgba(15, 102, 70, .08), rgba(214, 166, 62, .12)),
    #f8f3e7;
}
.section--soft {
  background:
    linear-gradient(135deg, rgba(213, 169, 70, .13), rgba(11, 92, 62, .09)),
    #fffaf0;
}
.section-kicker {
  color: #0b6a45;
}
.section-heading p:last-child,
.feature-card p,
.step-card p,
.content-box p,
.vehicle-note,
.faq-answer p,
.contact-list li {
  color: #456552;
}
h2,
.vehicle-card h3,
.video-card h3,
.feature-card h3,
.step-card h3,
.contact-card h3 {
  color: #0b2e20;
}
.hero {
  background:
    linear-gradient(90deg, rgba(5, 38, 26, .9), rgba(8, 88, 60, .62) 52%, rgba(233, 198, 119, .24)),
    url("img/cars/togg-t10x.jpg") center / cover no-repeat;
}
.hero__visual,
.vehicle-card,
.feature-card,
.step-card,
.contact-card,
.contact-form,
.faq-item,
.video-card,
.content-box {
  border-color: rgba(13, 84, 58, .2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,249,231,.95)),
    linear-gradient(135deg, rgba(9, 96, 64, .1), rgba(214, 166, 62, .18));
  box-shadow: 0 14px 30px rgba(27, 62, 42, .12);
}
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.feature-card {
  padding: 16px;
  min-height: 0;
}
.feature-card svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: #0b6a45;
  background: #fff1c8;
}
.feature-card h3 {
  margin-top: 10px;
  font-size: .96rem;
  line-height: 1.18;
}
.feature-card p {
  margin-top: 8px;
  font-size: .86rem;
  line-height: 1.5;
}
.segment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.segment-card {
  min-height: 172px;
  border: 1px solid rgba(13, 84, 58, .18);
  background: #0b3b29;
  box-shadow: 0 12px 28px rgba(27, 62, 42, .14);
}
.segment-card img {
  min-height: 172px;
}
.segment-card::after {
  background: linear-gradient(180deg, rgba(8, 46, 31, 0) 42%, rgba(6, 42, 28, .74));
}
.segment-card figcaption {
  color: #fff8df;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.about-layout {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
}
.about-copy .content-box {
  padding: 24px;
}
.about-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 84, 58, .2);
  border-radius: var(--radius);
  background: #0b3b29;
  box-shadow: 0 20px 42px rgba(27, 62, 42, .18);
}
.about-media img,
.about-section .about-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.about-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(13, 84, 58, .18);
  border-radius: 999px;
  color: #0b3b29;
  background: #fff2c9;
  font-size: .82rem;
  font-weight: 900;
}
.contact-list svg {
  color: #0b6a45;
  background: #fff1c8;
}
.contact-list a {
  color: #0b5f40;
}
.directions-btn {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
  color: #fff8df;
  background: linear-gradient(135deg, #0b6a45, #0e3b29);
}
.directions-btn:hover {
  filter: brightness(1.08);
}
.map-wrapper {
  background: #f8f3e7;
  border-color: rgba(13, 84, 58, .18);
}
.stats-band {
  color: #fff8df;
  background: linear-gradient(90deg, #0c5f40, #d0a445, #0e3b29);
}
.stats-grid span {
  color: #fff3cd;
}
.site-footer {
  background:
    radial-gradient(circle at 12% 12%, rgba(214,166,62,.22), transparent 30%),
    linear-gradient(180deg, #0d5a3c, #062216);
}

@media (max-width: 1080px) {
  .feature-grid,
  .segment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-menu {
    background: #f8f3e7;
  }
  .nav-link,
  .nav-menu__mobile a {
    background: rgba(12, 95, 64, .08);
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-media img,
  .about-section .about-media img {
    min-height: 250px;
  }
}

@media (max-width: 620px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .feature-card {
    padding: 12px;
  }
  .feature-card svg {
    width: 30px;
    height: 30px;
  }
  .feature-card h3 {
    font-size: .86rem;
  }
  .feature-card p {
    font-size: .78rem;
    line-height: 1.42;
  }
  .segment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .segment-card,
  .segment-card img {
    min-height: 142px;
  }
  .segment-card figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: .84rem;
  }
  .about-copy .content-box {
    padding: 18px;
  }
  .about-media img,
  .about-section .about-media img {
    min-height: 210px;
  }
}

/* Readability pass for hero badges, FAQ and reservation/contact form. */
.trust-pills li {
  border-color: rgba(255, 244, 214, .85);
  color: #fffdf4;
  background: rgba(4, 39, 27, .76);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  text-shadow: 0 1px 6px rgba(0,0,0,.32);
}
.hero .section-kicker {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(255, 244, 214, .74);
  border-radius: 999px;
  color: #fff6d6;
  background: rgba(4, 39, 27, .78);
  text-shadow: 0 1px 8px rgba(0,0,0,.38);
}
.hero__question {
  color: #ffe39b;
  text-shadow: 0 1px 8px rgba(0,0,0,.38);
}
.faq-item {
  border-color: rgba(8, 89, 58, .28);
  background: #fffdf5;
}
.faq-question {
  color: #092f20;
  background: linear-gradient(90deg, rgba(9, 96, 64, .12), rgba(214, 166, 62, .16));
}
.faq-question span {
  color: #092f20;
}
.faq-answer p {
  color: #183f2d;
  font-weight: 760;
  line-height: 1.65;
}
.contact-form label,
.booking-form label,
label {
  color: #092f20;
  font-weight: 950;
}
.contact-form label span,
.booking-form label span {
  color: #092f20;
}
.contact-form input,
.contact-form textarea,
input,
select,
textarea {
  border-color: rgba(8, 89, 58, .34);
  color: #092f20;
  background: #fffdf5;
  font-weight: 750;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder,
input::placeholder,
textarea::placeholder {
  color: #537362;
}
.contact-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,224,.98)),
    linear-gradient(135deg, rgba(9, 96, 64, .12), rgba(214, 166, 62, .16));
}
.contact-form .btn {
  color: #082719;
  text-shadow: none;
}

@media (max-width: 620px) {
  .trust-pills li {
    font-size: .82rem;
    font-weight: 950;
  }
  .hero .section-kicker {
    font-size: .76rem;
    line-height: 1.35;
  }
  .faq-question {
    padding: 16px;
  }
  .faq-answer p {
    padding-inline: 16px;
    font-size: .94rem;
  }
}

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