/* ============================================================
   COVENTRY EXECUTIVE CARS — Luxury Private Hire
   Aesthetic: Night Luxury · Deep Black & Champagne Gold
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ---- VARIABLES ---- */
:root {
  --black:      #080809;
  --dark:       #0e0f11;
  --panel:      #141517;
  --panel2:     #1a1b1e;
  --border:     #242527;
  --mid:        #3c3d42;
  --muted:      #7a7c85;
  --light:      #b8bac2;
  --white:      #f2f0eb;
  --gold:       #c9a84c;
  --gold-lt:    #e0c06a;
  --gold-dim:   #6b5520;
  --gold-pale:  #f5edd8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --r: 3px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-lt); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--gold);
  padding: 0.55rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__left {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.topbar a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar a:hover { color: #2a2000; }
.topbar__badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8, 8, 9, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 0;
  text-decoration: none;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.logo__name span { color: var(--gold); }
.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 2rem 1.4rem;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.active::after { left: 1.4rem; right: 1.4rem; }

.nav-book {
  margin-left: 2rem;
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.8rem !important;
  border-radius: var(--r);
  letter-spacing: 0.1em;
  transition: background 0.2s !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--gold-lt) !important; color: var(--black) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,8,9,0.97) 0%, rgba(8,8,9,0.75) 45%, rgba(8,8,9,0.3) 100%),
    url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1800&q=80') center/cover no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 6vw;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 4rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.hero__tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.2em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero__title strong {
  font-weight: 700;
  color: var(--white);
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--light);
  max-width: 500px;
  margin: 2rem 0 3rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   HERO STATS STRIP
   ============================================================ */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  border: 1px solid var(--border);
  margin-top: 4rem;
  background: rgba(14,15,17,0.8);
  backdrop-filter: blur(8px);
}
.hero__stat {
  padding: 1.4rem 1.8rem;
  border-right: 1px solid var(--border);
}
.hero__stat:last-child { border-right: none; }
.hero__stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero__stat__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
  display: block;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.hero__scroll__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   BOOKING STRIP
   ============================================================ */
.booking-strip {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 6vw;
}
.booking-strip__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.booking-strip__text {
  flex-shrink: 0;
}
.booking-strip__text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.booking-strip__text p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.booking-strip__contacts {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--panel2);
  min-width: 200px;
  transition: border-color 0.2s;
}
.booking-contact:hover { border-color: var(--gold-dim); }
.booking-contact__icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-contact__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.booking-contact__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: 6rem 6vw;
  max-width: 1400px;
  margin: 0 auto;
}
.section--full {
  max-width: none;
  padding: 6rem 6vw;
}
.section--dark { background: var(--dark); }
.section--panel { background: var(--panel); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title strong { font-weight: 700; }
.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--light);
  max-width: 560px;
  line-height: 1.8;
}
.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.85);
}
.about__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  aspect-ratio: 4/3;
  border: 1px solid var(--gold-dim);
  z-index: -1;
}
.about__badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.about__badge__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about__badge__text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--panel);
}
.about__feature__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.about__feature h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.about__feature p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--panel);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.service-card:hover { background: var(--panel2); }
.service-card:hover::before { width: 100%; }
.service-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: -0.5rem;
  display: block;
}
.service-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   AIRPORTS — tag pills
   ============================================================ */
.airports-section {
  padding: 4rem 6vw;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.airports-section .section-eyebrow { justify-content: center; }
.airports-section .section-title { text-align: center; }
.airports-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.airport-tag {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--border);
  background: var(--panel);
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.airport-tag:hover {
  border-color: var(--gold-dim);
  background: var(--panel2);
}
.airport-tag__code {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.airport-tag__name {
  font-size: 0.82rem;
  color: var(--light);
  font-weight: 300;
}

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fleet-card {
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}
.fleet-card:hover { border-color: var(--gold-dim); }
.fleet-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--panel2);
}
.fleet-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.3s;
  filter: brightness(0.85) saturate(0.7);
}
.fleet-card:hover .fleet-card__img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(0.9);
}
.fleet-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.fleet-card__body { padding: 1.8rem; }
.fleet-card__type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.fleet-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.fleet-card__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.spec__icon { font-size: 0.9rem; }
.spec__text { font-size: 0.78rem; color: var(--muted); }
.spec__text strong { color: var(--light); font-weight: 500; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-card {
  background: var(--panel);
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: background 0.3s;
}
.why-card:hover { background: var(--panel2); }
.why-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   BOOKING CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.03) 100%),
    var(--dark);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 5rem 6vw;
  text-align: center;
}
.cta-banner::before {
  content: 'BOOK';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 22rem;
  font-weight: 700;
  color: rgba(201,168,76,0.03);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
}
.cta-banner .section-title { text-align: center; font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-banner .section-body { margin: 0 auto 2.5rem; text-align: center; max-width: 480px; }
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.cta-phone:hover { color: var(--gold-lt); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { padding-top: 1rem; }
.contact-info .section-body { max-width: 100%; }
.contact-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid var(--border);
  background: var(--panel);
  transition: border-color 0.2s;
}
.contact-item:hover { border-color: var(--gold-dim); }
.contact-item__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item__lbl {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.25rem;
}
.contact-item__val {
  font-size: 0.95rem; color: var(--white); font-weight: 400;
}
.contact-item__val a { color: var(--white); }
.contact-item__val a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 3rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.4rem;
}
.contact-form .sub {
  font-size: 0.83rem; color: var(--muted); margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select option { background: var(--panel); }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-lt); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050506;
  border-top: 1px solid var(--border);
}
.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 6vw 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand {}
.footer-brand .logo { margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 0.85rem; font-weight: 300;
  color: var(--muted); line-height: 1.75;
  max-width: 280px; margin-bottom: 1.5rem;
}
.footer-social {
  display: flex; gap: 0.6rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.85rem; font-weight: 300;
  color: var(--muted); transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact address {
  font-style: normal;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.85rem; font-weight: 300; color: var(--muted);
}
.footer-contact-item span { font-size: 0.9rem; }
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item.highlight a {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--gold-pale);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--mid);
  gap: 1rem;
}
.footer-bottom a { color: var(--mid); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-accent { display: none; }
  .about__badge { left: 1rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { flex-direction: column; text-align: center; gap: 0.4rem; }
  .topbar__left { justify-content: center; flex-wrap: wrap; }
  .main-nav { flex-wrap: wrap; justify-content: center; }
  .main-nav a { padding: 0.8rem 1rem; }
  .nav-book { margin-left: 0; }
  .hero__stats { grid-template-columns: 1fr 1fr 1fr; }
  .hero__title { font-size: clamp(3rem, 10vw, 5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-banner::before { font-size: 10rem; }
  .booking-strip__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .hero__stats { grid-template-columns: 1fr; }
  .about__features { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s var(--ease) both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }
