/* ============================================================
   BATH AIRPORT TRANSFERS — MAIN STYLESHEET
   Premium black & gold executive design system test
   ============================================================ */

/* ──────── DESIGN TOKENS ──────── */
:root {
  --black:         #0A0A0A;
  --black-2:       #0F1419;
  --black-3:       #14191F;
  --black-card:    #161A21;
  --gold:          #D4A24E;
  --gold-dark:     #A8822F;
  --gold-light:    #E5BC6C;
  --gold-soft:     rgba(212, 162, 78, 0.12);
  --white:         #FFFFFF;
  --off-white:     #F8F6F2;
  --text:          rgba(255, 255, 255, 0.92);
  --text-muted:    rgba(255, 255, 255, 0.62);
  --text-dim:      rgba(255, 255, 255, 0.42);
  --border:        rgba(212, 162, 78, 0.22);
  --border-soft:   rgba(255, 255, 255, 0.08);
  --border-strong: rgba(212, 162, 78, 0.55);
  --green:         #25D366;
  --green-dark:    #128C7E;
  --error:         #EF4444;
  --serif:         'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:          'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     14px;
  --radius-pill:   999px;
  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow:        0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold:   0 8px 32px rgba(212, 162, 78, 0.35);
  --container:     1320px;
  --container-sm:  1080px;
  --gutter:        24px;
  --header-h:      90px;
  --topbar-h:      0px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:        160ms;
  --t:             240ms;
  --t-slow:        420ms;
}

/* ──────── RESET ──────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar       { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(212, 162, 78, 0.3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ──────── TYPOGRAPHY ──────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--white); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
em { font-style: italic; }
.serif      { font-family: var(--serif); }
.serif-it   { font-family: var(--serif); font-style: italic; font-weight: 400; }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.no-scroll { overflow: hidden; }

/* ──────── LAYOUT ──────── */
.container       { max-width: var(--container);    margin: 0 auto; padding: 0 var(--gutter); }
.container-sm    { max-width: var(--container-sm); margin: 0 auto; padding: 0 var(--gutter); }
section          { position: relative; }
.section-pad     { padding: 100px 0; }
.section-pad-sm  { padding: 64px 0; }
.eyebrow { display: inline-block; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 14px; letter-spacing: 0.01em; }
.title-accent { width: 56px; height: 2px; background: var(--gold); margin: 18px auto 0; border-radius: 2px; }
.title-accent.is-left { margin-left: 0; }

/* ──────── BUTTONS ──────── */
.btn-gold, .btn-cookie-accept {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--black);
  font-family: var(--sans); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 14px 28px; border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--t) var(--ease); white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-gold:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: var(--white); border: 1px solid var(--border-strong);
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--t) var(--ease); white-space: nowrap;
}
.btn-ghost:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--gold); }
.btn-signin {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black) !important;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 700;
  padding: 12px 22px; border-radius: var(--radius-sm); transition: all var(--t) var(--ease); white-space: nowrap;
}
.btn-signin:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-signin span { transition: transform var(--t-fast) var(--ease); }
.btn-signin:hover span { transform: translateX(4px); }

