/* ============ ATLANTIQUE DRIVE — STYLES ============ */

:root {
  --black: #0a0a0a;
  --dark: #161616;
  --graphite: #232323;
  --gray-1: #4a4a4a;
  --gray-2: #767676;
  --gray-3: #b0b0b0;
  --gray-4: #dcdad4;
  --off-white: #f5f4f0;
  --white: #ffffff;
  --gold: #b8a37e;
  --gold-bright: #d4c4a0;
  --gold-soft: rgba(184, 163, 126, 0.4);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-power: cubic-bezier(0.77, 0, 0.175, 1);
  --tracking-eyebrow: 0.22em;

  --content-max: 1440px;
  --content-pad: 1.5rem;
}
@media (min-width: 768px) { :root { --content-pad: 2.5rem; } }
@media (min-width: 1280px) { :root { --content-pad: 4rem; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--white);
  color: var(--black);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 1024px) { body { cursor: auto; } }
::selection { background: var(--black); color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

a, button { cursor: none; }
@media (max-width: 1024px) { a, button { cursor: pointer; } }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

/* ============ INTRO LOADER ============ */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: opacity 0.8s var(--ease-power), visibility 0.8s var(--ease-power);
}
.loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; padding: 2rem; }
.loader-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 0.6s var(--ease) 0.2s forwards;
}
.loader-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.loader-title .line { display: block; overflow: hidden; }
.loader-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineIn 1s var(--ease-power) forwards;
}
.loader-title .line:nth-child(1) > span { animation-delay: 0.4s; }
.loader-title .line:nth-child(2) > span { animation-delay: 0.55s; }
.loader-title .line:nth-child(3) > span { animation-delay: 0.7s; color: var(--gold); }
@keyframes lineIn { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
.loader-progress {
  width: 240px; max-width: 80vw; height: 1px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.loader-bar {
  width: 0; height: 100%;
  background: var(--gold);
  animation: progress 1.7s var(--ease-power) 0.3s forwards;
}
@keyframes progress { to { width: 100%; } }

/* ============ CUSTOM CURSOR ============ */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 150;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  margin: -3px 0 0 -3px;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  margin: -18px 0 0 -18px;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  background: rgba(212, 196, 160, 0.1);
}
@media (max-width: 1024px) { .cursor, .cursor-ring { display: none; } }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px;
  background: currentColor; display: inline-block;
}
.eyebrow.no-line::before { display: none; }
.eyebrow.dark { color: var(--gray-1); }

h1, h2, h3, h4 { font-weight: 500; line-height: 1.02; letter-spacing: -0.025em; }
h1 { font-size: clamp(3rem, 11vw, 9rem); font-weight: 300; line-height: 0.96; }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 500; }

.italic-accent, .italic-display {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s var(--ease), transform 0.2s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  will-change: transform;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover {
  background: var(--graphite);
  box-shadow: inset 0 -1px 0 var(--gold);
}
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost.dark { color: var(--black); border-color: rgba(10,10,10,0.2); }
.btn-ghost.dark:hover { color: var(--gold); border-color: var(--gold); }

.btn-light { background: var(--white); color: var(--black); }
.btn-light:hover { background: var(--off-white); box-shadow: inset 0 -1px 0 var(--gold); }

.btn-large { padding: 1.25rem 2.5rem; font-size: 13px; }

/* ============ VERTICAL SECTION LABEL ============ */
.v-label {
  position: absolute;
  left: 1.25rem; top: 6rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-2);
  display: none;
  z-index: 5;
}
@media (min-width: 1280px) { .v-label { display: block; } }
.v-label.light { color: var(--gray-3); }
.v-label .gold { color: var(--gold); }

