/* ═══════════════════════════════════════════
   CRUISE CALIFORNIA — CINEMATIC LUXURY
   ═══════════════════════════════════════════ */

:root {
  --black:        #050505;
  --black-warm:   #0b0704;
  --charcoal:     #0e0b08;
  --charcoal2:    #141008;
  --surface:      #1a1510;
  --orange:       #d4762a;
  --orange-light: #e8943e;
  --orange-muted: #a05a1e;
  --amber:        #c4842e;
  --sunset:       #b8602a;
  --gold:         #c9a050;
  --white:        #ede8e0;
  --white-bright: #f5f0e8;
  --gray:         #8a8078;
  --gray-dark:    #5a534a;
  --muted:        #6a5e52;
  --border:       rgba(212,130,50,.1);

  --grad-orange:  linear-gradient(135deg, #e8943e 0%, #d4762a 50%, #b8602a 100%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --radius:       8px;
  --radius-lg:    12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(212,118,42,.3); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1280px; margin: 0 auto; }

/* ── GLOBAL GRID PATTERN ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(212,130,50,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,130,50,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--grad-orange);
  z-index: 10000;
  transition: width .05s linear;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,130,50,.15), transparent);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── SECTION ── */
.section { padding: 140px 60px; position: relative; z-index: 1; }

.section-label {
  font-family: var(--font-body);
  font-size: .65rem; font-weight: 400;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 16px; color: var(--white-bright);
}
.section-title em {
  font-style: italic;
  color: var(--orange-light);
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  padding: 16px 44px;
  border-radius: 0;
  background: var(--grad-orange);
  color: #0a0604;
  border: none; cursor: pointer;
  transition: all .35s var(--ease);
  display: inline-block;
  box-shadow: 0 2px 20px rgba(212,118,42,.2);
}
.btn-primary:hover {
  box-shadow: 0 6px 36px rgba(212,118,42,.35);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  border: 1px solid rgba(212,118,42,.35);
  color: var(--orange-light);
  transition: all .35s var(--ease);
  background: transparent;
  display: inline-block;
  border-radius: 0;
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(212,118,42,.06);
  transform: translateY(-2px);
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s var(--ease);
}
nav.scrolled, nav.scrolled-inner {
  padding: 16px 60px;
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 52px; width: auto; object-fit: contain;
  transition: opacity .3s;
}
.nav-logo:hover img { opacity: .8; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(237,232,224,.4);
  text-decoration: none; position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange-light); text-decoration: none;
  border: 1px solid rgba(212,118,42,.35);
  padding: 10px 24px;
  transition: all .3s;
}
.nav-cta:hover {
  background: rgba(212,118,42,.1);
  border-color: var(--orange);
  color: var(--white);
}

/* Mobile Toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all .3s;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 999;
  background: rgba(5,5,5,.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: 28px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  color: rgba(237,232,224,.4);
  text-decoration: none;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--orange-light); }
.mobile-menu .mobile-cta {
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: #0a0604;
  background: var(--grad-orange);
  padding: 14px 36px;
  display: inline-block;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity 1.2s ease;
  filter: brightness(.72) contrast(1.08) saturate(.85);
}
.hero-video.loaded { opacity: 1; }

.hero-bg {
  position: absolute; inset: 0;
  background: var(--charcoal);
  z-index: 0;
}

/* Cinematic orange-tinted overlay */
#hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.55), rgba(90,35,5,.2), rgba(0,0,0,.6));
  z-index: 1;
}

/* Bottom fade + vignette */
#hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--black) 0%, rgba(5,5,5,.6) 25%, transparent 55%),
    linear-gradient(to bottom, rgba(5,5,5,.5) 0%, transparent 30%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(5,5,5,.5) 100%);
  z-index: 1;
}