/* ============================================================ HEADER ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent; transition: background var(--t) var(--ease), backdrop-filter var(--t) var(--ease); }
.site-header.is-scrolled, .site-header.is-solid { background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(12px) saturate(1.1); -webkit-backdrop-filter: blur(12px) saturate(1.1); border-bottom: 1px solid var(--border-soft); }
.site-header-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); height: var(--header-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.site-logo { display: inline-flex; align-items: center; transition: opacity var(--t-fast); }
.site-logo:hover { opacity: 0.85; }
.site-logo img { height: 56px; width: auto; }
.site-header-divider { height: 1px; border-top: 1px dashed var(--gold); opacity: 0.45; margin: 0 var(--gutter); }
.site-header.is-scrolled .site-header-divider, .site-header.is-solid .site-header-divider { opacity: 0; }

/* NAV */
.site-nav { justify-self: center; }
.site-nav-list { display: flex; gap: 4px; align-items: center; }
.site-nav-list > li { position: relative; }
.site-nav-list a, .dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; color: var(--white); font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 12px; background: none; border: none; transition: color var(--t-fast); }
.site-nav-list a:hover, .dropdown-toggle:hover, .site-nav-list .is-active > a, .site-nav-list .is-active > .dropdown-toggle { color: var(--gold); }
.site-nav-list .caret { font-size: 1.1em; transition: transform var(--t-fast); display: inline-block; }
.has-dropdown.is-open .caret { transform: rotate(90deg); }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px); min-width: 240px; padding: 10px; background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all var(--t) var(--ease); pointer-events: none; }
.has-dropdown.is-open .dropdown-menu, .has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.dropdown-menu li a { display: block; padding: 10px 14px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); border-radius: var(--radius-sm); white-space: nowrap; transition: all var(--t-fast); }
.dropdown-menu li a:hover, .dropdown-menu li a.is-active { background: var(--gold-soft); color: var(--gold); }
.dropdown-section { display: block; padding: 14px 14px 6px; margin-top: 6px; border-top: 1px solid var(--border-soft); font-family: var(--serif); font-style: italic; font-size: 0.78rem; color: var(--gold); letter-spacing: 0.02em; pointer-events: none; }
.dropdown-section:first-child { border-top: 0; margin-top: 0; }
.site-header-cta { display: flex; align-items: center; gap: 24px; justify-self: end; }
.header-phone { display: inline-flex; align-items: center; gap: 12px; color: var(--white); transition: opacity var(--t-fast); }
.header-phone:hover { opacity: 0.85; }
.header-phone-icon { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: var(--white); border-radius: 50%; flex-shrink: 0; }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone-label { color: var(--gold); font-size: 0.7rem; font-style: italic; font-family: var(--serif); letter-spacing: 0.01em; }
.header-phone-number { color: var(--white); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; }

/* MOBILE TOGGLE */
.mobile-menu-toggle { display: none; position: relative; width: 40px; height: 40px; background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.hamburger-line { display: block; width: 20px; height: 2px; background: var(--white); transition: all var(--t) var(--ease); }
.mobile-menu-toggle.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 99; background: var(--black); transform: translateX(100%); transition: transform var(--t) var(--ease); overflow-y: auto; padding-bottom: 60px; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-inner { padding: 24px var(--gutter); display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-inner > a { padding: 14px 0; font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid var(--border-soft); transition: color var(--t-fast); }
.mobile-nav-inner > a:hover, .mobile-nav-inner > a.is-active { color: var(--gold); }
.mobile-nav-group { padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.mobile-nav-label { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; letter-spacing: 0.04em; }
.mobile-nav-group a { display: block; padding: 10px 0; font-size: 0.95rem; color: var(--text-muted); }
.mobile-nav-group a:hover, .mobile-nav-group a.is-active { color: var(--gold); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-phone { padding: 14px; text-align: center; background: var(--gold-soft); border: 1px solid var(--border); border-radius: var(--radius); color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.btn-signin-mobile { width: 100%; padding: 16px; justify-content: center; font-size: 1rem; }
main { padding-top: 0; }

/* ============================================================ HERO ============================================================ */
.hero { position: relative; min-height: 760px; padding: calc(var(--header-h) + 80px) 0 80px; background: var(--black); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-bg picture { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.85; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.1) 40%, rgba(10,10,10,0.75) 100%), linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 50%, transparent 100%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 150px var(--gutter) 0; display: grid; grid-template-columns: 1.05fr 480px; gap: 48px; align-items: start; }
.hero-text { padding-top: 16px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--gold); margin-bottom: 18px; }
.hero-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); display: inline-block; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: 1.05; color: var(--white); margin-bottom: 22px; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin-bottom: 30px; line-height: 1.7; }
.hero-features { display: grid; gap: 12px; margin-bottom: 32px; }
.hero-feature { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-size: 0.95rem; }
.hero-feature-icon { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: var(--black); border-radius: 50%; flex-shrink: 0; font-size: 0.8rem; font-weight: 700; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* BOOKING BOX */
.booking-box { background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); position: relative; }
.booking-box-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border-soft); }
.booking-box-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: var(--black); border-radius: var(--radius); font-size: 1.4rem; flex-shrink: 0; }
.booking-box-header h2 { font-size: 1.45rem; color: var(--white); margin-bottom: 2px; }
.booking-box-header span { font-size: 0.82rem; color: var(--text-muted); }
.booking-widget-wrap { min-height: 320px; }
.booking-widget-wrap iframe { width: 100% !important; border: 0; display: block; }
.booking-secure { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-soft); font-size: 0.82rem; color: var(--text-muted); text-align: center; }
.hero-dots { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 14px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; padding: 0; cursor: pointer; transition: all var(--t-fast); }
.hero-dot.is-active { background: var(--gold); outline: 2px solid var(--gold); outline-offset: 4px; }