/* ============ HEADER ============ */
header.site {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s var(--ease);
  background: transparent;
  color: var(--white);
}
header.site.scrolled, header.site.dark {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--black);
  border-bottom: 1px solid rgba(220, 218, 212, 0.5);
}
header.site .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.logo {
  font-size: 17px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.logo .dot { color: var(--gold); }

nav.primary { display: none; }
@media (min-width: 1024px) { nav.primary { display: flex; } }
nav.primary ul {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.primary li { list-style: none; }
nav.primary a {
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s var(--ease);
  position: relative;
  display: inline-block;
}
nav.primary a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
nav.primary a:hover { color: var(--gold); }
nav.primary a:hover::after,
nav.primary li.current-menu-item a::after,
nav.primary .current_page_item a::after { width: 100%; }

/* ============ MENU MOBILE ============ */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
}
@media (min-width: 1025px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s var(--ease);
  display: block;
}
.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(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  color: var(--black);
  z-index: 99;
  overflow-y: auto;
  padding: 1.5rem var(--content-pad);
  animation: fadeInMobile 0.3s var(--ease);
}
@media (min-width: 1025px) { .mobile-menu { display: none !important; } }
.mobile-menu[hidden] { display: none; }
@keyframes fadeInMobile {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu nav li {
  list-style: none;
  border-bottom: 1px solid var(--gray-4);
}
.mobile-menu nav li:last-child { border-bottom: none; }
.mobile-menu nav a {
  display: block;
  padding: 1.25rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s var(--ease);
}
.mobile-menu nav a:hover { color: var(--gold); }
body.menu-open { overflow: hidden; }

/* ============ FOOTER MENU OVERRIDE (wp_nav_menu) ============ */
footer.site .menu, footer.site nav > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
}
footer.site .footer-bottom ul {
  flex-direction: row !important;
  gap: 1.5rem;
}
footer.site li { list-style: none; }

.header-right { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .header-right { display: flex; } }
.phone-link {
  font-size: 13px;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s var(--ease);
}
.phone-link:hover { color: var(--gold); }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 24px; height: 1.5px;
  background: currentColor;
  transition: all 0.3s var(--ease);
}

/* ============ HERO (homepage) ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--black);
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.25) 35%, rgba(10,10,10,0.95) 100%),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=2400&q=80&auto=format&fit=crop");
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.07; mix-blend-mode: overlay; pointer-events: none;
}
.hero-brand-bg {
  position: absolute;
  bottom: -2rem; left: -2rem; right: -2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.8;
  color: var(--white);
  opacity: 0.04;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none; user-select: none;
}
.hero-content {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 13rem;
}
.hero-content .eyebrow { color: var(--gold); margin-bottom: 1.75rem; }
.hero-content h1 { max-width: 16ch; margin-bottom: 1.5rem; }
.hero-content h1 .line { display: block; overflow: hidden; }
.hero-content h1 .line > span { display: inline-block; }
.hero-content h1 .italic-display { color: var(--gold); }
.hero-content p.lead {
  max-width: 36rem;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--gray-3);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem;
  font-size: 13px; color: var(--gray-3);
  letter-spacing: 0.02em;
}
.hero-meta .pill { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta .star { color: var(--gold); }

/* Hero variant — small/page header */
.page-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 12rem 0 6rem;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%),
    var(--page-hero-bg, none);
  background-size: cover; background-position: center;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.page-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  max-width: 18ch;
  margin-bottom: 1rem;
}
.page-hero p.lead {
  color: var(--gray-3);
  font-size: 1.125rem;
  max-width: 40rem;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--black); color: var(--white);
  padding: 1.75rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex; align-items: center; gap: 3rem;
  white-space: nowrap;
  animation: scrollX 40s linear infinite;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
}
@keyframes scrollX { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { color: var(--white); display: inline-flex; align-items: center; gap: 3rem; }
.marquee-dot { color: var(--gold); font-size: 0.7em; }
.marquee-sub {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  color: var(--gray-2);
  font-size: 0.7em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============ BOOKING WIDGET ============ */
.booking-wrap { position: relative; margin-top: -7rem; z-index: 10; }
.booking {
  background: var(--white);
  box-shadow: 0 40px 80px rgba(10, 10, 10, 0.15), 0 16px 32px rgba(10, 10, 10, 0.08);
  border-top: 1px solid var(--gold-soft);
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .booking-form { grid-template-columns: 1.4fr 1.4fr 1fr 0.8fr 1fr auto; }
}
.field {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-4);
  transition: background 0.3s var(--ease);
  position: relative;
}
@media (min-width: 1024px) {
  .field { border-bottom: none; border-right: 1px solid var(--gray-4); }
}
.field:hover { background: #fafaf7; }
.field-label {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gray-1);
  margin-bottom: 0.4rem;
}
.field-label svg { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; border: none;
  background: transparent;
  font: inherit; font-size: 15px;
  color: var(--black); outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-2); }