/* Warm glow behind hero content */
.hero-glow {
  position: absolute;
  width: 600px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(212,118,42,.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Grid on hero */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,130,50,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,130,50,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 880px; padding: 0 40px;
}
.hero-eyebrow {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .6em; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -.01em; margin-bottom: 24px;
  color: var(--white-bright);
  opacity: 0; animation: fadeUp .8s var(--ease) .5s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--orange-light);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 300; color: rgba(237,232,224,.5);
  letter-spacing: .06em; margin-bottom: 48px;
  opacity: 0; animation: fadeUp .8s var(--ease) .7s forwards;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s var(--ease) .9s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp .8s var(--ease) 1.2s forwards;
}
.scroll-mouse {
  width: 18px; height: 30px;
  border: 1.5px solid rgba(212,118,42,.3);
  border-radius: 10px; position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 6px;
  background: var(--orange); border-radius: 2px;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60%     { transform: translateX(-50%) translateY(8px); opacity: 0; }
}
.scroll-indicator span {
  font-size: .5rem; font-weight: 400;
  letter-spacing: .4em; text-transform: uppercase;
  color: rgba(212,118,42,.3);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 180px 60px 100px;
  text-align: center;
  background: var(--black);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 40%, rgba(212,118,42,.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; }
.page-hero .section-label { margin-bottom: 12px; }
.page-hero .section-title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}
.page-hero-desc {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray);
  max-width: 520px; margin: 0 auto;
  line-height: 1.8;
}

/* ── VEHICLE SECTION ── */
.vehicle-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.vehicle-image-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(212,130,50,.08);
}
.vehicle-img-placeholder {
  width: 100%; aspect-ratio: 16/10;
  overflow: hidden; background: var(--charcoal);
}
.vehicle-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.vehicle-image-wrap:hover .vehicle-img-placeholder img { transform: scale(1.03); }

.vehicle-info { padding: 10px 0; }
.vehicle-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500; font-style: italic;
  color: var(--white-bright); margin-bottom: 6px; line-height: 1.2;
}
.vehicle-year {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 32px;
}
.vehicle-desc {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--gray);
  line-height: 1.85; margin-bottom: 40px;
}

.specs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(212,130,50,.1);
  border: 1px solid rgba(212,130,50,.1);
  margin-bottom: 40px;
}
.spec-item {
  background: var(--black-warm); padding: 24px;
  transition: background .3s;
}
.spec-item:hover { background: var(--charcoal2); }
.spec-item.visible {}
.spec-value {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--orange-light); line-height: 1; margin-bottom: 6px;
}
.spec-label {
  font-size: .55rem; font-weight: 400;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--muted);
}

/* ── EXPERIENCE CARDS ── */
.experience-header {
  text-align: center; max-width: 560px;
  margin: 0 auto 72px;
}
.experience-header p {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--gray); line-height: 1.8;
}
.experience-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.exp-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .4s var(--ease);
  border: 1px solid rgba(212,130,50,.06);
}
.exp-card:hover { transform: translateY(-6px); }
.exp-card-bg { width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden; }
.exp-card-bg-inner {
  position: absolute; inset: 0;
  transition: transform .6s var(--ease-out);
}
.exp-card:hover .exp-card-bg-inner { transform: scale(1.04); }
.exp-card-bg-inner img { width: 100%; height: 100%; object-fit: cover; }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,4,2,.92) 0%, rgba(5,4,2,.35) 45%, transparent 100%);
}
.exp-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 28px; }
.exp-card-number {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  color: rgba(212,118,42,.08); line-height: 1; margin-bottom: 10px;
}
.exp-card-tag {
  font-size: .5rem; font-weight: 500;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.exp-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 12px; color: var(--white-bright);
}
.exp-card-desc {
  font-family: var(--font-serif);
  font-size: .95rem; color: rgba(237,232,224,.45); line-height: 1.7;
}

/* ── WHY SECTION ── */
.why-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.why-features { display: flex; flex-direction: column; }
.why-feature {
  padding: 36px 0;
  border-bottom: 1px solid rgba(212,130,50,.08);
  display: grid; grid-template-columns: 52px 1fr;
  gap: 24px; align-items: start;
}
.why-feature:first-child { border-top: 1px solid rgba(212,130,50,.08); }
.why-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(212,130,50,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .3s;
}
.why-feature:hover .why-icon { border-color: rgba(212,130,50,.3); }
.why-icon svg {
  width: 18px; height: 18px;
  stroke: var(--orange); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.why-feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 8px; color: var(--white-bright);
}
.why-feature-desc {
  font-family: var(--font-serif);
  font-size: 1rem; color: var(--gray); line-height: 1.8;
}