/* ============================================================ STEPS ============================================================ */
.steps-section { padding: 120px 0; background: var(--black); overflow: hidden; }
.steps-head { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.steps-head h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); line-height: 1.1; }
.steps-head h2 .gold-line { display: block; color: var(--gold); }
.steps-head p { margin-top: 20px; color: var(--text-muted); font-size: 1.05rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }
.steps-grid::before { content: ""; position: absolute; top: 90px; left: 0; right: 0; height: 140px; background-image: url('../img/steps-curve.webp'); background-position: center; background-repeat: no-repeat; background-size: 100% 100%; transform: translateY(-50%); pointer-events: none; opacity: 0.55; z-index: 0; }
.step-card { position: relative; text-align: center; }
.step-circle { width: 180px; height: 180px; margin: 0 auto 28px; border-radius: 50%; overflow: hidden; position: relative; border: 3px solid var(--gold); box-shadow: var(--shadow); background: var(--black-2); }
.step-circle img { width: 100%; height: 100%; object-fit: cover; }
.step-number { position: absolute; top: 8px; left: calc(50% + 56px); width: 36px; height: 36px; background: var(--gold); color: var(--black); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 1rem; border: 3px solid var(--black); z-index: 10; }
.step-card h3 { color: var(--gold); font-size: 1.05rem; font-family: var(--serif); font-style: italic; font-weight: 500; margin-bottom: 6px; }
.step-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; max-width: 200px; margin: 0 auto; }

/* ============================================================ VEHICLES ============================================================ */
.vehicles-section { padding: 120px 0; background: var(--black); }
.vehicles-head { text-align: center; margin-bottom: 64px; }
.vehicles-head h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); }
.vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vehicle-card { background: var(--black-2); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--t) var(--ease); }
.vehicle-card:hover { border-color: var(--border-strong); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vehicle-photo { aspect-ratio: 16 / 10; background: var(--black); overflow: hidden; position: relative; }
.vehicle-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.vehicle-card:hover .vehicle-photo img { transform: scale(1.05); }
.vehicle-body { padding: 28px; }
.vehicle-body h3 { font-size: 1.5rem; margin-bottom: 6px; color: var(--white); }
.vehicle-meta { color: var(--gold); font-style: italic; font-family: var(--serif); font-size: 1rem; margin-bottom: 14px; }
.vehicle-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; margin-bottom: 20px; }
.vehicle-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 24px; }
.vehicle-spec { padding: 12px 8px; background: var(--black); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); text-align: center; font-size: 0.78rem; color: var(--gold); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.vehicle-spec svg { width: 18px; height: 18px; }