.field select { appearance: none; cursor: none; padding-right: 1.25rem; }
@media (max-width: 1024px) { .field select { cursor: pointer; } }

.booking-submit {
  background: var(--black); color: var(--white);
  padding: 1.75rem 2.5rem;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s var(--ease);
  will-change: transform;
}
.booking-submit:hover { background: var(--graphite); box-shadow: inset 0 -1px 0 var(--gold); }
.booking-submit svg { transition: transform 0.3s var(--ease); }
.booking-submit:hover svg { transform: translateX(4px); }

.booking-footer {
  background: var(--off-white);
  padding: 0.875rem 1.5rem;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 0.25rem 1.25rem;
  font-size: 12px; color: var(--gray-1);
}
.booking-footer span.check { display: inline-flex; align-items: center; gap: 0.5rem; }
.booking-footer .check svg { color: var(--gold); }

/* ============ STATS ============ */
.stats { padding: 6rem 0 5rem; background: var(--white); position: relative; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 0;
  border-top: 1px solid var(--gray-4); border-bottom: 1px solid var(--gray-4);
  padding: 4rem 0;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: left; padding: 0 1.5rem;
  border-right: 1px solid var(--gray-4);
}
.stat:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
  .stat:nth-child(2n) { border-right: 1px solid var(--gray-4); }
  .stat:last-child { border-right: none; }
}
.stat-num {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200; line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 0.75rem;
}
.stat-num .suffix { color: var(--gold); font-weight: 400; }
.stat-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gray-1);
}

/* ============ SECTION-HEAD ============ */
.section-head {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  max-width: 1000px;
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
}
.section-head .left .eyebrow { margin-bottom: 1.5rem; }
.section-head h2 { max-width: 18ch; }
.section-head p {
  color: var(--gray-1); font-size: 1.0625rem;
  line-height: 1.7; max-width: 38ch;
}

/* ============ SERVICES ============ */
.services { padding: 8rem 0; background: var(--off-white); position: relative; }
.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; background: var(--gray-4);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease);
  min-height: 360px;
  position: relative; overflow: hidden;
}
.service-card .bg-num {
  position: absolute;
  bottom: -3rem; right: -0.5rem;
  font-size: clamp(8rem, 14vw, 13rem);
  font-weight: 200; color: var(--gray-4);
  line-height: 0.8;
  pointer-events: none;
  transition: all 0.5s var(--ease);
  letter-spacing: -0.08em;
  user-select: none;
}
.service-card:hover { background: var(--black); color: var(--white); }
.service-card:hover .bg-num { color: var(--gold); opacity: 0.18; transform: translate(-1rem, -1rem); }
.service-card:hover .eyebrow { color: var(--gold); }
.service-card:hover .service-meta { color: var(--gray-3); }
.service-card:hover .arrow { color: var(--gold); }
.service-card > * { position: relative; z-index: 1; }
.service-card .eyebrow { margin-bottom: 2rem; transition: color 0.4s var(--ease); }
.service-card h3 {
  font-size: 1.5rem; line-height: 1.2;
  margin-bottom: 1rem; max-width: 14ch;
}
.service-card .service-meta {
  color: var(--gray-1); font-size: 14px;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
  transition: color 0.4s var(--ease);
}
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  transition: all 0.3s var(--ease);
  margin-top: auto;
}
.service-card .arrow svg { transition: transform 0.3s var(--ease); }
.service-card:hover .arrow svg { transform: translateX(4px); }