.why-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(212,130,50,.06); }
.why-visual-inner { width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden; }
.why-visual-inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.why-visual:hover .why-visual-inner img { transform: scale(1.03); }
.why-visual-inner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,4,2,.75) 0%, transparent 50%);
  z-index: 1; pointer-events: none;
}
.why-visual-badge {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  z-index: 2;
  background: rgba(11,7,4,.85);
  border: 1px solid rgba(212,130,50,.1);
  border-radius: var(--radius); padding: 20px 24px;
}
.why-visual-badge-title {
  font-size: .5rem; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px;
}
.why-visual-badge-text {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  line-height: 1.25; color: var(--white-bright);
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  background: var(--charcoal);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(212,118,42,.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block { max-width: 560px; margin: 0 auto; position: relative; }
.cta-desc {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--gray);
  line-height: 1.8; margin: 16px 0 40px;
}

/* ── FORMS ── */
.booking-form, .contact-form-card {
  background: var(--charcoal);
  border: 1px solid rgba(212,130,50,.08);
  border-radius: var(--radius-lg);
  padding: 4px;
}
.form-inner { display: flex; flex-direction: column; gap: 1px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.form-field {
  background: var(--black-warm);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
  transition: background .3s;
}
.form-field:focus-within { background: var(--charcoal2); }
.form-field:focus-within .form-label { color: var(--orange-light); }
.form-label {
  font-size: .55rem; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--muted); transition: color .3s;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: none; border: none; outline: none;
  font-family: var(--font-body);
  font-size: .85rem; font-weight: 300;
  color: var(--white); padding: 0; appearance: none;
}
.form-field select option { background: var(--charcoal); color: var(--white); }
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(350deg);
  opacity: .35;
}
.form-field input::placeholder { color: rgba(237,232,224,.2); }

.form-field-message {
  padding: 16px 20px;
  background: var(--black-warm);
  transition: background .3s;
  display: flex; flex-direction: column; gap: 4px;
}
.form-field-message:focus-within { background: var(--charcoal2); }
.form-field-message .form-label {
  font-size: .55rem; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--muted);
}
.form-field-message textarea {
  width: 100%; background: none; border: none; outline: none;
  font-family: var(--font-body);
  font-size: .85rem; font-weight: 300;
  color: var(--white); resize: none; min-height: 90px; line-height: 1.6;
}

.form-submit-wrap { padding: 16px 20px 12px; }
.form-submit-wrap .btn-primary {
  width: 100%; padding: 16px; text-align: center;
  font-size: .65rem; letter-spacing: .3em;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(212,130,50,.08);
  background: var(--black);
  position: relative; z-index: 1;
}
.footer-top {
  padding: 72px 60px 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { max-width: 260px; }
.footer-logo img { height: 44px; opacity: .5; transition: opacity .3s; }
.footer-logo:hover img { opacity: .8; }
.footer-tagline {
  font-family: var(--font-serif);
  font-size: .9rem; color: var(--muted);
  line-height: 1.7; margin-top: 16px;
}
.footer-nav h4 {
  font-size: .55rem; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  font-size: .8rem; font-weight: 300;
  color: var(--gray-dark); text-decoration: none;
  transition: color .3s;
}
.footer-nav a:hover { color: var(--orange-light); }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,130,50,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .3s;
}
.social-link svg { width: 13px; height: 13px; fill: var(--muted); transition: fill .3s; }
.social-link:hover { border-color: rgba(212,130,50,.3); }
.social-link:hover svg { fill: var(--orange-light); }

.footer-bottom {
  padding: 20px 60px;
  border-top: 1px solid rgba(212,130,50,.06);
  text-align: center;
}
.footer-bottom p {
  font-size: .6rem; font-weight: 300;
  letter-spacing: .1em; color: var(--muted);
}

/* ── AMBIENT GLOW (subtle warm) ── */
.ambient-glow {
  position: fixed; pointer-events: none;
  border-radius: 50%; filter: blur(150px);
  z-index: 0;
}
.ambient-glow-1 {
  width: 600px; height: 600px;
  background: rgba(212,118,42,.04);
  top: 10vh; right: -200px;
  animation: ambFloat1 22s ease-in-out infinite alternate;
}
.ambient-glow-2 {
  width: 500px; height: 500px;
  background: rgba(180,80,20,.03);
  bottom: 20vh; left: -200px;
  animation: ambFloat2 28s ease-in-out infinite alternate;
}
@keyframes ambFloat1 { 0%{transform:translate(0,0)} 100%{transform:translate(-40px,60px)} }
@keyframes ambFloat2 { 0%{transform:translate(0,0)} 100%{transform:translate(30px,-40px)} }

