/* ============================================================
   WE DRIVE LUXURY — design tokens
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root{
  --bg:            #FBF9F4;   /* pearl ivory page background */
  --surface:       #FFFFFF;   /* card / panel white */
  --surface-soft:  #F5F0E6;   /* soft cream panel */
  --ink:           #1E1B16;   /* near-black warm text */
  --ink-soft:      #5B5648;   /* secondary text */
  --gold:          #A9812F;   /* deep antique gold — text/icons */
  --gold-bright:   #C9A227;   /* coachline / dividers */
  --gold-metal:    #D8AE5C;   /* button fill / highlight */
  --gold-pale:     #EFE3C6;   /* faint gold wash */
  --line:          #E7DFC9;   /* hairline borders */
  --shadow:        0 20px 50px -25px rgba(30,27,22,0.35);

  --font-display: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;

  --maxw: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}
p{ margin: 0 0 1em; color: var(--ink-soft); }
.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow{
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ---------- coachline divider (signature element) ---------- */
.coachline{
  display:flex; align-items:center; justify-content:center;
  gap: 14px;
  margin: 22px 0 36px;
  color: var(--gold-bright);
}
.coachline::before, .coachline::after{
  content:'';
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}
.coachline::after{ background: linear-gradient(90deg, var(--gold-bright), transparent); }
.coachline .diamond{
  width: 7px; height:7px;
  border: 1px solid var(--gold-bright);
  transform: rotate(45deg);
  flex: none;
}
.coachline.left{ justify-content:flex-start; }
.coachline.left::before{ display:none; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 30px;
  border: 1px solid var(--gold);
  cursor:pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-gold{
  background: var(--gold);
  color: #FFFDF8;
}
.btn-gold:hover{ background: var(--ink); border-color: var(--ink); }
.btn-outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover{ background: var(--ink); color:#fff; border-color: var(--ink); }
.btn-outline.on-dark{ color:#fff; border-color: rgba(255,255,255,.65); }
.btn-outline.on-dark:hover{ background:#fff; color: var(--ink); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(251,249,244,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-bright);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 28px;
  max-width: var(--maxw); margin:0 auto;
  position: relative;
}
.brand{ display:flex; flex-direction:column; line-height:1; }
.brand-logo{ height: 44px; width: auto; display: block; }
.site-footer .brand-logo.footer-logo{ height: 40px; }
.brand .mark{
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--gold);
  font-weight: 600;
}
.brand .full{
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--ink-soft);
  margin-top: 4px;
}
.nav-links{ display:flex; align-items:center; gap: 34px; }
.nav-links a{
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }
.nav-links a.active{ color: var(--gold); }
.nav-cta{ margin-left: 8px; }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:4px; }
.nav-toggle span{ display:block; width:26px; height:2px; background:var(--ink); margin:5px 0; }

@media (max-width: 880px){
  .nav-toggle{ display:block; z-index: 9999; position: relative; }
  .nav-toggle span{ background: var(--ink); }
  .nav-links{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: #FFFFFF;
    border: 1px solid var(--gold-bright);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,.35);
    border-radius: 4px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px;
    gap: 16px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease, visibility 0s linear .2s;
    z-index: 9999;
  }
  .nav-links.open{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .2s ease, opacity .2s ease, visibility 0s linear 0s;
  }
  .nav-links a{
    font-size: 15px;
    color: #1E1B16 !important;
  }
  .nav-links a.active{ color: var(--gold) !important; }
  .nav-links a.btn-gold{
    background: var(--gold) !important;
    color: #FFFDF8 !important;
    border-color: var(--gold) !important;
  }
  .nav-links a.btn{
    color: #FFFDF8 !important;
    text-align: center;
    margin-left: 0;
    margin-top: 4px;
  }
}

/* ============================================================
   HERO (simple: full-bleed image, text below, no overlay)
   ============================================================ */