/* ============ FLEET ============ */
.fleet {
  background: var(--black); color: var(--white);
  padding: 8rem 0;
  overflow: hidden; position: relative;
}
.fleet .section-head .eyebrow { color: var(--gold); }
.fleet .section-head p { color: var(--gray-3); }
.fleet-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; margin-top: 1rem;
}
@media (min-width: 1024px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }
.vehicle-card {
  background: var(--dark);
  overflow: hidden; position: relative;
  transition: all 0.4s var(--ease);
}
.vehicle-img-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.vehicle-img {
  width: 100%; height: 100%;
  background-color: #222;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  filter: grayscale(50%) brightness(0.85);
}
.vehicle-card:hover .vehicle-img { transform: scale(1.06); filter: grayscale(0%) brightness(1); }
.vehicle-img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}
.vehicle-body {
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vehicle-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gray-3);
}
.vehicle-meta .num { color: var(--gold); }
.vehicle-card h3 { font-size: 1.625rem; margin-bottom: 0.75rem; }
.vehicle-desc { color: var(--gray-3); font-size: 14px; line-height: 1.6; margin-bottom: 1.5rem; }
.vehicle-specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.spec {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 13px; color: var(--gray-3);
}
.spec svg { color: var(--gold); flex-shrink: 0; }
.vehicle-price {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: baseline;
}
.price-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gray-3);
}
.price-amount { font-size: 1.5rem; font-weight: 500; }

/* ============ WHY US ============ */
.why { padding: 8rem 0; background: var(--white); position: relative; }
.why-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-4);
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-4);
}
@media (min-width: 1024px) {
  .why-item { padding: 3rem; border-right: 1px solid var(--gray-4); border-bottom: 1px solid var(--gray-4); }
  .why-item:nth-child(3n) { border-right: none; }
  .why-item:first-child { padding-left: 0; }
  .why-item:nth-child(3n) { padding-right: 0; }
  .why-item:nth-last-child(-n+3) { border-bottom: none; }
}
.why-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1; font-weight: 400;
}
.why-item h3 { font-size: 1.5rem; margin-bottom: 1rem; max-width: 16ch; }
.why-item p { color: var(--gray-1); font-size: 14px; line-height: 1.7; max-width: 38ch; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 8rem 0; background: var(--off-white); overflow: hidden; position: relative; }
.testimonials .section-head { margin-bottom: 4rem; }
.testimonial-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .testimonial-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial {
  background: var(--white); padding: 2rem;
  transition: all 0.3s var(--ease);
  border-top: 1px solid transparent;
  will-change: transform;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(10,10,10,0.06);
  border-top-color: var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 13px; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.testimonial-quote {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 1.125rem; line-height: 1.55;
  color: var(--black); margin-bottom: 1.5rem;
}
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--black); }
.testimonial-role { font-size: 11px; color: var(--gray-1); letter-spacing: 0.04em; margin-top: 2px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  background-color: var(--black);
  background-image:
    linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.3) 100%),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=2400&q=80&auto=format&fit=crop");
  background-size: cover; background-position: center;
  color: var(--white); overflow: hidden;
}
.cta-banner .container {
  padding-top: 8rem; padding-bottom: 8rem;
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; align-items: end;
}
@media (min-width: 1024px) { .cta-banner .container { grid-template-columns: 1.5fr 1fr; gap: 5rem; } }
.cta-banner h2 { max-width: 18ch; margin-bottom: 1rem; }
.cta-banner p { color: var(--gray-3); font-size: 1rem; line-height: 1.7; max-width: 40ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============ FOOTER ============ */
footer.site {
  background: var(--black); color: var(--gray-3);
  border-top: 1px solid var(--gold-soft);
  padding: 5rem 0 1.5rem;
  position: relative; overflow: hidden;
}
.footer-brand-bg {
  position: absolute;
  bottom: -4rem; left: -2rem; right: -2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.8;
  color: var(--white);
  opacity: 0.025;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none; user-select: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; margin-bottom: 4rem;
  position: relative; z-index: 1;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 4fr 3fr 2fr 3fr; } }
.footer-brand .logo { color: var(--white); margin-bottom: 1.5rem; display: block; font-size: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 22rem; margin-bottom: 2rem; }
.footer-rule { width: 36px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.footer h4, footer.site h4 {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--tracking-eyebrow);
  color: var(--gold); margin-bottom: 1.5rem;
}
footer.site ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
footer.site ul li {
  font-size: 14px;
  display: flex; align-items: center; gap: 0.75rem;
  transition: color 0.2s var(--ease);
}
footer.site ul li a:hover, footer.site ul li:hover { color: var(--white); }
footer.site ul li svg { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; flex-direction: column;
  gap: 0.75rem; font-size: 12px; color: var(--gray-2);
  position: relative; z-index: 1;
}
@media (min-width: 1024px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom ul { flex-direction: row !important; gap: 1.5rem; }
.footer-bottom ul li { color: var(--gray-2); }
.footer-bottom ul li:hover { color: var(--gold); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--black); color: var(--gold);
  padding: 0.875rem 1.25rem 0.875rem 1rem;
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--gold);
  box-shadow: 0 20px 40px rgba(10,10,10,0.2);
  transition: all 0.3s var(--ease);
  will-change: transform;
}
.wa-float:hover {
  background: var(--graphite);
  transform: translateY(-2px);
  box-shadow: 0 28px 56px rgba(10,10,10,0.28);
}
@media (max-width: 640px) {
  .wa-float .lbl { display: none; }
  .wa-float { padding: 0.875rem; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); }