/* ── GLASS CARD (warm) ── */
.glass-card {
  background: var(--charcoal);
  border: 1px solid rgba(212,130,50,.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: border-color .3s;
}
.glass-card:hover {
  border-color: rgba(212,130,50,.16);
}

/* ── FLEET ── */
.fleet-hero-car {
  max-width: 960px; margin: 48px auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(212,130,50,.06);
}
.fleet-hero-car img {
  width: 100%; display: block;
  transition: transform .6s var(--ease-out);
}
.fleet-hero-car:hover img { transform: scale(1.02); }

.fleet-details-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.fleet-spec-list { list-style: none; }
.fleet-spec-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,130,50,.08);
  display: flex; justify-content: space-between; align-items: center;
}
.fleet-spec-list li:first-child { border-top: 1px solid rgba(212,130,50,.08); }
.fleet-spec-name {
  font-size: .7rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
}
.fleet-spec-val {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600; color: var(--white-bright);
}

.fleet-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fleet-gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; background: var(--charcoal);
  border: 1px solid rgba(212,130,50,.04);
}
.fleet-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.fleet-gallery-item:hover img { transform: scale(1.04); }

/* ── EXPERIENCE PAGE ── */
.exp-full-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  margin-bottom: 100px;
}
.exp-full-card:nth-child(even) { direction: rtl; }
.exp-full-card:nth-child(even) > * { direction: ltr; }
.exp-full-card:last-child { margin-bottom: 0; }

.exp-full-image {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(212,130,50,.06);
}
.exp-full-image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.exp-full-image:hover img { transform: scale(1.03); }

.exp-full-content .exp-card-number {
  font-size: 3.5rem; color: rgba(212,118,42,.06); margin-bottom: 12px;
}
.exp-full-content .exp-card-tag { margin-bottom: 12px; }
.exp-full-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 16px; color: var(--white-bright);
}
.exp-full-content p {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--gray);
  line-height: 1.85;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-image {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(212,130,50,.06);
}
.about-image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.about-image:hover img { transform: scale(1.02); }

.about-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600; line-height: 1.2;
  margin-bottom: 20px; color: var(--white-bright);
}
.about-text p {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--gray);
  line-height: 1.85; margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card { text-align: center; }
.value-card .why-icon {
  margin: 0 auto 16px; width: 52px; height: 52px;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 10px; color: var(--white-bright);
}
.value-card p {
  font-family: var(--font-serif);
  font-size: .95rem; color: var(--gray);
  line-height: 1.75;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: start;
}
.contact-info-card { margin-bottom: 20px; }
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 6px; color: var(--white-bright);
}
.contact-info-card p {
  font-family: var(--font-serif);
  font-size: 1rem; color: var(--gray); line-height: 1.7;
}
.contact-info-card a {
  color: var(--gray); text-decoration: none;
  transition: color .3s;
}
.contact-info-card a:hover { color: var(--orange-light); }

/* ── RESERVE ── */
.reserve-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.reserve-info p {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--gray);
  line-height: 1.85; margin-top: 20px; margin-bottom: 40px;
}
.reserve-details { display: flex; flex-direction: column; gap: 16px; }
.reserve-detail-item {
  display: flex; align-items: center; gap: 14px;
  font-size: .78rem; font-weight: 300;
  color: var(--gray);
}
.reserve-detail-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 24px 32px; }
  nav.scrolled, nav.scrolled-inner { padding: 14px 32px; }
  .nav-links { gap: 24px; }
  .section { padding: 100px 32px; }
  .page-hero { padding: 160px 32px 80px; }
  .vehicle-layout { grid-template-columns: 1fr; gap: 40px; }
  .vehicle-image-wrap { max-width: 600px; margin: 0 auto; }
  .experience-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .exp-card-bg { aspect-ratio: 16/10; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .fleet-details-grid { grid-template-columns: 1fr; gap: 40px; }
  .fleet-gallery { grid-template-columns: repeat(2, 1fr); }
  .exp-full-card { grid-template-columns: 1fr; gap: 32px; }
  .exp-full-card:nth-child(even) { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .reserve-layout { grid-template-columns: 1fr; gap: 40px; }
  .booking-form, .contact-form-card { max-width: 560px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 56px 32px 40px; }
}

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  nav.scrolled, nav.scrolled-inner { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-logo img { height: 40px; }
  .section { padding: 72px 20px; }
  .page-hero { padding: 130px 20px 64px; }
  .hero-content { padding: 0 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; text-align: center; }
  .fleet-gallery { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 20px 28px; }
  .footer-bottom { padding: 16px 20px; }
}