/* ============================================================ TESTIMONIALS ============================================================ */
.testimonials-section { position: relative; background: var(--black); padding: 100px 0; overflow: hidden; }
.testimonials-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.testimonials-photo { display: block; position: relative; }
.testimonials-photo img { width: 100%; height: auto; max-height: 720px; object-fit: contain; object-position: center; }
.testimonials-content { padding: 20px 0; }
.testimonials-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 0; }
.testimonials-rotator { position: relative; margin-top: 40px; }
.testimonial-slide { background: var(--black-2); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 40px; display: none; }
.testimonial-slide.is-active { display: block; }
.testimonial-quote-icon { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 0.5; margin-bottom: 20px; display: block; }
.testimonial-text { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--text); line-height: 1.6; margin-bottom: 28px; text-align: center; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--black); display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 1.4rem; }
.testimonial-name { color: var(--gold); font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: all var(--t-fast); padding: 0; }
.testimonial-dot.is-active { background: var(--gold); outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================ PAGE BANNER ============================================================ */
.page-banner { position: relative; min-height: 420px; padding: 0; background: var(--black); overflow: hidden; text-align: center; display: flex; align-items: center; }
.page-banner-bg { position: absolute; inset: 0; z-index: 0; }
.page-banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.page-banner-bg picture { position: absolute; inset: 0; }
.page-banner-bg picture img { width: 100%; height: 100%; object-fit: cover; }
.page-banner-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%); }
.page-banner-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: calc(var(--header-h) + 200px) var(--gutter) 80px; width: 100%; }
.has-solid-header .page-banner-inner { padding: calc(var(--header-h) + 40px) var(--gutter) 80px; }
.page-banner h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); color: var(--white); margin-bottom: 18px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.breadcrumb a { color: var(--gold); transition: opacity var(--t-fast); }
.breadcrumb a:hover { opacity: 0.8; }

/* ============================================================ CONTACT ============================================================ */
.contact-cards { padding: 80px 0; background: var(--black); }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.contact-card { text-align: center; padding: 24px 32px; border-right: 1px solid var(--border-soft); }
.contact-card:last-child { border-right: 0; }
.contact-card-icon { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; color: var(--gold); margin: 0 auto 18px; border: 1px solid var(--border); border-radius: 50%; }
.contact-card h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; display: block; }
.contact-card a:hover { color: var(--gold); }

/* ============================================================ FORM ============================================================ */
.form-wrap { max-width: 720px; margin: 0 auto; padding: 80px var(--gutter); }
.form-head { text-align: center; margin-bottom: 40px; }
.form-head h2 { font-size: 2.4rem; color: var(--white); }
.form-grid { display: grid; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.01em; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 16px 18px; background: var(--black-2); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); color: var(--white); font-size: 1rem; font-family: var(--sans); transition: border-color var(--t-fast), background var(--t-fast); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--gold); background: var(--black-3); }
.form-error { color: var(--error); font-size: 0.85rem; margin-top: 4px; }
.form-submit { display: flex; justify-content: center; margin-top: 12px; }

/* ============================================================ FAQ ============================================================ */
.faq-section { padding: 120px 0; background: var(--black); }
.faq-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.faq-head h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); }
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--black-2); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t-fast); }
.faq-item.is-open { border-color: var(--gold); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 26px; background: none; border: none; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--white); text-align: left; cursor: pointer; transition: color var(--t-fast); }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--gold); border: 1px solid var(--border); border-radius: 50%; transition: transform var(--t) var(--ease), background var(--t-fast); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--black); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-slow) var(--ease); }
.faq-a-inner { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-body { padding: 0 26px 22px; color: var(--text-muted); font-size: 0.98rem; line-height: 1.7; max-width: 70ch; }

/* ============================================================ NEWSLETTER ============================================================ */
.newsletter { background: var(--black-2); border-top: 1px solid var(--border-soft); padding: 56px 0; }
.newsletter-inner { max-width: var(--container-sm); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.newsletter-title { font-size: 1.7rem; color: var(--white); }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 6px; background: var(--black); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); }
.newsletter-form input { background: transparent; border: none; color: var(--white); padding: 12px 16px; font-size: 1rem; }
.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form button { white-space: nowrap; }