/* ============ RESERVATION TUNNEL ============ */
.tunnel-wrap {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background: var(--off-white);
  min-height: 100vh;
}
.tunnel-progress {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--gray-4);
  margin-bottom: 3rem;
}
.tunnel-step {
  flex: 1;
  padding: 1rem 0;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 0.25rem;
  position: relative;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tunnel-step.active { border-bottom-color: var(--gold); }
.tunnel-step.done { border-bottom-color: var(--gold); opacity: 0.6; }
.tunnel-step .num {
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--gold); font-weight: 600;
  text-transform: uppercase;
}
.tunnel-step .label {
  font-size: 14px; font-weight: 500;
  color: var(--gray-1);
}
.tunnel-step.active .label { color: var(--black); }

.tunnel-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .tunnel-grid { grid-template-columns: 1.5fr 1fr; gap: 4rem; } }

.tunnel-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(10,10,10,0.04), 0 4px 8px rgba(10,10,10,0.03);
}
.tunnel-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500; margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.tunnel-card .sub { color: var(--gray-1); font-size: 14px; margin-bottom: 2rem; }

.tunnel-form {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .tunnel-form.cols-2 { grid-template-columns: 1fr 1fr; } }

.tunnel-field { display: flex; flex-direction: column; gap: 0.5rem; }
.tunnel-field label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gray-1);
}
.tunnel-field input, .tunnel-field select, .tunnel-field textarea {
  border: 1px solid var(--gray-4);
  padding: 0.85rem 1rem;
  font-family: inherit; font-size: 15px;
  background: var(--white);
  transition: border-color 0.2s var(--ease);
  outline: none;
}
.tunnel-field input:focus, .tunnel-field select:focus, .tunnel-field textarea:focus {
  border-color: var(--gold);
}

.tunnel-recap {
  background: var(--black); color: var(--white);
  padding: 2.5rem; height: fit-content;
  position: sticky; top: 7rem;
}
.tunnel-recap h3 {
  color: var(--white); font-size: 1.25rem;
  margin-bottom: 1.5rem; font-weight: 500;
}
.recap-line {
  display: flex; justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.recap-line .key { color: var(--gray-3); }
.recap-line .val { font-weight: 500; max-width: 60%; text-align: right; }
.recap-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 1.5rem; margin-top: 1rem;
  border-top: 1px solid var(--gold);
}
.recap-total .key {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold);
}
.recap-total .val {
  font-size: 2rem; font-weight: 300;
  letter-spacing: -0.02em;
}
.recap-total .val .currency { color: var(--gold); font-size: 0.7em; margin-left: 4px; }

/* Vehicle choice radio */
.vehicle-radio-list { display: grid; gap: 1rem; }
.vehicle-radio {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-4);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}
.vehicle-radio.disabled { opacity: 0.4; pointer-events: none; }
.vehicle-radio:has(input:checked) {
  border-color: var(--gold);
  background: #faf9f4;
  box-shadow: 0 4px 12px rgba(184,163,126,0.15);
}
.vehicle-radio input[type="radio"] {
  position: absolute; opacity: 0;
  pointer-events: none;
}
.vehicle-radio .v-img {
  width: 100px; height: 75px;
  background-size: cover; background-position: center;
  background-color: var(--gray-4);
  filter: grayscale(30%);
}
.vehicle-radio:has(input:checked) .v-img { filter: grayscale(0%); }
.vehicle-radio h4 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.25rem; }
.vehicle-radio .specs {
  font-size: 12px; color: var(--gray-1);
  display: flex; gap: 0.75rem;
}
.vehicle-radio .price {
  font-size: 1.75rem; font-weight: 300;
  letter-spacing: -0.02em;
}
.vehicle-radio .price .currency { font-size: 14px; color: var(--gold); }

