/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --bg1:      #0D0D0D;
  --bg2:      #1A1A1A;
  --bg3:      #232323;
  --gold:     #C9A84C;
  --gold-l:   #E8C96A;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-bdr: rgba(201,168,76,0.28);
  --text:     #F5F5F0;
  --muted:    rgba(245,245,240,0.52);
  --bdr:      rgba(245,245,240,0.08);
  --bdr-d:    #E0E0E0;
  --white:    #FFFFFF;
  --off:      #F5F5F0;
  --dark:     #0D0D0D;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg1);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg1); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .au  { animation: fadeUp 0.6s ease both; }
  .au1 { animation-delay: 0.08s; }
  .au2 { animation-delay: 0.18s; }
  .au3 { animation-delay: 0.28s; }
  .au4 { animation-delay: 0.38s; }
  .page-enter { animation: fadeIn 0.25s ease both; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline-dark:hover {
  background: rgba(0,0,0,0.06);
  color: var(--dark);
}
.btn-wa {
  background: #25D366;
  color: #fff;
  border-radius: 6px;
}
.btn-wa:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg   { padding: 14px 32px; font-size: 15px; }
.btn-sm   { padding: 9px 18px; font-size: 13px; }
.btn-pill { border-radius: 24px; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 6px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 4px 0;
  color: var(--text);
  text-transform: capitalize;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.mob-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
  align-items: center;
  justify-content: center;
}
.mob-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  z-index: 799;
  background: var(--bg1);
  border-bottom: 1px solid var(--bdr);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 2px;
}
.mob-menu.open { display: flex; }
.mob-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px solid var(--bdr);
  text-transform: capitalize;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.mob-link:hover,
.mob-link.active { color: var(--gold); }

/* ── EYEBROW ─────────────────────────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow.center { justify-content: center; }
.eyebrow-line {
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
.sec { padding: 96px 40px; }
.sec-sm { padding: 56px 40px; }
.container { max-width: 1280px; margin: 0 auto; }
.container-md { max-width: 840px; margin: 0 auto; }
.container-sm { max-width: 720px; margin: 0 auto; }

/* ── PAGE HERO ───────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--bg2);
  padding: 72px 40px 56px;
  border-bottom: 1px solid var(--bdr);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(201,168,76,0.016) 28px, rgba(201,168,76,0.016) 29px);
  padding-top: calc(70px + 72px);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.page-hero p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.75;
}

/* ── HERO (HOME) ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg1);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 900px 700px at 72% 55%, rgba(201,168,76,0.045) 0%, transparent 65%),
    repeating-linear-gradient(-28deg, transparent, transparent 55px, rgba(255,255,255,0.012) 55px, rgba(255,255,255,0.012) 56px);
}
.hero-car-bg {
  position: absolute;
  right: 6%; bottom: 10%;
  opacity: 0.1;
}
.hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.92) 50%, rgba(13,13,13,0.4));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-inner { max-width: 660px; }
.hero-h {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-h em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.35;
}
.hero-scroll span {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

/* ── GRID ────────────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2-eq { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

/* ── CAR CARD ─────────────────────────────────────────────────────────────── */
.car-card {
  background: var(--white);
  border: 1px solid var(--bdr-d);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.car-card.dark {
  background: var(--bg2);
  border-color: var(--gold-bdr);
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.25);
}
.car-img {
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  background: var(--bg2);
  overflow: hidden;
}
.car-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255,255,255,0.016) 9px, rgba(255,255,255,0.016) 10px);
}
.car-img-placeholder span {
  color: var(--muted);
  font-size: 10px;
  font-family: monospace;
  letter-spacing: 0.5px;
}
.car-body { padding: 20px 22px 22px; }
.car-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}
.car-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--dark);
}
.car-card.dark .car-name { color: var(--text); }
.car-year {
  font-family: var(--sans);
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
}
.car-card.dark .car-year { color: var(--muted); }
.car-price {
  margin-bottom: 12px;
}
.car-price strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.car-price span {
  font-family: var(--sans);
  font-size: 12px;
  color: #999;
}
.car-card.dark .car-price span { color: var(--muted); }
.car-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.badge {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 3px;
  color: #666;
  background: #F4F4F4;
  border: 1px solid #E8E8E8;
}
.car-card.dark .badge {
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border-color: var(--bdr);
}