/* ============================================================ FOOTER ============================================================ */
.site-footer { position: relative; background: var(--black-2); border-top: 1px solid var(--border-soft); overflow: hidden; }
.site-footer-bg { position: absolute; inset: 0; opacity: 0.06; background-image: radial-gradient(circle, var(--gold) 1px, transparent 1.5px); background-size: 18px 18px; pointer-events: none; }
.site-footer-inner { position: relative; max-width: var(--container); margin: 0 auto; padding: 80px var(--gutter) 40px; text-align: center; }
.site-footer-logo { display: inline-block; margin-bottom: 56px; }
.site-footer-logo img { height: 68px; width: auto; }
.site-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 40px 0; }
.footer-col { padding: 0 24px; border-right: 1px solid var(--border-soft); text-align: center; }
.footer-col:last-child { border-right: 0; }
.footer-icon { width: 52px; height: 52px; margin: 0 auto 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: var(--black); border-radius: 50%; }
.footer-col-title { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 10px; }
.footer-col-text { color: var(--text); font-size: 0.92rem; line-height: 1.6; display: flex; flex-direction: column; gap: 4px; }
.footer-col-text a { color: var(--text); transition: color var(--t-fast); }
.footer-col-text a:hover { color: var(--gold); }
.footer-col-meta { color: var(--gold); font-size: 0.78rem; font-style: italic; font-family: var(--serif); }
.site-footer-secondary { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 32px 0 8px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; transition: color var(--t-fast); }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; }
.footer-social li a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); border: 1px solid var(--border-soft); border-radius: 50%; transition: all var(--t-fast); }
.footer-social li a:hover { color: var(--gold); border-color: var(--gold); }
.site-footer-bottom { position: relative; background: var(--black); border-top: 1px solid var(--border-soft); padding: 18px 0; }
.site-footer-bottom-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; color: var(--text-dim); }
.site-footer-bottom-inner a { color: var(--gold); transition: opacity var(--t-fast); }
.site-footer-bottom-inner a:hover { opacity: 0.85; }
.footer-license { font-style: italic; font-family: var(--serif); color: var(--text-muted); }