/* Confirmation page */
.confirmation-hero {
  background: var(--black); color: var(--white);
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.confirmation-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 30%, rgba(184,163,126,0.15) 0%, transparent 50%);
}
.confirmation-hero .container { position: relative; }
.confirmation-icon {
  width: 80px; height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}

/* Generic content layouts */
.content-section {
  padding: 6rem 0;
  background: var(--white);
}
.content-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.content-section p {
  color: var(--gray-1);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 60ch;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--gray-4);
}
.accordion-trigger {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  font-family: inherit;
}
.accordion-trigger h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.accordion-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--gray-4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon { background: var(--black); color: var(--white); border-color: var(--black); }
.accordion-icon svg { transition: transform 0.3s var(--ease); }
.accordion-item.open .accordion-icon svg { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-power);
}
.accordion-content > div {
  padding: 0 0 1.5rem;
  color: var(--gray-1);
  font-size: 15px;
  line-height: 1.7;
  max-width: 70ch;
}

/* ============ CITY PAGES ============ */
.city-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 11rem 0 5rem;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}
.city-hero-bg {
  position: absolute; inset: 0;
  background-color: var(--black);
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
}
.city-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.95) 100%);
}
.city-hero-mark {
  position: absolute;
  bottom: -2rem; left: -1rem; right: -1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(7rem, 22vw, 24rem);
  line-height: 0.8;
  color: var(--white);
  opacity: 0.05;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none; user-select: none;
}
.city-hero .container { position: relative; }
.city-hero h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 1rem 0 1.5rem;
}
.city-hero h1 .italic-display { color: var(--gold); }
.city-hero p.lead {
  color: var(--gray-3);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
  max-width: 38rem;
  margin-bottom: 2rem;
}
.city-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* City pillars (3 cols) */
.city-pillars {
  background: var(--white);
  padding: 6rem 0;
  border-bottom: 1px solid var(--gray-4);
}
.city-pillars-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-4);
}
@media (min-width: 768px) { .city-pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-4);
}
@media (min-width: 768px) {
  .pillar { padding: 2.5rem; border-right: 1px solid var(--gray-4); border-bottom: none; }
  .pillar:last-child { border-right: none; }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child { padding-right: 0; }
}
.pillar-icon {
  width: 44px; height: 44px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 500; max-width: 18ch; }
.pillar p { color: var(--gray-1); font-size: 14px; line-height: 1.7; max-width: 36ch; }

/* Routes grid */
.routes {
  background: var(--off-white);
  padding: 8rem 0;
  position: relative;
}
.routes-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2px;
  background: var(--gray-4);
}
@media (min-width: 640px) { .routes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .routes-grid { grid-template-columns: repeat(3, 1fr); } }
.route-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: all 0.3s var(--ease);
}
.route-card:hover { background: var(--black); color: var(--white); }
.route-card:hover .route-arrow { color: var(--gold); }
.route-card:hover .route-meta { color: var(--gray-3); }
.route-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 0.75rem;
  transition: color 0.3s var(--ease);
}
.route-card:hover .route-eyebrow { color: var(--gold); }
.route-direction {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.route-direction .arr {
  color: var(--gold);
}
.route-meta {
  font-size: 13px;
  color: var(--gray-1);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  transition: color 0.3s var(--ease);
}
.route-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-4);
}
.route-card:hover .route-price { border-top-color: rgba(255,255,255,0.1); }
.route-price .from {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-2);
}
.route-card:hover .route-price .from { color: var(--gray-3); }
.route-price .amt {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.route-price .amt .cur {
  font-size: 0.7em;
  color: var(--gold);
  margin-left: 2px;
}
.route-arrow {
  position: absolute;
  top: 1.75rem;
  right: 1.5rem;
  color: var(--gray-2);
  transition: color 0.3s var(--ease);
}

/* Local highlights (2 cols copy + image) */
.local-highlights {
  background: var(--white);
  padding: 8rem 0;
}
.local-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .local-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }
.local-img {
  aspect-ratio: 4/5;
  background-color: var(--off-white);
  background-size: cover; background-position: center;
}
.local-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 1rem 0 1.5rem;
}
.local-content h2 .italic-display { color: var(--gold); }
.local-content p {
  color: var(--gray-1);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 50ch;
}
.local-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.local-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 13px;
  color: var(--gray-1);
  line-height: 1.5;
}
.local-points li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Local testimonial */
.local-quote {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.local-quote .mark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 5rem; line-height: 0.5;
  margin-bottom: 0.5rem;
}
.local-quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.4;
  max-width: 36ch;
  margin: 0 auto 2rem;
  color: var(--white);
}
.local-quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gray-3);
}
.local-quote cite strong { color: var(--white); font-weight: 600; display: block; }