.hero-media{
  width: 100%;
  height: 46vh;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.hero-media img, .hero-media video{
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  display: block;
}
.hero-text{
  padding: 56px 0 64px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-text h1{
  font-size: clamp(32px, 5.5vw, 56px);
  margin-top: 10px;
  color: var(--ink);
}
.hero-text p.lead{
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 16px;
}
@media (max-width: 700px){
  .hero-media{ height: 38vh; min-height: 260px; }
}

.video-feature{
  width: 100%;
  height: 50vh;
  min-height: 320px;
  max-height: 520px;
  overflow: hidden;
  background: var(--ink);
}
.video-feature video{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 700px){
  .video-feature{ height: 34vh; min-height: 240px; }
}

/* ============================================================
   PAGE HERO (non-video, inner pages)
   ============================================================ */
.page-hero{
  padding: 84px 0 56px;
  text-align:center;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1{ font-size: clamp(32px, 5vw, 52px); }
.page-hero p{ max-width: 560px; margin: 0 auto; }

/* ============================================================
   SECTIONS
   ============================================================ */
section{ padding: 92px 0; }
section.tight{ padding: 60px 0; }
.section-head{ text-align:center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2{ font-size: clamp(28px, 4vw, 42px); }
.alt-bg{ background: var(--surface-soft); }

/* services grid */
.services-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card{
  background: var(--surface);
  padding: 40px 30px;
  text-align:center;
}
.service-card .num{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-pale);
  font-size: 42px;
  margin-bottom: 6px;
}
.service-card h3{ font-size: 19px; margin-bottom: 8px; }
.service-card p{ font-size: 14px; margin:0; }
@media (max-width: 760px){ .services-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .services-grid{ grid-template-columns: 1fr; } }

/* fleet teaser / cards */
.fleet-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 820px){ .fleet-grid{ grid-template-columns: 1fr; } }

.fleet-card{
  background: var(--surface);
  border: 1px solid var(--line);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column;
}
.fleet-card .media{ position:relative; aspect-ratio: 4/3; overflow:hidden; background:#111; }
.fleet-card .media img, .fleet-card .media video{ width:100%; height:100%; object-fit:cover; }
.fleet-card .media .tag{
  position:absolute; top:18px; left:18px;
  background: rgba(255,255,255,.92);
  color: var(--gold);
  font-size: 11px; letter-spacing:.18em; text-transform:uppercase;
  padding: 7px 14px;
  border: 1px solid var(--gold-bright);
}
.fleet-card .body{ padding: 30px; flex:1; display:flex; flex-direction:column; }
.fleet-card h3{ font-size: 24px; }
.fleet-card .from{ color: var(--gold); font-family: var(--font-display); font-size: 20px; margin-bottom: 14px; }
.fleet-card ul.specs{ list-style:none; padding:0; margin: 0 0 24px; }
.fleet-card ul.specs li{
  font-size: 14px; color: var(--ink-soft);
  padding: 9px 0; border-bottom: 1px solid var(--line);
  display:flex; justify-content:space-between;
}
.fleet-card ul.specs li:last-child{ border-bottom:none; }
.fleet-card ul.specs li span:first-child{ color: var(--ink); }
.fleet-card .actions{ margin-top:auto; display:flex; gap:12px; flex-wrap:wrap; }

/* gallery grid */
.gallery-grid{
  columns: 3 260px; column-gap: 14px;
}
.gallery-grid figure{
  margin: 0 0 14px; break-inside: avoid;
  position:relative; overflow:hidden;
  background:#111;
}
.gallery-grid img, .gallery-grid video{ width:100%; display:block; }
.gallery-grid figure::after{
  content:''; position:absolute; inset:0;
  box-shadow: inset 0 0 0 1px rgba(201,162,39,.0);
  transition: box-shadow .25s ease;
}
.gallery-grid figure:hover::after{ box-shadow: inset 0 0 0 2px var(--gold-bright); }
@media (max-width: 700px){ .gallery-grid{ columns: 2 180px; } }

.gallery-tabs{ display:flex; justify-content:center; gap: 14px; margin-bottom: 44px; flex-wrap:wrap; }
.gallery-tab{
  font-size: 13px; letter-spacing:.16em; text-transform:uppercase;
  padding: 12px 24px; border: 1px solid var(--line); background: var(--surface);
  cursor:pointer; transition: all .2s ease;
}
.gallery-tab.active, .gallery-tab:hover{ border-color: var(--gold); color: var(--gold); }

.veh-group{ margin-bottom: 40px; }
.veh-group:last-child{ margin-bottom: 0; }
.veh-group-label{
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.veh-row{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.veh-row figure{ margin:0; overflow:hidden; background:#111; aspect-ratio: 4/3; }
.veh-row img{ width:100%; height:100%; object-fit:cover; }
@media (max-width: 700px){ .veh-row{ grid-template-columns: repeat(2, 1fr); } }

.coming-soon{
  text-align:center; padding: 60px 20px;
  border: 1px dashed var(--line);
  color: var(--ink-soft);
}
.coming-soon .eyebrow{ display:block; margin-bottom:10px; }

/* pricing */
.price-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 34px; }
@media (max-width: 880px){ .price-wrap{ grid-template-columns: 1fr; } }
.price-card{
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  overflow: hidden;
}
.price-card-media{ aspect-ratio: 16/10; overflow:hidden; background:#111; }
.price-card-media img, .price-card-media video{ width:100%; height:100%; object-fit:cover; }
.price-card .head{
  padding: 34px 34px 22px; text-align:center;
  border-bottom: 1px solid var(--line);
}
.price-card .head .veh{ font-size: 26px; }
.price-card .rows{ padding: 10px 34px; }
.price-row{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.price-row:last-child{ border-bottom:none; }
.price-row .label{ font-weight:500; }
.price-row .note{ display:block; font-size:12.5px; color: var(--ink-soft); font-weight:400; margin-top:3px; }
.price-row .amount{
  font-family: var(--font-display); font-size: 20px; color: var(--gold);
  white-space:nowrap;
}
.price-card .foot{
  padding: 22px 34px 30px; font-size: 13px; color: var(--ink-soft);
}
.price-card .foot p{ margin: 0 0 8px; font-size:13px; }
.price-card.premium .head{ background: var(--gold); }
.price-card.premium .head .veh, .price-card.premium .head .eyebrow{ color:#fff; }

/* booking form */
.booking-wrap{
  display:grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items:flex-start;
}
@media (max-width: 900px){ .booking-wrap{ grid-template-columns: 1fr; } }
.booking-info h2{ font-size: clamp(26px,4vw,36px); }
.booking-info ul{ list-style:none; padding:0; margin: 26px 0; }
.booking-info li{
  padding: 12px 0; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-soft);
  display:flex; gap:10px;
}
.booking-info li:last-child{ border-bottom: 1px solid var(--line); }
.booking-info li b{ color: var(--ink); font-weight:500; }

form.booking-form{
  background: var(--surface); border: 1px solid var(--line);
  padding: 36px; box-shadow: var(--shadow);
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full{ grid-column: 1 / -1; }
@media (max-width: 560px){ .form-grid{ grid-template-columns: 1fr; } }
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.field label{ font-size: 12px; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea{
  font-family: var(--font-body); font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--gold);
}
.field textarea{ resize: vertical; min-height: 96px; }
.form-note{ font-size:12.5px; color: var(--ink-soft); margin-top:14px; }
.form-status{ font-size: 14px; margin-top: 14px; display:none; }
.form-status.ok{ color: #4b7d4a; display:block; }
.form-status.err{ color: #a34141; display:block; }

/* about */
.about-hero-media{ aspect-ratio: 16/7; overflow:hidden; }
.about-hero-media img{ width:100%; height:100%; object-fit:cover; }
.about-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
@media (max-width: 880px){ .about-grid{ grid-template-columns:1fr; gap:36px; } }
.about-grid img{ width:100%; }
.stat-row{ display:flex; gap: 44px; margin-top: 30px; flex-wrap:wrap; }
.stat{ max-width: 240px; }
.stat .n{ font-family: var(--font-display); font-size: 40px; color: var(--gold); }
.stat .l{ font-size: 12.5px; letter-spacing:.03em; color: var(--ink-soft); line-height:1.5; margin-top:4px; }

/* quote */
.quote-block{
  max-width: 760px; margin: 0 auto; text-align:center;
}
.quote-block p{
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px,3vw,28px);
  color: var(--ink);
}
.quote-block cite{ font-style:normal; font-size:13px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
}
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-bottom: 40px; margin-bottom: 26px;
}
@media (max-width: 760px){ .footer-grid{ grid-template-columns: 1fr; gap: 30px; } }
.footer-grid h4{
  color: var(--gold-metal); font-size: 12px; letter-spacing:.18em; text-transform:uppercase;
  font-family: var(--font-body); font-weight:500; margin-bottom: 16px;
}
.site-footer .brand .mark{ color: var(--gold-metal); }
.site-footer .brand .full{ color: rgba(255,255,255,.6); }
.footer-links a, .footer-contact p{ display:block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,.78); }
.footer-links a:hover{ color: var(--gold-metal); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}

/* utility */
.mt-0{ margin-top:0; }
.center{ text-align:center; }