/* ── FEATURES (WHY VELOX) ────────────────────────────────────────────────── */
.feat-item { text-align: center; padding: 32px 20px; }
.feat-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.2s;
}
.feat-item:hover .feat-icon {
  background: rgba(201,168,76,0.2);
  transform: scale(1.06);
}
.feat-item h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 9px;
}
.feat-item p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.tcard {
  background: var(--off);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid #E8E8E8;
  transition: box-shadow 0.2s;
}
.tcard:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tcard-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 18px;
}
.tcard-author {
  border-top: 1px solid #E8E8E8;
  padding-top: 14px;
}
.tcard-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
}
.tcard-role {
  font-family: var(--sans);
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

/* ── SECTION HEADINGS ────────────────────────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.sec-head.light h2 { color: var(--text); }
.sec-head p {
  font-family: var(--sans);
  font-size: 15px;
  color: #666;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.75;
}
.sec-head.light p { color: var(--muted); }

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg1);
  padding: 80px 40px;
  border-top: 1px solid var(--bdr);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-banner p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 34px;
}

/* ── FLEET FILTER ────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bdr);
  align-items: center;
}
.filter-group {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 4px;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 3px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--bdr);
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.no-results {
  text-align: center;
  padding: 80px;
  color: var(--muted);
  font-family: var(--sans);
  grid-column: 1 / -1;
}

/* ── BOOKING FORM ────────────────────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  padding: 56px 40px 80px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 15px;
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}
.form-field input[type="date"] { color-scheme: dark; }
.form-field textarea { resize: vertical; line-height: 1.65; }
.form-field select { cursor: pointer; }
.form-field.full { margin-bottom: 26px; }
.form-submit { margin-top: 4px; }
.form-success {
  background: var(--bg2);
  border-radius: 8px;
  padding: 56px 40px;
  border: 1px solid var(--gold-bdr);
  text-align: center;
}
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.form-success h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.form-success p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.form-error {
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.3);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 13px;
  color: #ff6b6b;
  margin-bottom: 16px;
  display: none;
}
.form-error.visible { display: block; }

/* ── BOOKING SIDEBAR ─────────────────────────────────────────────────────── */
.sidebar-card {
  background: var(--bg2);
  border-radius: 8px;
  padding: 26px;
  border: 1px solid var(--bdr);
  margin-bottom: 18px;
}
.sidebar-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.sidebar-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.sidebar-card h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.booking-step {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.booking-step-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  min-width: 22px;
  padding-top: 1px;
}
.booking-step span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}

/* ── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.about-story h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  line-height: 1.2;
}
.about-story h2 em { color: var(--gold); }
.about-story p {
  font-family: var(--sans);
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-founder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.about-founder-line { width: 28px; height: 1px; background: var(--gold); }
.about-founder span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: #888;
}
.img-placeholder {
  background: var(--bg2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.img-placeholder-inner {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255,255,255,0.014) 9px, rgba(255,255,255,0.014) 10px);
}
.img-placeholder span {
  color: var(--muted);
  font-size: 10px;
  font-family: monospace;
  letter-spacing: 0.5px;
  z-index: 1;
}
.stats-row {
  background: var(--bg1);
  padding: 72px 40px;
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.stats-grid {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 44px 28px;
}
.stat-item:not(:last-child) {
  border-right: 1px solid var(--bdr);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.value-card {
  background: var(--bg1);
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid var(--bdr);
}
.value-icon {
  width: 46px; height: 46px;
  border-radius: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.value-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-cards {
  padding: 52px 40px;
  border-bottom: 1px solid var(--bdr);
}
.contact-card {
  background: var(--bg2);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--bdr);
}
.contact-card-icon {
  width: 42px; height: 42px;
  border-radius: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-card-type {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.contact-card-value {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-card-sub {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}
.map-placeholder {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bdr);
  height: 380px;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(201,168,76,0.02) 12px, rgba(201,168,76,0.02) 13px);
}
.map-placeholder span {
  font-family: monospace;
  font-size: 11px;
  color: var(--muted);
  z-index: 1;
}
.map-placeholder address {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
  z-index: 1;
}
.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-form-section { padding: 56px 40px 80px; }
.contact-form-section h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
}
.contact-map-section h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
}

/* ── CONTACT FORM (light fields on dark bg) ─────────────────────────────── */
.contact-form .form-field input,
.contact-form .form-field textarea {
  background: var(--bg2);
  border-color: var(--bdr);
  color: var(--text);
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg1);
  border-top: 1px solid var(--bdr);
  padding: 60px 40px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.footer-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-tagline {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  font-family: var(--sans);
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  text-transform: capitalize;
  margin-bottom: 9px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-contact-item span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}
.footer-hours {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
}
.footer-hours-wa {
  color: var(--gold);
  margin-top: 6px;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--bdr);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── WHATSAPP FAB ────────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.2s ease;
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3, .grid-4  { grid-template-columns: 1fr; }
  .grid-2, .grid-2-eq { grid-template-columns: 1fr; gap: 40px; }
  .nav-links, .nav-wa-desktop { display: none !important; }
  .mob-toggle { display: flex !important; }
  .booking-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sec, .sec-sm { padding: 64px 20px; }
  .hero-h { font-size: clamp(44px, 10vw, 72px) !important; }
  .page-hero { padding: calc(70px + 48px) 20px 40px; }
  .hero-content { padding: 0 20px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .filter-bar { gap: 14px; }
  .contact-cards, .contact-form-section { padding-left: 20px; padding-right: 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid var(--bdr); }
  .cta-banner { padding: 60px 20px; }
  .site-nav { padding: 0 20px; }
  .site-footer { padding: 48px 20px 24px; }
  .footer-grid { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