/* ============ LEGAL PAGES ============ */
.legal-content {
  padding: 5rem 0 7rem;
  background: var(--white);
}
.legal-content .meta {
  font-size: 12px; color: var(--gray-1);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-4);
  margin-bottom: 3rem;
}
.legal-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-4);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.legal-content p {
  color: var(--gray-1);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 15px;
  max-width: 70ch;
}
.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--gray-1);
  line-height: 1.75;
  font-size: 15px;
}
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-content strong { color: var(--black); font-weight: 600; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-bright); }
.legal-content table {
  border-collapse: collapse;
  width: 100%; max-width: 70ch;
  margin: 1.5rem 0;
  font-size: 14px;
}
.legal-content table th, .legal-content table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-4);
  vertical-align: top;
}
.legal-content table th {
  background: var(--off-white);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-1);
}

/* ============ VEHICLE DETAIL PAGES ============ */
.vehicle-hero {
  position: relative;
  padding: 11rem 0 6rem;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.vehicle-hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .vehicle-hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.vehicle-hero-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--dark);
  filter: grayscale(20%) brightness(0.95);
  border: 1px solid rgba(184,163,126,0.15);
}
.vehicle-hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 1rem 0 0.5rem;
  line-height: 1.02;
}
.vehicle-hero-text h1 .italic-display { color: var(--gold); }
.vehicle-hero-text .model {
  color: var(--gray-3); font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.vehicle-hero-text p.desc {
  color: var(--gray-3);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 40ch;
  margin-bottom: 2rem;
}
.vehicle-hero-meta {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.vh-stat .num {
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.vh-stat .num .gold { color: var(--gold); }
.vh-stat .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-3);
}

.specs-section {
  background: var(--off-white);
  padding: 6rem 0;
}
.specs-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; background: var(--gray-4);
  border-top: 1px solid var(--gray-4); border-bottom: 1px solid var(--gray-4);
}
@media (min-width: 640px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .specs-grid { grid-template-columns: repeat(3, 1fr); } }
.spec-item {
  background: var(--white);
  padding: 1.75rem 1.5rem;
}
.spec-item .ic { color: var(--gold); margin-bottom: 0.75rem; }
.spec-item h4 { font-size: 13px; font-weight: 600; margin-bottom: 0.25rem; }
.spec-item p { font-size: 13px; color: var(--gray-1); line-height: 1.5; }

/* ============ SERVICE DETAIL ============ */
.service-process {
  background: var(--white);
  padding: 8rem 0;
}
.process-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; background: var(--gray-4);
  margin-top: 4rem;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--gold);
  position: relative;
}
.process-step .num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.125rem; margin-bottom: 0.5rem; font-weight: 600; }
.process-step p { color: var(--gray-1); font-size: 13px; line-height: 1.6; }

.price-table {
  background: var(--off-white);
  padding: 6rem 0;
}
.price-list {
  border-top: 1px solid var(--gray-4);
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-4);
  align-items: baseline;
}
.price-row-name {
  font-size: 1.0625rem; font-weight: 500;
}
.price-row-meta {
  font-size: 12px; color: var(--gray-1);
  letter-spacing: 0.04em;
}
.price-row-amount {
  font-size: 1.5rem; font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--black);
}
.price-row-amount .cur { color: var(--gold); font-size: 0.7em; margin-left: 4px; }

/* ============ DASHBOARD / ACCOUNT ============ */
.account-hero {
  background: var(--off-white);
  padding: 10rem 0 3rem;
  border-bottom: 1px solid var(--gray-4);
}
.account-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.account-hero .meta {
  color: var(--gray-1); font-size: 14px;
}
.account-hero .meta strong { color: var(--black); }