/* ============================================================ FLOATS ============================================================ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 95; display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px 12px 14px; background: var(--green); color: var(--white); border-radius: var(--radius-pill); box-shadow: 0 10px 30px rgba(37,211,102,0.4); transition: all var(--t) var(--ease); }
.whatsapp-float:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,0.5); }
.whatsapp-icon { display: inline-flex; align-items: center; justify-content: center; }
.whatsapp-label { font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
.whatsapp-pulse { position: absolute; inset: 0; border-radius: var(--radius-pill); background: var(--green); opacity: 0.5; animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } }
.back-to-top { position: fixed; bottom: 100px; right: 28px; z-index: 94; width: 44px; height: 44px; background: var(--black-2); color: var(--gold); border: 1px solid var(--border); border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transition: all var(--t) var(--ease); display: inline-flex; align-items: center; justify-content: center; }
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--black); }

/* ============================================================ COOKIE ============================================================ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--black-2); border-top: 1px solid var(--gold); padding: 20px 0; transform: translateY(100%); transition: transform var(--t-slow) var(--ease-out); box-shadow: 0 -10px 40px rgba(0,0,0,0.4); }
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.cookie-banner-title { font-size: 1.2rem; color: var(--white); margin-bottom: 4px; }
.cookie-banner-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.cookie-banner-desc a { color: var(--gold); border-bottom: 1px solid var(--border); }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-cookie-link { background: none; border: none; color: var(--text-muted); font-size: 0.88rem; text-decoration: underline; text-underline-offset: 4px; font-family: var(--sans); }
.btn-cookie-link:hover { color: var(--gold); }
.btn-cookie-ghost { background: transparent; color: var(--white); border: 1px solid var(--border-soft); padding: 11px 20px; border-radius: var(--radius-sm); font-family: var(--sans); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all var(--t-fast); }
.btn-cookie-ghost:hover { border-color: var(--gold); color: var(--gold); }
.cookie-modal { position: fixed; inset: 0; z-index: 210; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); opacity: 0; transition: opacity var(--t); }
.cookie-modal.is-visible .cookie-modal-backdrop { opacity: 1; }
.cookie-modal-card { position: relative; width: 100%; max-width: 600px; max-height: calc(100vh - 40px); background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transform: translateY(20px) scale(0.97); opacity: 0; transition: all var(--t) var(--ease-out); }
.cookie-modal.is-visible .cookie-modal-card { transform: translateY(0) scale(1); opacity: 1; }
.cookie-modal-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; border-bottom: 1px solid var(--border-soft); }
.cookie-modal-head h2 { font-size: 1.4rem; color: var(--white); }
.cookie-modal-close { background: transparent; border: none; color: var(--text-muted); padding: 8px; border-radius: var(--radius-sm); }
.cookie-modal-close:hover { color: var(--gold); }
.cookie-modal-body { padding: 24px 28px; overflow-y: auto; flex: 1; }
.cookie-modal-body > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }
.cookie-cat-list { display: flex; flex-direction: column; gap: 18px; }
.cookie-cat { padding: 18px; background: var(--black); border: 1px solid var(--border-soft); border-radius: var(--radius); }
.cookie-cat-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.cookie-cat h3 { font-size: 1.05rem; color: var(--gold); font-family: var(--serif); margin-bottom: 4px; }
.cookie-cat p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.cookie-toggle { position: relative; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; flex-shrink: 0; }
.cookie-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-toggle-track { display: inline-block; width: 42px; height: 22px; background: var(--black-3); border: 1px solid var(--border-soft); border-radius: 999px; position: relative; transition: all var(--t-fast); }
.cookie-toggle-track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; background: var(--text-muted); border-radius: 50%; transition: all var(--t) var(--ease); }
.cookie-toggle input:checked + .cookie-toggle-track { background: var(--gold); border-color: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-track::after { transform: translateX(20px); background: var(--black); }
.cookie-toggle.is-locked { opacity: 0.6; cursor: not-allowed; }
.cookie-toggle.is-locked .cookie-toggle-track { background: var(--gold); border-color: var(--gold); }
.cookie-toggle.is-locked .cookie-toggle-track::after { transform: translateX(20px); background: var(--black); }
.cookie-toggle-label { font-size: 0.78rem; color: var(--text-muted); }
.cookie-modal-foot { display: flex; gap: 12px; justify-content: flex-end; padding: 20px 28px; border-top: 1px solid var(--border-soft); background: var(--black); }
.cookie-reopen { position: fixed; bottom: 28px; left: 28px; z-index: 90; width: 40px; height: 40px; background: var(--black-2); border: 1px solid var(--border); color: var(--gold); border-radius: 50%; cursor: pointer; opacity: 0; transform: translateY(10px); transition: all var(--t); }
.cookie-reopen.is-visible { opacity: 0.8; transform: translateY(0); }
.cookie-reopen:hover { opacity: 1; background: var(--gold); color: var(--black); }

/* ============================================================ ANIMATIONS ============================================================ */
[data-anim] { opacity: 0; transform: translateY(20px); transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out); }
[data-anim].is-visible { opacity: 1; transform: translateY(0); }
[data-anim="fade"] { transform: none; }
[data-anim="left"] { transform: translateX(-30px); }
[data-anim="left"].is-visible { transform: translateX(0); }
[data-anim="right"] { transform: translateX(30px); }
[data-anim="right"].is-visible { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } [data-anim] { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE — TABLET 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid, .routes-grid { grid-template-columns: 1fr 1fr !important; }
  .site-nav-list a, .dropdown-toggle { font-size: 0.78rem; padding: 12px 10px; }
  .header-phone-text { display: none; }
  .header-phone-icon { width: 38px; height: 38px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 150px; }
  .booking-box { max-width: 480px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 32px; }
  .steps-grid::before { display: none; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { border-right: none; border-bottom: 1px solid var(--border-soft); padding: 32px 24px; }
  .contact-card:nth-child(odd) { border-right: 1px solid var(--border-soft); }
  .contact-card:nth-last-child(-n+2) { border-bottom: 0; }
  .site-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col { border-right: none; border-bottom: 1px solid var(--border-soft); padding: 24px; }
  .footer-col:nth-child(odd) { border-right: 1px solid var(--border-soft); }
  .footer-col:nth-last-child(-n+2) { border-bottom: 0; }
  .testimonials-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-photo { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE 820px
   ============================================================ */
@media (max-width: 820px) {
  :root { --header-h: 72px; --gutter: 18px; }

  /* Header */
  .site-logo img { height: 36px; width: auto; max-width: 150px; }
  .site-nav, .site-header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .site-header-inner { grid-template-columns: 1fr auto; }

  /* Page banner */
  .page-banner { min-height: 320px; }
  .page-banner-inner { padding: calc(var(--header-h) + 120px) var(--gutter) 50px; }
  .has-solid-header .page-banner-inner { padding: calc(var(--header-h) + 24px) var(--gutter) 40px; }
  .page-banner h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  /* Hero */
  h1 { font-size: clamp(2rem, 7vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero { min-height: 0; padding: calc(var(--header-h) + 32px) 0 50px; }
  .hero-inner { grid-template-columns: 1fr !important; gap: 32px; padding-top: 150px; }
  .hero-text { padding-top: 0; }
  .hero-eyebrow { display: none; }
  .hero-dots { display: none; }

  /* Booking box */
  .booking-box { padding: 20px; max-width: 100%; width: 100%; box-sizing: border-box; }
  .booking-box * { max-width: 100%; box-sizing: border-box; }
  .booking-box-header { flex-direction: column; }
  #loadBookingBtn { width: 100%; white-space: normal; text-align: center; font-size: 0.9rem; padding: 14px 12px; }
  .booking-secure { font-size: 0.72rem; white-space: normal; }

  /* Sections */
  .section-pad, .steps-section, .vehicles-section, .testimonials-section, .faq-section { padding: 64px 0; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 40px 24px; }
  .steps-grid::before { display: none; }
  .step-circle { width: 130px; height: 130px; }

  /* Vehicles */
  .vehicles-grid { grid-template-columns: 1fr !important; }

  /* ── GRIDS MULTI-COLUMNA → 1 COLUMNA ── */
  /* Clases nombradas */
  .about-intro-grid,
  .services-about-grid,
  .philosophy-grid,
  .values-grid,
  .tours-grid,
  .included-grid,
  .vehicle-builder-grid,
  .not-found-grid,
  .tour-layout,
  .route-layout,
  .service-row,
  .more-services-grid,
  .responsive-grid-2,
  .responsive-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Todos los grids inline multi-columna */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 420px"],
  div[style*="grid-template-columns:1fr 380px"],
  div[style*="grid-template-columns:1fr 340px"],
  div[style*="grid-template-columns:1fr 300px"],
  div[style*="grid-template-columns:1.05fr"],
  div[style*="grid-template-columns:repeat(2"],
  div[style*="grid-template-columns:repeat(3"],
  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Excepciones que NO deben colapsar */
  .vehicle-specs,
  .steps-grid,
  .cookie-banner-actions { grid-template-columns: unset !important; }

  /* Forms */
  .form-row-2 { grid-template-columns: 1fr !important; }

  /* Newsletter */
  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
  .newsletter-form { max-width: 480px; margin: 0 auto; grid-template-columns: 1fr; gap: 10px; background: transparent; border: 0; padding: 0; }
  .newsletter-form input { background: var(--black); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 14px 16px; }
  .newsletter-form button { width: 100%; padding: 14px; }

  /* Contact */
  .contact-cards-grid { grid-template-columns: 1fr !important; }
  .contact-card { border-right: 0 !important; border-bottom: 1px solid var(--border-soft); }
  .contact-card:last-child { border-bottom: 0; }

  /* Footer */
  .site-footer-grid { grid-template-columns: 1fr !important; }
  .footer-col { border-right: 0 !important; border-bottom: 1px solid var(--border-soft); padding: 20px; }
  .footer-col:last-child { border-bottom: 0; }
  .site-footer-secondary { flex-direction: column; }
  .footer-nav { justify-content: center; }
  .site-footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }

  /* Cookie */
  .cookie-banner { padding: 14px 0; }
  .cookie-banner-inner { grid-template-columns: 1fr !important; gap: 14px; padding: 0 16px; }
  .cookie-banner-title { font-size: 1rem; }
  .cookie-banner-desc { font-size: 0.8rem; }
  .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
  .cookie-banner-actions .btn-cookie-link { grid-column: 1 / -1; padding: 6px 0; text-align: center; }
  .btn-cookie-accept, .btn-cookie-ghost { width: 100%; padding: 12px 14px; font-size: 0.82rem; }
  .cookie-modal { padding: 12px; }
  .cookie-modal-card { max-height: calc(100vh - 24px); }
  .cookie-modal-head, .cookie-modal-body, .cookie-modal-foot { padding-left: 20px; padding-right: 20px; }
  .cookie-modal-head h2 { font-size: 1.15rem; }
  .cookie-modal-foot { flex-direction: column-reverse; }
  .cookie-modal-foot .btn-gold, .cookie-modal-foot .btn-cookie-ghost { width: 100%; }
  .cookie-cat { padding: 14px; }
  .cookie-cat-head { flex-direction: column; gap: 12px; }
  .cookie-cat-head > div:first-child { width: 100%; }

  /* Floats */
  .whatsapp-float { bottom: 18px; right: 18px; padding: 10px 14px 10px 12px; }
  .whatsapp-label { display: none; }
  .back-to-top { bottom: 80px; right: 18px; }
  .cookie-reopen { bottom: 18px; left: 18px; }

  /* Why/routes grids */
  .why-grid, .routes-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   RESPONSIVE — SMALL 480px
   ============================================================ */
@media (max-width: 480px) {
  .site-footer-inner { padding: 48px var(--gutter) 28px; }
  .hero-features { gap: 10px; }
  .hero-feature { font-size: 0.88rem; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .vehicle-specs { grid-template-columns: repeat(3, 1fr) !important; }
  .faq-q { font-size: 1rem; padding: 18px 18px; }
}

/* ============================================================
   GRID CLASSES — desktop defaults
   ============================================================ */
.faq-layout  { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.grid-2col   { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3col   { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4col   { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }

/* ============================================================
   RESPONSIVE — MOBILE 820px  (single clean block)
   ============================================================ */
@media (max-width: 820px) {

  /* Grid classes → 1 col */
  .grid-2col  { grid-template-columns: 1fr !important; gap: 24px !important; }
  .grid-3col  { grid-template-columns: 1fr !important; gap: 20px !important; }
  .grid-4col  { grid-template-columns: repeat(2,1fr) !important; }

  /* FAQ sidebar hidden */
  .faq-layout { display: block !important; }
  .faq-layout > aside { display: none !important; }

  /* Sticky → static */
  [style*="position:sticky"], [style*="position: sticky"] { position: static !important; top: auto !important; }

  /* Overflow fix */
  body { overflow-x: hidden; }
  .container, .container-sm { max-width: 100%; overflow-x: hidden; }
  p, li, span, td { word-break: break-word; overflow-wrap: break-word; }
}

/* ============================================================
   RESPONSIVE — SMALL 480px
   ============================================================ */
@media (max-width: 480px) {
  .site-footer-inner { padding: 48px var(--gutter) 28px; }
  .hero-features { gap: 10px; }
  .hero-feature { font-size: 0.88rem; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .vehicle-specs { grid-template-columns: repeat(3,1fr) !important; }
  .faq-q { font-size: 1rem; padding: 18px; }
}