.account-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  padding: 4rem 0 6rem;
}
@media (min-width: 1024px) { .account-grid { grid-template-columns: 240px 1fr; gap: 3rem; } }

.account-nav {
  display: flex; flex-direction: row;
  gap: 0;
  border-bottom: 1px solid var(--gray-4);
  margin-bottom: 2rem;
  overflow-x: auto;
}
@media (min-width: 1024px) {
  .account-nav { flex-direction: column; border-bottom: none; border-right: 1px solid var(--gray-4); margin-bottom: 0; padding-right: 1.5rem; }
}
.account-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 14px;
  color: var(--gray-1);
  border-left: 2px solid transparent;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.account-nav a.active { color: var(--black); border-left-color: var(--gold); font-weight: 500; }
.account-nav a:hover { color: var(--black); }
.account-nav a svg { color: var(--gold); flex-shrink: 0; }

.dashboard-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--gray-4);
  border: 1px solid var(--gray-4);
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .dashboard-cards { grid-template-columns: repeat(3, 1fr); } }
.dash-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
}
.dash-card .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 0.75rem;
}
.dash-card .val {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.dash-card .val .gold { color: var(--gold); font-size: 0.7em; }
.dash-card .sub {
  font-size: 13px;
  color: var(--gray-1);
}

.bookings-table {
  border: 1px solid var(--gray-4);
  background: var(--white);
  margin-bottom: 3rem;
}
.bookings-table-head {
  display: grid;
  grid-template-columns: 120px 1.5fr 1fr 100px 90px;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-1);
  font-weight: 600;
}
.booking-row {
  display: grid;
  grid-template-columns: 120px 1.5fr 1fr 100px 90px;
  gap: 1rem;
  padding: 1.25rem;
  border-top: 1px solid var(--gray-4);
  font-size: 14px;
  align-items: center;
  transition: background 0.2s var(--ease);
}
.booking-row:hover { background: #fafaf7; }
@media (max-width: 768px) {
  .bookings-table-head { display: none; }
  .booking-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.booking-status {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.booking-status.confirmed { background: rgba(74, 107, 58, 0.1); color: #4a6b3a; }
.booking-status.upcoming { background: rgba(184, 163, 126, 0.15); color: var(--gold-profond, #8a7349); }
.booking-status.completed { background: var(--off-white); color: var(--gray-1); }
.booking-status.cancelled { background: rgba(138, 58, 58, 0.1); color: #8a3a3a; }

.empty-card {
  background: var(--off-white);
  padding: 2rem;
  text-align: center;
  border: 1px dashed var(--gray-4);
  color: var(--gray-1);
  font-size: 14px;
}

/* ============ LOGIN ============ */
.login-page {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr;
  background: var(--black); color: var(--white);
}
@media (min-width: 1024px) { .login-page { grid-template-columns: 1fr 1fr; } }
.login-side {
  background-color: var(--black);
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1400&q=80&auto=format&fit=crop");
  background-size: cover; background-position: center;
  padding: 6rem 4rem; min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
}
.login-side h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.login-side h2 .italic-display { color: var(--gold); }
.login-side p {
  color: var(--gray-3); font-size: 1rem;
  line-height: 1.7; max-width: 36ch;
}
.login-form-wrap {
  background: var(--white); color: var(--black);
  padding: 5rem 3rem;
  display: flex; align-items: center; justify-content: center;
}
.login-form { width: 100%; max-width: 380px; }
.login-form .logo {
  color: var(--black);
  margin-bottom: 3rem;
  display: block;
  font-size: 17px;
}
.login-form .logo .dot { color: var(--gold); }
.login-form h1 {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.login-form .sub {
  color: var(--gray-1);
  font-size: 14px;
  margin-bottom: 2rem;
}
.login-form .tunnel-field { margin-bottom: 1.5rem; }
.login-form .btn { width: 100%; padding: 1.125rem; }
.login-form .hint {
  font-size: 12px;
  color: var(--gray-1);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor, .cursor-ring, .loader { display: none !important; }
  .reveal { opacity: 1; transform: none; }
  .loader-title .line > span { transform: none; }
}
