/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --void:           #060607;
  --obsidian:       #0B0B0C;
  --carbon:         #111113;
  --graphite:       #191A1C;
  --slate:          #242528;
  --gold-dark:      #7A5A10;
  --gold:           #C9A84C;
  --gold-light:     #DDB96A;
  --gold-bright:    #EDD080;
  --gold-glow:      rgba(201,168,76,0.22);
  --gold-border:    rgba(201,168,76,0.12);
  --gold-border-hv: rgba(201,168,76,0.40);
  --text-primary:   #F0EBE1;
  --text-secondary: #9A8A74;
  --text-muted:     #524840;
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

/* ============================================================
   NAVIGATION
============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 24px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  padding: 14px 56px;
  background: rgba(6,6,7,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--gold-border);
}
.nav-logo img {
  height: 80px; width: auto; display: block;
  transition: height 0.4s var(--ease-smooth);
}
#nav.scrolled .nav-logo img { height: 64px; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary); text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease-smooth);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-smooth);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--void); background: var(--gold);
  padding: 14px 32px; text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { background: var(--gold-light); box-shadow: 0 0 32px var(--gold-glow); }
.nav-cta:active { transform: translateY(1px); }

#hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
#hamburger span {
  display: block; width: 24px; height: 1px; background: var(--gold);
  transition: all 0.3s var(--ease-smooth);
}
#hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#mobileMenu {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(6,6,7,0.98); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  font-family: 'Playfair Display', serif;
  font-size: 40px; color: var(--text-primary); text-decoration: none;
  transition: color 0.3s;
}
#mobileMenu a:hover { color: var(--gold); }

/* ============================================================
   SHARED LAYOUT
============================================================ */
.s-inner { max-width: 1660px; margin: 0 auto; padding: 0 56px; }

.s-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.s-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent);
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.85s var(--ease-smooth), transform 0.85s var(--ease-smooth);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================================
   HOME HERO
============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: visible; padding-top: 100px; padding-bottom: 80px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(201,168,76,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 35% at 85% 95%, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(175deg, #060607 0%, #090A0B 50%, #070708 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0.09; filter: grayscale(40%);
}
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(6,6,7,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px; max-width: 980px; margin: 0 auto 52px;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-smooth) 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 0 0 44px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-title {
  font-size: clamp(56px, 8.5vw, 108px);
  font-weight: 400; color: var(--text-primary); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-smooth) 0.38s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }

.hero-subtitle {
  font-size: 17px; font-weight: 300;
  color: var(--text-secondary); max-width: 520px;
  margin: 0 auto; letter-spacing: 0.01em; line-height: 1.85;
  opacity: 0; animation: fadeUp 0.9s var(--ease-smooth) 0.56s forwards;
}

/* ============================================================
   BOOKING WIDGET
============================================================ */
.booking-wrap {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px;
  margin: 0 auto; padding: 0 24px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-smooth) 0.74s forwards;
}
/* ── White booking widget (home / fleet / services hero) ── */
.booking-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  box-shadow: 0 22px 54px rgba(0,0,0,0.28);
}
.booking-form-wrap { padding: 26px 32px; }
.b-fields {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.1fr 1.1fr auto auto;
  gap: 20px 26px;
  align-items: end;
}

.b-submit-row { display: flex; align-items: flex-end; }

.b-field { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.b-field label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #6b6b6b;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.b-field label svg { width: 13px; height: 13px; stroke: var(--gold); flex-shrink: 0; opacity: 1; }
.b-field input,
.b-field select {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(0,0,0,0.14);
  color: #1a1a1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 400;
  padding: 12px 0; outline: none;
  transition: border-color 0.3s var(--ease-smooth);
  width: 100%; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  min-width: 0;
}
.b-field input::placeholder { color: #9a9a9a; font-size: 15px; }
.b-field input:focus, .b-field select:focus { border-bottom-color: var(--gold); }
.b-field select.b-select-empty { color: #9a9a9a; }
.b-field select option { background: #ffffff; color: #1a1a1a; }
.b-field select option[value=""] { color: #9a9a9a; }

/* Passenger counter — white widget */
.booking-card .b-pax-counter { display: flex; align-items: center; gap: 12px; padding: 6px 0; }
.booking-card .b-pax-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18); background: #ffffff;
  color: var(--gold-dark); font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.booking-card .b-pax-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.booking-card #h-pax-display { font-size: 16px; font-weight: 600; color: #1a1a1a; min-width: 18px; text-align: center; }

.b-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #1a1a1a; background: var(--gold);
  border: none; padding: 0 30px; height: 54px;
  cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 2px;
  transition: background 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.b-submit:hover { background: var(--gold-light); box-shadow: 0 10px 30px rgba(201,168,76,0.35); }
.b-submit:active { transform: translateY(1px); }
.b-submit svg { width: 14px; height: 14px; flex-shrink: 0; }


/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s var(--ease-smooth) 1.4s forwards;
}
.scroll-cue span {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ============================================================
   TRUST / VALUE  (home Ã¢â‚¬â€ becomes light section)
============================================================ */
#trust {
  padding: 128px 0;
  background: var(--obsidian);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.trust-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.trust-header h2 { font-size: clamp(40px, 4vw, 60px); color: var(--text-primary); }
.trust-header p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; }

.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gold-border);
  border: 1px solid var(--gold-border);
}
.trust-card {
  background: var(--obsidian); padding: 52px 40px;
  position: relative; overflow: hidden;
  transition: background 0.4s var(--ease-smooth);
}
.trust-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease-smooth);
}
.trust-card:hover { background: var(--carbon); }
.trust-card:hover::before { transform: scaleX(1); }
.trust-card-bg-num {
  font-family: 'Playfair Display', serif;
  font-size: 80px; font-style: italic; font-weight: 700;
  color: rgba(201,168,76,0.06);
  position: absolute; top: 16px; right: 20px; line-height: 1;
  user-select: none; pointer-events: none;
}
.trust-icon { width: 48px; height: 48px; margin-bottom: 28px; color: var(--gold); }
.trust-card h3 { font-size: 22px; color: var(--text-primary); margin-bottom: 14px; }
.trust-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; }

/* ============================================================
   HOME SERVICES GRID
============================================================ */
#services { padding: 140px 0; background: var(--void); }
.services-head { text-align: center; max-width: 600px; margin: 0 auto 76px; }
.services-head h2 { font-size: clamp(40px, 4vw, 56px); color: var(--text-primary); margin-bottom: 18px; }
.services-head p { font-size: 16px; color: var(--text-secondary); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.srv-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4.2; background: var(--graphite); cursor: pointer;
}
.srv-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.75s var(--ease-smooth), filter 0.75s;
  filter: grayscale(25%) brightness(0.48);
}
.srv-card:hover .srv-img { transform: scale(1.06); filter: grayscale(0%) brightness(0.52); }
.srv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,6,7,0.97) 0%, rgba(6,6,7,0.38) 55%, rgba(6,6,7,0.05) 100%);
}
.srv-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px 40px; }
.srv-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.32em; color: var(--gold); margin-bottom: 16px;
}
.srv-content h3 { font-size: 28px; color: var(--text-primary); margin-bottom: 14px; }
.srv-desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.8;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s;
  margin-bottom: 20px;
}
.srv-card:hover .srv-desc { opacity: 1; transform: translateY(0); }
.srv-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s var(--ease-smooth) 0.05s, transform 0.4s 0.05s;
}
.srv-card:hover .srv-link { opacity: 1; transform: translateY(0); }
.srv-link svg { width: 13px; height: 13px; transition: transform 0.3s; }
.srv-card:hover .srv-link svg { transform: translateX(5px); }

/* ============================================================
   HOME FLEET PREVIEW GRID
============================================================ */
#fleet {
  padding: 140px 0;
  background: var(--obsidian);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.fleet-header { text-align: center; max-width: 660px; margin: 0 auto 80px; }
.fleet-header .s-label { justify-content: center; }
.fleet-header h2 { font-size: clamp(40px, 4vw, 56px); color: var(--text-primary); margin-bottom: 18px; }
.fleet-header p { font-size: 16px; color: var(--text-secondary); }

.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--gold-border);
}
.fleet-card-filler { background: var(--carbon); }
.fleet-card {
  background: var(--carbon); overflow: hidden; position: relative;
  transition: background 0.4s var(--ease-smooth);
  display: flex; flex-direction: column;
}
.fleet-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); z-index: 2;
  transition: transform 0.5s var(--ease-smooth);
}
.fleet-card:hover::before { transform: scaleX(1); }
.fleet-card:hover { background: var(--graphite); }

.fleet-img-wrap { overflow: hidden; position: relative; aspect-ratio: 16/10; }
.fleet-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  filter: brightness(0.88) saturate(0.82);
  transition: transform 0.75s var(--ease-smooth), filter 0.75s;
}
.fleet-card:hover .fleet-img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.fleet-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(17,17,19,0.6) 0%, transparent 50%);
}
.fleet-info { padding: 36px 40px 40px; flex: 1; display: flex; flex-direction: column; }
.fleet-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.fleet-card h3 { font-size: 28px; color: var(--text-primary); margin-bottom: 12px; line-height: 1.15; }
.fleet-card > .fleet-info > p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 28px; flex: 1;
}
.fleet-specs {
  display: flex; gap: 0;
  border-top: 1px solid var(--gold-border); padding-top: 22px; margin-bottom: 24px;
}
.fleet-spec { flex: 1; display: flex; flex-direction: column; gap: 5px; padding-right: 16px; }
.fleet-spec:not(:last-child) { border-right: 1px solid var(--gold-border); margin-right: 16px; }
.fleet-spec-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-muted);
}
.fleet-spec-value { font-size: 14px; color: var(--text-primary); font-weight: 400; }
.fleet-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  transition: gap 0.3s var(--ease-smooth);
}
.fleet-cta:hover { gap: 14px; }
.fleet-cta svg { width: 13px; height: 13px; }

/* ============================================================
   HOME Ã¢â‚¬â€ WHY CHOOSE US
============================================================ */
#why { padding: 148px 0; background: var(--void); overflow: hidden; }
.why-layout {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 100px; align-items: center;
}
.why-visual { position: relative; }
.why-img-main {
  width: 100%; aspect-ratio: 3/4;
  background-size: cover; background-position: center 70%;
  filter: brightness(0.7) saturate(0.6); position: relative;
}
.why-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, transparent 55%);
}
.why-img-accent {
  position: absolute; bottom: -44px; right: -44px;
  width: 54%; aspect-ratio: 1;
  background-size: cover; background-position: center 60%;
  filter: brightness(0.72) saturate(0.5);
  border: 5px solid var(--void);
}
.why-badge {
  position: absolute; top: 44px; left: -44px; z-index: 2;
  background: var(--carbon); border: 1px solid var(--gold-border);
  padding: 24px 32px; min-width: 148px;
}
.why-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 54px; font-weight: 700; color: var(--gold); line-height: 1;
}
.why-badge-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-primary); margin-top: 6px;
}
.why-content h2 { font-size: clamp(38px, 3.8vw, 54px); color: var(--text-primary); margin-bottom: 24px; }
.why-content > p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 52px; }
.why-features { display: flex; flex-direction: column; }
.why-feat {
  display: flex; gap: 20px; padding: 24px 0; align-items: flex-start;
  border-bottom: 1px solid var(--gold-border);
}
.why-feat:first-of-type { border-top: 1px solid var(--gold-border); }
.why-feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--gold-border); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.why-feat:hover .why-feat-icon { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.why-feat h4 { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 5px; }
.why-feat p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   HOME Ã¢â‚¬â€ LUXURY EXPERIENCE
============================================================ */
#experience { background: var(--obsidian); overflow: hidden; }
.exp-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 72vh; }
.exp-visual {
  position: relative;
  background-size: cover; background-position: center;
  filter: brightness(0.5) saturate(0.45);
}
.exp-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(270deg, var(--obsidian) 0%, transparent 50%);
}
.exp-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 80px 100px 64px;
  background: var(--carbon); position: relative;
}
.exp-content::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
}
.exp-content h2 { font-size: clamp(34px, 3.5vw, 52px); color: var(--text-primary); margin-bottom: 22px; }
.exp-content > p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 48px; }
.exp-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.exp-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.5;
}
.exp-list li::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }
.exp-list li strong { color: var(--text-primary); font-weight: 400; }

/* ============================================================
   CTA SECTION
============================================================ */
#cta {
  padding: 168px 0;
  background: var(--void); position: relative; overflow: hidden; text-align: center;
}
.cta-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 50%;
  opacity: 0.07; filter: grayscale(20%);
}
#cta::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 68%);
  pointer-events: none; z-index: 1;
}
#cta .s-label { justify-content: center; }
#cta h2 {
  font-size: clamp(44px, 5.5vw, 80px); color: var(--text-primary);
  max-width: 860px; margin: 0 auto 28px;
}
#cta h2 em { font-style: italic; color: var(--gold-light); }
#cta > .s-inner > p {
  font-size: 16px; color: var(--text-secondary);
  max-width: 480px; margin: 0 auto 60px; line-height: 1.85;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Shared buttons */
.btn-gold {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--void); background: var(--gold);
  padding: 20px 56px; text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.25s var(--ease-smooth);
  display: inline-block; white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 10px 44px rgba(201,168,76,0.28); transform: translateY(-3px); }
.btn-gold:active { transform: translateY(0); }
.btn-outline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: 1px solid var(--gold-border-hv); padding: 20px 56px; text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.25s var(--ease-smooth);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); transform: translateY(-3px); }
.btn-outline:active { transform: translateY(0); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--obsidian); border-top: 1px solid var(--gold-border);
  padding: 96px 0 48px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 72px;
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 28px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.85; max-width: 300px; }
.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-dark); margin-top: 20px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 28px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact dt {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 5px;
}
.footer-contact dd { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--gold-border);
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   BOOKING MODAL
============================================================ */
#modal {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(6,6,7,0.96); backdrop-filter: blur(20px);
  align-items: center; justify-content: center;
}
#modal.open { display: flex; }
.modal-box {
  background: var(--carbon); border: 1px solid var(--gold-border-hv);
  padding: 64px; max-width: 540px; width: 90%;
  text-align: center; position: relative;
  animation: fadeUp 0.4s var(--ease-smooth);
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--text-muted);
  font-size: 18px; cursor: pointer; padding: 6px; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--gold); }
.modal-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.modal-box h3 { font-size: 36px; color: var(--text-primary); margin-bottom: 18px; }
.modal-box p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 36px; }
.modal-btn {
  display: block; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 17px 40px; margin-bottom: 12px; transition: all 0.3s;
}
.modal-btn-gold { background: var(--gold); color: var(--void); }
.modal-btn-gold:hover { background: var(--gold-light); }
.modal-btn-border { border: 1px solid var(--gold-border-hv); color: var(--gold); }
.modal-btn-border:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }

/* Form success state */
.form-success { display: none; text-align: center; padding: 64px 40px; border: 1px solid var(--gold-border); }
.form-success.show { display: block; }
.form-success svg { width: 52px; height: 52px; stroke: var(--gold); margin: 0 auto 24px; }
.form-success h3 { font-size: 32px; color: var(--text-primary); margin-bottom: 14px; }
.form-success p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

/* ============================================================
   LIGHT SECTIONS Ã¢â‚¬â€ Trust & Fleet (homepage only)
============================================================ */
#trust, #fleet {
  --lbg1:   #F7F5F0;
  --lbg2:   #EDEBE5;
  --lcard:  #FFFFFF;
  --lcardh: #F2EFE9;
  --ltxt:   #17140F;
  --lsec:   #6A5D52;
  --lmut:   #A8998E;
  --lgold:  #9E740F;
  --lgb:    rgba(158,116,15,0.15);
}
#trust {
  background: var(--lbg1);
  border-top-color: var(--lgb);
  border-bottom-color: var(--lgb);
}
#trust .s-label            { color: var(--lgold); }
#trust .s-label::before    { background: var(--lgold); }
#trust .trust-header h2    { color: var(--ltxt); }
#trust .trust-header h2 em { color: var(--lgold); }
#trust .trust-header p     { color: var(--lsec); }
#trust .trust-grid         { background: var(--lgb); border-color: var(--lgb); }
#trust .trust-card         { background: var(--lcard); }
#trust .trust-card:hover   { background: var(--lcardh); }
#trust .trust-card::before { background: linear-gradient(90deg, transparent, var(--lgold), transparent); }
#trust .trust-card-bg-num  { color: rgba(158,116,15,0.07); }
#trust .trust-icon         { color: var(--lgold); }
#trust .trust-card h3      { color: var(--ltxt); }
#trust .trust-card p       { color: var(--lsec); }

#fleet {
  background: var(--lbg2);
  border-top-color: var(--lgb);
  border-bottom-color: var(--lgb);
}
#fleet .s-label                     { color: var(--lgold); }
#fleet .s-label::before             { background: var(--lgold); }
#fleet .fleet-header h2             { color: var(--ltxt); }
#fleet .fleet-header h2 em          { color: var(--lgold); }
#fleet .fleet-header p              { color: var(--lsec); }
#fleet .fleet-grid                  { background: var(--lbg2); }
#fleet .fleet-card-filler           { background: var(--lbg2); }
#fleet .fleet-card                  { background: var(--lcard); }
#fleet .fleet-card:hover            { background: var(--lcardh); }
#fleet .fleet-card::before          { background: linear-gradient(90deg, transparent, var(--lgold), transparent); }
#fleet .fleet-tag                   { color: var(--lgold); }
#fleet .fleet-card h3               { color: var(--ltxt); }
#fleet .fleet-info > p              { color: var(--lsec) !important; }
#fleet .fleet-specs                 { border-top-color: var(--lgb); }
#fleet .fleet-spec:not(:last-child) { border-right-color: var(--lgb); }
#fleet .fleet-spec-label            { color: var(--lmut); }
#fleet .fleet-spec-value            { color: var(--ltxt); }
#fleet .fleet-cta                   { color: var(--lgold); }
#fleet .fleet-img                   { filter: brightness(0.97) saturate(0.86); }
#fleet .fleet-card:hover .fleet-img { filter: brightness(1.03) saturate(1.0); }
#fleet .fleet-img-overlay           { background: linear-gradient(0deg, rgba(237,235,229,0.4) 0%, transparent 38%); }

/* ============================================================
   INNER PAGE HERO
============================================================ */
#page-hero {
  position: relative; min-height: 86vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: visible; padding-top: 120px; padding-bottom: 60px;
}
/* Spacing between hero text and booking widget on inner pages */
#page-hero .booking-wrap { margin-top: 48px; }
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(170deg, #060607 0%, #08090A 55%, #060607 100%);
}
.page-hero-bg-img {
  position: absolute; inset: 0; overflow: hidden;
  background-size: cover; background-position: center 50%;
  opacity: 0.08; filter: grayscale(30%);
}
.page-hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 25%, rgba(6,6,7,0.82) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 860px; margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(54px, 7.5vw, 96px); font-weight: 400;
  color: var(--text-primary); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-smooth) 0.36s forwards;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 17px; font-weight: 300; color: var(--text-secondary);
  max-width: 520px; margin: 0 auto; line-height: 1.85;
  opacity: 0; animation: fadeUp 0.9s var(--ease-smooth) 0.52s forwards;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
#contact-main { padding: 120px 0; background: var(--void); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 96px; align-items: start; }

.contact-form-wrap .s-label { margin-bottom: 28px; }
.contact-form-wrap h2 { font-size: clamp(34px, 3.5vw, 52px); color: var(--text-primary); margin-bottom: 48px; }
.contact-form-wrap h2 em { font-style: italic; color: var(--gold-light); }

.c-form { display: flex; flex-direction: column; gap: 0; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.c-field {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 0; border-bottom: 1px solid var(--gold-border);
}
.c-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-muted);
}
.c-input, .c-select, .c-textarea {
  background: transparent; border: none; color: var(--text-primary);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300;
  padding: 6px 0; outline: none; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.c-input::placeholder, .c-textarea::placeholder { color: rgba(154,138,116,0.45); font-size: 14px; }
.c-select { cursor: pointer; }
.c-select option { background: var(--carbon); color: var(--text-primary); }
.c-textarea { resize: none; height: 100px; line-height: 1.7; }
.c-field:focus-within .c-label { color: var(--gold); }
.c-field:focus-within { border-bottom-color: rgba(201,168,76,0.4); }
.c-submit {
  margin-top: 40px;
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--void); background: var(--gold);
  border: none; padding: 20px 56px; cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.25s var(--ease-smooth);
  align-self: flex-start; display: flex; align-items: center; gap: 12px;
}
.c-submit:hover { background: var(--gold-light); box-shadow: 0 10px 44px rgba(201,168,76,0.28); transform: translateY(-2px); }
.c-submit svg { width: 13px; height: 13px; flex-shrink: 0; }
.form-note { margin-top: 16px; font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Contact Form 7 Ã¢â‚¬â€ match theme styling Ã¢â€â‚¬Ã¢â€â‚¬ */
.wpcf7 form { display: flex; flex-direction: column; gap: 0; }
.wpcf7 form p {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 0; border-bottom: 1px solid var(--gold-border);
  margin: 0;
}
.wpcf7 form p:focus-within { border-bottom-color: rgba(201,168,76,0.4); }
.wpcf7 form label {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-muted);
}
.wpcf7 form p:focus-within label { color: var(--gold); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  background: transparent; border: none; color: var(--text-primary);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300;
  padding: 6px 0; outline: none; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: rgba(154,138,116,0.45); font-size: 14px; }
.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; opacity: 0.7; }
.wpcf7 textarea { resize: none; min-height: 100px; line-height: 1.7; }
.wpcf7 select { cursor: pointer; }
.wpcf7 select option { background: var(--carbon); color: var(--text-primary); }
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  margin-top: 40px;
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--void); background: var(--gold);
  border: none; padding: 20px 56px; cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.25s var(--ease-smooth);
  align-self: flex-start; display: inline-flex; align-items: center; gap: 12px;
  width: auto;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover { background: var(--gold-light); box-shadow: 0 10px 44px rgba(201,168,76,0.28); transform: translateY(-2px); }
.wpcf7 form p:last-child { border-bottom: none; padding-bottom: 0; }
.wpcf7 .wpcf7-not-valid-tip { font-size: 11px; color: #e07070; margin-top: 4px; }
.wpcf7 .wpcf7-response-output {
  margin-top: 20px; padding: 14px 20px;
  font-size: 13px; border: 1px solid var(--gold-border);
  color: var(--text-secondary);
}

.contact-info { position: sticky; top: 120px; }
.contact-info .s-label { margin-bottom: 28px; }
.contact-info h2 { font-size: clamp(30px, 3vw, 44px); color: var(--text-primary); margin-bottom: 16px; }
.contact-info h2 em { font-style: italic; color: var(--gold-light); }
.contact-info > p { font-size: 15px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 48px; }

.contact-channels { display: flex; flex-direction: column; gap: 0; margin-bottom: 52px; }
.contact-channel {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--gold-border);
}
.contact-channel:first-child { border-top: 1px solid var(--gold-border); }
.contact-channel-icon {
  width: 44px; height: 44px; border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.contact-channel:hover .contact-channel-icon { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.contact-channel-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.contact-channel-body dt {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.contact-channel-body dd { font-size: 16px; color: var(--text-primary); font-weight: 400; }
.contact-channel-body dd a { color: var(--text-primary); text-decoration: none; transition: color 0.3s; }
.contact-channel-body dd a:hover { color: var(--gold-light); }
.contact-channel-body .sub { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

.availability-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border: 1px solid var(--gold-border);
  background: rgba(201,168,76,0.04);
}
.availability-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
.availability-badge span {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}

#service-areas {
  padding: 128px 0; background: #EDEBE5;
  border-top: 1px solid rgba(158,116,15,0.15);
  border-bottom: 1px solid rgba(158,116,15,0.15);
}
#service-areas .s-label { color: #9E740F; justify-content: center; }
#service-areas .s-label::before { background: #9E740F; }
.areas-head { text-align: center; max-width: 660px; margin: 0 auto 72px; }
.areas-head h2 { font-size: clamp(34px, 3.8vw, 52px); color: #17140F; margin-bottom: 16px; }
.areas-head h2 em { color: #9E740F; font-style: italic; }
.areas-head p { font-size: 16px; color: #6A5D52; line-height: 1.9; }
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(158,116,15,0.15);
  border: 1px solid rgba(158,116,15,0.15); margin-bottom: 56px;
}
.area-card {
  background: #F5F3EE; padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease-smooth); cursor: default;
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #9E740F, transparent);
  transform: scaleX(0); transition: transform 0.45s var(--ease-smooth);
}
.area-card:hover { background: #EDEAE2; }
.area-card:hover::before { transform: scaleX(1); }
.area-city { font-family: 'Playfair Display', serif; font-size: 22px; color: #17140F; margin-bottom: 6px; }
.area-state {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.32em; text-transform: uppercase; color: #9E740F;
}
.area-note { font-size: 13px; color: #6A5D52; margin-top: 10px; line-height: 1.6; }
.area-bg-letter {
  font-family: 'Playfair Display', serif; font-size: 96px; font-weight: 700; font-style: italic;
  color: rgba(158,116,15,0.05); position: absolute; bottom: -8px; right: 8px; line-height: 1;
  user-select: none; pointer-events: none;
}
.areas-note { text-align: center; }
.areas-note p { font-size: 15px; color: #6A5D52; line-height: 1.9; }
.areas-note strong { color: #17140F; font-weight: 500; }

#quick-contact {
  padding: 96px 0; background: var(--carbon);
  border-top: 1px solid var(--gold-border);
}
.quick-inner {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: center;
}
.quick-divider {
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold-border) 30%, var(--gold-border) 70%, transparent);
}
.quick-item { padding: 0 52px; text-align: center; }
.quick-item dt {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.quick-item dd { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text-primary); }
.quick-item dd a { color: var(--text-primary); text-decoration: none; transition: color 0.3s; }
.quick-item dd a:hover { color: var(--gold-light); }
.quick-item .sub { font-size: 12px; color: var(--text-muted); margin-top: 6px; font-family: 'DM Sans', sans-serif; }

/* ============================================================
   SERVICES PAGE Ã¢â‚¬â€ SERVICE DETAIL
============================================================ */
.srv-detail { overflow: hidden; position: relative; }
.srv-detail-dark { background: var(--void); }
.srv-detail-mid  { background: var(--obsidian); }
.srv-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }

.srv-panel-img { position: relative; overflow: hidden; min-height: 600px; }
.srv-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.52) saturate(0.65);
  transition: transform 0.9s var(--ease-smooth), filter 0.9s;
}
.srv-detail:hover .srv-bg { transform: scale(1.04); filter: brightness(0.62) saturate(0.8); }
.srv-panel-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,6,7,0.55) 0%, transparent 55%);
  pointer-events: none;
}
.srv-split-rev .srv-panel-img::after {
  background: linear-gradient(270deg, rgba(6,6,7,0.55) 0%, transparent 55%);
}
.srv-number-tag {
  position: absolute; top: 44px; left: 44px; z-index: 2;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 80px; font-weight: 700; line-height: 1;
  color: rgba(201,168,76,0.14); user-select: none; pointer-events: none;
}
.srv-split-rev .srv-number-tag { left: auto; right: 44px; }
.srv-panel-text {
  padding: 100px 80px; display: flex; flex-direction: column; justify-content: center;
  background: var(--carbon); position: relative;
}
.srv-detail-mid .srv-panel-text { background: #0E0E10; }
.srv-panel-text::before {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, transparent, var(--gold-border) 20%, var(--gold-border) 80%, transparent);
}
.srv-panel-text.side-left::before { left: 0; }
.srv-panel-text.side-right::before { right: 0; left: auto; }
.srv-panel-text .s-label { margin-bottom: 18px; }
.srv-panel-text h2 { font-size: clamp(34px, 3.2vw, 50px); color: var(--text-primary); margin-bottom: 22px; }
.srv-panel-text > p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 44px; }
.srv-feat-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
.srv-feat-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.6;
}
.srv-feat-list li svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }

#amenities {
  padding: 128px 0; background: #F7F5F0;
  border-top: 1px solid rgba(158,116,15,0.15);
  border-bottom: 1px solid rgba(158,116,15,0.15);
}
#amenities .s-label { color: #9E740F; justify-content: center; }
#amenities .s-label::before { background: #9E740F; }
.amenities-head { text-align: center; max-width: 660px; margin: 0 auto 72px; }
.amenities-head h2 { font-size: clamp(36px, 3.8vw, 54px); color: #17140F; margin-bottom: 16px; }
.amenities-head h2 em { color: #9E740F; font-style: italic; }
.amenities-head p { font-size: 16px; color: #6A5D52; line-height: 1.9; }
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(158,116,15,0.15);
  border: 1px solid rgba(158,116,15,0.15);
}
.amenity-card {
  background: #FFFFFF; padding: 48px 36px; position: relative; overflow: hidden;
  transition: background 0.35s var(--ease-smooth);
}
.amenity-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #9E740F, transparent);
  transform: scaleX(0); transition: transform 0.45s var(--ease-smooth);
}
.amenity-card:hover { background: #F2EFE9; }
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-icon { width: 44px; height: 44px; stroke: #9E740F; margin-bottom: 24px; }
.amenity-card h3 { font-size: 20px; color: #17140F; margin-bottom: 12px; }
.amenity-card p { font-size: 14px; color: #6A5D52; line-height: 1.8; }
.amenity-bg-num {
  font-family: 'Playfair Display', serif; font-size: 72px; font-style: italic; font-weight: 700;
  color: rgba(158,116,15,0.06); position: absolute; bottom: 10px; right: 14px;
  line-height: 1; user-select: none; pointer-events: none;
}

/* ============================================================
   FLEET PAGE Ã¢â‚¬â€ CAR SECTIONS
============================================================ */
.car-section { overflow: hidden; position: relative; }
.car-section-dark { background: var(--void); }
.car-section-mid  { background: var(--obsidian); }

.car-visual { position: relative; height: 68vh; min-height: 520px; overflow: hidden; }
.car-visual-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.5) saturate(0.7);
  transition: transform 12s ease;
}
.car-section:hover .car-visual-img { transform: scale(1.04); }
.car-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--void) 0%, rgba(6,6,7,0.55) 30%, rgba(6,6,7,0.1) 65%, transparent 100%);
}
.car-section-mid .car-visual::after {
  background: linear-gradient(0deg, var(--obsidian) 0%, rgba(11,11,12,0.55) 30%, rgba(11,11,12,0.1) 65%, transparent 100%);
}
.car-overlay-label { position: absolute; bottom: 52px; left: 56px; z-index: 2; }
.car-overlay-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 120px; font-weight: 700; line-height: 1;
  color: rgba(201,168,76,0.12); user-select: none; pointer-events: none;
  position: absolute; right: 56px; bottom: 24px; z-index: 2;
}
.car-overlay-label .s-label { margin-bottom: 10px; }
.car-overlay-label h2 {
  font-size: clamp(36px, 4.5vw, 64px); color: var(--text-primary);
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.car-overlay-label h2 span {
  display: block; font-size: 0.55em; font-weight: 400; font-style: normal;
  font-family: 'DM Mono', monospace; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.car-content { padding: 80px 0 100px; }
.car-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.car-description h3 { font-size: 28px; color: var(--text-primary); margin-bottom: 20px; }
.car-description > p { font-size: 16px; color: var(--text-secondary); line-height: 1.95; margin-bottom: 28px; }
.car-highlights { display: flex; flex-direction: column; gap: 0; }
.car-highlight {
  display: flex; gap: 16px; padding: 18px 0; align-items: flex-start;
  border-bottom: 1px solid var(--gold-border);
}
.car-highlight:first-of-type { border-top: 1px solid var(--gold-border); }
.car-highlight svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.car-highlight-text strong { display: block; font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.car-highlight-text span { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

.car-specs-panel { background: var(--carbon); border: 1px solid var(--gold-border); padding: 0; }
.car-section-mid .car-specs-panel { background: #0E0E10; }
.car-specs-header { padding: 32px 40px; border-bottom: 1px solid var(--gold-border); }
.car-specs-header p {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.car-specs-header h4 { font-size: 22px; color: var(--text-primary); }
.car-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.car-spec-item {
  padding: 24px 32px; border-bottom: 1px solid var(--gold-border);
  transition: background 0.3s;
}
.car-spec-item:nth-child(odd) { border-right: 1px solid var(--gold-border); }
.car-spec-item:hover { background: rgba(201,168,76,0.03); }
.car-spec-item:nth-last-child(-n+2) { border-bottom: none; }
.spec-label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px;
}
.spec-value { font-size: 18px; color: var(--text-primary); font-weight: 400; font-family: 'Playfair Display', serif; }
.spec-sub { font-size: 12px; color: var(--text-secondary); margin-top: 3px; font-family: 'DM Sans', sans-serif; }
.car-reserve {
  padding: 32px 40px; border-top: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.car-reserve p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; max-width: 220px; }

#fleet-promise {
  padding: 128px 0; background: #EDEBE5;
  border-top: 1px solid rgba(158,116,15,0.15);
  border-bottom: 1px solid rgba(158,116,15,0.15);
}
#fleet-promise .s-label { color: #9E740F; justify-content: center; }
#fleet-promise .s-label::before { background: #9E740F; }
.promise-head { text-align: center; max-width: 660px; margin: 0 auto 72px; }
.promise-head h2 { font-size: clamp(36px, 3.8vw, 54px); color: #17140F; margin-bottom: 16px; }
.promise-head h2 em { color: #9E740F; font-style: italic; }
.promise-head p { font-size: 16px; color: #6A5D52; line-height: 1.9; }
.promise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(158,116,15,0.15);
  border: 1px solid rgba(158,116,15,0.15);
}
.promise-card {
  background: #FFFFFF; padding: 52px 44px; position: relative; overflow: hidden;
  transition: background 0.35s var(--ease-smooth);
}
.promise-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #9E740F, transparent);
  transform: scaleX(0); transition: transform 0.45s var(--ease-smooth);
}
.promise-card:hover { background: #F2EFE9; }
.promise-card:hover::before { transform: scaleX(1); }
.promise-icon { width: 48px; height: 48px; stroke: #9E740F; margin-bottom: 28px; }
.promise-card h3 { font-size: 22px; color: #17140F; margin-bottom: 14px; }
.promise-card p { font-size: 15px; color: #6A5D52; line-height: 1.85; }
.promise-bg-num {
  font-family: 'Playfair Display', serif; font-size: 84px; font-style: italic; font-weight: 700;
  color: rgba(158,116,15,0.06); position: absolute; bottom: 8px; right: 16px;
  line-height: 1; user-select: none; pointer-events: none;
}

/* Gallery strip */
.car-gallery-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  height: 420px; gap: 3px; background: var(--void); margin: 32px 0;
}
.gallery-strip-thumb { position: relative; overflow: hidden; cursor: pointer; }
.gallery-strip-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.75) saturate(0.8);
  transition: transform 0.8s var(--ease-smooth), filter 0.4s;
}
.gallery-strip-thumb:hover .gallery-strip-img { transform: scale(1.05); filter: brightness(0.9) saturate(1); }
.gallery-strip-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,6,7,0.55) 100%);
  transition: opacity 0.3s;
}
.gallery-strip-label {
  position: absolute; bottom: 20px; left: 24px;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(240,235,225,0.5); transition: color 0.3s;
}
.gallery-strip-thumb:hover .gallery-strip-label { color: var(--gold); }
.gallery-strip-icon {
  position: absolute; bottom: 20px; right: 20px; width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.85); transition: opacity 0.3s, transform 0.3s var(--ease-smooth);
}
.gallery-strip-thumb:hover .gallery-strip-icon { opacity: 1; transform: scale(1); }
.gallery-strip-icon svg { width: 14px; height: 14px; stroke: var(--gold); }

/* Lightbox */
.car-lightbox {
  display: none; position: fixed; inset: 0; z-index: 700;
  background: rgba(6,6,7,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  align-items: center; justify-content: center;
}
.car-lightbox.lb-open { display: flex; animation: fadeIn 0.28s var(--ease-smooth); }
.lb-img-wrap { display: flex; align-items: center; justify-content: center; }
.lb-img { max-width: 88vw; max-height: 82vh; object-fit: contain; display: block; }
.lb-close {
  position: absolute; top: 28px; right: 28px; background: none;
  border: 1px solid var(--gold-border); color: var(--text-secondary);
  font-size: 18px; width: 44px; height: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s; font-family: 'DM Sans', sans-serif;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%); background: none;
  border: 1px solid var(--gold-border); color: var(--text-secondary);
  font-size: 22px; width: 52px; height: 52px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, transform 0.2s; font-family: 'DM Sans', sans-serif;
}
.lb-prev { left: 28px; }
.lb-next { right: 28px; }
.lb-prev:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-50%) translateX(3px); }
.lb-counter {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em; color: var(--text-muted);
}

/* ============================================================
   WHY-US PAGE
============================================================ */
#philosophy { background: var(--void); overflow: hidden; }
.phil-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.phil-img { position: relative; overflow: hidden; }
.phil-img-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.48) saturate(0.6); transition: transform 12s ease;
}
.phil-img:hover .phil-img-bg { transform: scale(1.04); }
.phil-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--void) 100%);
}
.phil-text {
  background: var(--carbon); padding: 96px 80px;
  display: flex; flex-direction: column; justify-content: center; position: relative;
}
.phil-text::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-border) 30%, var(--gold-border) 70%, transparent);
}
.phil-text blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.4vw, 36px); font-style: italic;
  color: var(--text-primary); line-height: 1.45; margin-bottom: 36px; letter-spacing: -0.02em;
}
.phil-text blockquote span { color: var(--gold-light); }
.phil-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.95; margin-bottom: 20px; }
.phil-text p:last-of-type { margin-bottom: 0; }
.phil-signature {
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--gold-border);
  display: flex; align-items: center; gap: 18px;
}
.phil-sig-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-border), transparent); }
.phil-sig-name {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted);
}

#standards { padding: 140px 0; background: var(--obsidian); position: relative; overflow: hidden; }
#standards::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.std-head { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.std-head .s-label { justify-content: center; }
.std-head h2 { font-size: clamp(36px, 4vw, 58px); color: var(--text-primary); margin-bottom: 18px; }
.std-head h2 em { font-style: italic; color: var(--gold-light); }
.std-head p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; }
.std-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border);
}
.std-card {
  background: var(--obsidian); padding: 52px 44px;
  position: relative; overflow: hidden; transition: background 0.35s var(--ease-smooth);
}
.std-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s var(--ease-smooth);
}
.std-card:hover { background: rgba(17,17,19,0.95); }
.std-card:hover::before { transform: scaleX(1); }
.std-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 64px; font-weight: 700; color: rgba(201,168,76,0.07);
  position: absolute; bottom: 12px; right: 20px; line-height: 1;
  user-select: none; pointer-events: none;
}
.std-icon { width: 44px; height: 44px; stroke: var(--gold); margin-bottom: 28px; flex-shrink: 0; }
.std-card h3 { font-size: 22px; color: var(--text-primary); margin-bottom: 14px; }
.std-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.85; }
.std-tag {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-top: 24px; display: block;
}

#chauffeurs { background: var(--void); overflow: hidden; }
.chauf-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.chauf-text {
  background: var(--carbon); padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center; position: relative;
}
.chauf-text::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-border) 30%, var(--gold-border) 70%, transparent);
}
.chauf-text h2 { font-size: clamp(34px, 3.5vw, 52px); color: var(--text-primary); margin-bottom: 28px; }
.chauf-text h2 em { font-style: italic; color: var(--gold-light); }
.chauf-text > p { font-size: 16px; color: var(--text-secondary); line-height: 1.95; margin-bottom: 40px; }
.chauf-list { display: flex; flex-direction: column; gap: 0; }
.chauf-item {
  display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--gold-border);
  align-items: flex-start;
}
.chauf-item:first-of-type { border-top: 1px solid var(--gold-border); }
.chauf-item svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 4px; }
.chauf-item-body strong { display: block; font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.chauf-item-body span { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.chauf-img { position: relative; overflow: hidden; }
.chauf-img-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.46) saturate(0.65); transition: transform 12s ease;
}
.chauf-img:hover .chauf-img-bg { transform: scale(1.04); }
.chauf-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(270deg, transparent 50%, var(--carbon) 100%);
}
.chauf-stat-overlay { position: absolute; bottom: 48px; right: 48px; z-index: 2; text-align: right; }
.chauf-stat-overlay .big-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 80px; color: var(--gold); line-height: 1; opacity: 0.9;
}
.chauf-stat-overlay .stat-lbl {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--text-secondary); margin-top: 6px;
}

#numbers {
  padding: 128px 0; background: #EDEBE5;
  border-top: 1px solid rgba(158,116,15,0.15);
  border-bottom: 1px solid rgba(158,116,15,0.15);
}
#numbers .s-label { color: #9E740F; justify-content: center; }
#numbers .s-label::before { background: #9E740F; }
.num-head { text-align: center; max-width: 640px; margin: 0 auto 80px; }
.num-head h2 { font-size: clamp(34px, 3.6vw, 52px); color: #17140F; margin-bottom: 16px; }
.num-head h2 em { color: #9E740F; font-style: italic; }
.num-head p { font-size: 16px; color: #6A5D52; line-height: 1.9; }
.num-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(158,116,15,0.15); border: 1px solid rgba(158,116,15,0.15);
}
.num-card {
  background: #F5F3EE; padding: 56px 40px; text-align: center;
  position: relative; overflow: hidden; transition: background 0.3s var(--ease-smooth);
}
.num-card:hover { background: #EEEBE3; }
.num-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #9E740F, transparent);
  transform: scaleX(0); transition: transform 0.45s var(--ease-smooth);
}
.num-card:hover::before { transform: scaleX(1); }
.big-stat {
  font-family: 'Playfair Display', serif; font-size: clamp(52px, 5vw, 76px);
  font-weight: 400; color: #17140F; line-height: 1; letter-spacing: -0.03em; margin-bottom: 12px;
}
.big-stat em { font-style: italic; color: #9E740F; }
.stat-desc {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: #8A7968; line-height: 1.6;
}

#testimonials { padding: 128px 0; background: #F7F5F0; }
#testimonials .s-label { color: #9E740F; justify-content: center; }
#testimonials .s-label::before { background: #9E740F; }
.test-head { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.test-head h2 { font-size: clamp(34px, 3.5vw, 50px); color: #17140F; margin-bottom: 16px; }
.test-head h2 em { color: #9E740F; font-style: italic; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card {
  background: #FFFFFF; padding: 52px 44px; position: relative;
  border: 1px solid rgba(158,116,15,0.1);
  transition: border-color 0.35s var(--ease-smooth), box-shadow 0.35s;
}
.test-card:hover { border-color: rgba(158,116,15,0.35); box-shadow: 0 12px 60px rgba(158,116,15,0.08); }
.test-quote-mark {
  font-family: 'Playfair Display', serif; font-size: 96px;
  color: rgba(158,116,15,0.12); line-height: 0.7; margin-bottom: 24px; display: block;
}
.test-body {
  font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic;
  color: #2A231A; line-height: 1.7; margin-bottom: 36px;
}
.test-author {
  display: flex; align-items: center; gap: 16px;
  padding-top: 28px; border-top: 1px solid rgba(158,116,15,0.12);
}
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(158,116,15,0.2), rgba(158,116,15,0.08));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.test-avatar span { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #9E740F; }
.test-name { font-size: 14px; font-weight: 500; color: #17140F; }
.test-role {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: #8A7968; margin-top: 3px;
}
.test-stars { display: flex; gap: 3px; margin-bottom: 24px; }
.test-stars svg { width: 14px; height: 14px; fill: #9E740F; stroke: none; }

/* ============================================================
   EXPERIENCE PAGE
============================================================ */
#journey { padding: 140px 0; background: var(--void); position: relative; }
#journey::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-border) 10%, var(--gold-border) 90%, transparent);
  transform: translateX(-50%);
}
.journey-head { text-align: center; max-width: 680px; margin: 0 auto 96px; }
.journey-head .s-label { justify-content: center; }
.journey-head h2 { font-size: clamp(36px, 4vw, 56px); color: var(--text-primary); margin-bottom: 16px; }
.journey-head h2 em { color: var(--gold-light); font-style: italic; }
.journey-head p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
.timeline-step {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: start; gap: 0; margin-bottom: 80px;
}
.timeline-step:last-child { margin-bottom: 0; }
.step-content { padding: 0 48px; }
.step-content.right { grid-column: 3; }
.step-content.left { grid-column: 1; text-align: right; }
.step-node {
  grid-column: 2; display: flex; flex-direction: column;
  align-items: center; gap: 0; padding-top: 8px;
}
.step-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--void);
  position: relative; flex-shrink: 0;
}
.step-dot::after {
  content: ''; position: absolute; inset: 5px;
  border-radius: 50%; background: var(--gold);
}
.step-num {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.3em;
  color: var(--text-muted); margin-top: 10px; text-align: center;
}
.step-content h3 { font-size: 24px; color: var(--text-primary); margin-bottom: 12px; }
.step-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.9; }
.step-tag {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px;
}
.step-content.left .step-tag { text-align: right; }

#cabin { background: var(--obsidian); overflow: hidden; }
.cabin-split { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 720px; }
.cabin-img { position: relative; overflow: hidden; }
.cabin-img-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.62) saturate(0.7); transition: transform 12s ease;
}
.cabin-img:hover .cabin-img-bg { transform: scale(1.04); }
.cabin-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--obsidian) 100%);
}
.cabin-text { padding: 96px 80px; display: flex; flex-direction: column; justify-content: center; }
.cabin-text h2 { font-size: clamp(32px, 3.5vw, 52px); color: var(--text-primary); margin-bottom: 24px; }
.cabin-text h2 em { font-style: italic; color: var(--gold-light); }
.cabin-text > p { font-size: 16px; color: var(--text-secondary); line-height: 1.95; margin-bottom: 40px; }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
.amenity-item { display: flex; gap: 12px; align-items: flex-start; }
.amenity-item svg { width: 14px; height: 14px; stroke: var(--gold); flex-shrink: 0; margin-top: 5px; }
.amenity-item span { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.amenity-item strong { display: block; font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }

#sensory {
  padding: 128px 0; background: #EDEBE5;
  border-top: 1px solid rgba(158,116,15,0.15);
  border-bottom: 1px solid rgba(158,116,15,0.15);
}
#sensory .s-label { color: #9E740F; justify-content: center; }
#sensory .s-label::before { background: #9E740F; }
.sensory-head { text-align: center; max-width: 660px; margin: 0 auto 80px; }
.sensory-head h2 { font-size: clamp(34px, 3.8vw, 52px); color: #17140F; margin-bottom: 16px; }
.sensory-head h2 em { color: #9E740F; font-style: italic; }
.sensory-head p { font-size: 16px; color: #6A5D52; line-height: 1.9; }
.sensory-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(158,116,15,0.15); border: 1px solid rgba(158,116,15,0.15);
}
.sensory-card {
  background: #F5F3EE; padding: 52px 36px; position: relative; overflow: hidden;
  transition: background 0.35s var(--ease-smooth);
}
.sensory-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #9E740F, transparent);
  transform: scaleX(0); transition: transform 0.45s var(--ease-smooth);
}
.sensory-card:hover { background: #EEEBE3; }
.sensory-card:hover::before { transform: scaleX(1); }
.sensory-icon { width: 44px; height: 44px; stroke: #9E740F; margin-bottom: 28px; }
.sensory-sense {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.32em;
  text-transform: uppercase; color: #9E740F; margin-bottom: 12px; display: block;
}
.sensory-card h3 { font-size: 20px; color: #17140F; margin-bottom: 12px; }
.sensory-card p { font-size: 14px; color: #6A5D52; line-height: 1.85; }

#bespoke { padding: 140px 0; background: var(--carbon); position: relative; overflow: hidden; }
#bespoke::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
}
.bespoke-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.bespoke-text h2 { font-size: clamp(36px, 4vw, 60px); color: var(--text-primary); margin-bottom: 28px; }
.bespoke-text h2 em { font-style: italic; color: var(--gold-light); }
.bespoke-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.95; margin-bottom: 20px; }
.bespoke-text p:last-of-type { margin-bottom: 0; }
.bespoke-list { display: flex; flex-direction: column; gap: 0; }
.bespoke-item {
  padding: 28px 0; border-bottom: 1px solid var(--gold-border);
  display: flex; gap: 20px; align-items: flex-start;
}
.bespoke-item:first-child { border-top: 1px solid var(--gold-border); }
.bespoke-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 32px; color: var(--gold); line-height: 1; min-width: 40px; flex-shrink: 0;
}
.bespoke-item-body h4 { font-size: 17px; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; }
.bespoke-item-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

#fleet-strip { padding: 120px 0; background: var(--void); }
.strip-head { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.strip-head .s-label { justify-content: center; }
.strip-head h2 { font-size: clamp(32px, 3.5vw, 50px); color: var(--text-primary); margin-bottom: 16px; }
.strip-head h2 em { font-style: italic; color: var(--gold-light); }
.strip-head p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; }
.fleet-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gold-border); }
.fleet-strip-card { background: var(--carbon); position: relative; overflow: hidden; cursor: pointer; }
.fleet-strip-img {
  height: 360px; background-size: cover; background-position: center;
  filter: brightness(0.82) saturate(0.82);
  transition: filter 0.6s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.fleet-strip-card:hover .fleet-strip-img { filter: brightness(0.95) saturate(0.9); transform: scale(1.04); }
.fleet-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,6,7,0.82) 0%, rgba(6,6,7,0.08) 38%, transparent 62%);
  pointer-events: none;
}
.fleet-strip-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 36px; text-align: center; }
.fleet-strip-content .s-label { margin-bottom: 8px; font-size: 10px; justify-content: center; }
.fleet-strip-content .s-label::before { display: none; }
.fleet-strip-content h3 { font-size: 22px; color: var(--text-primary); margin-bottom: 8px; }
.fleet-strip-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.fleet-strip-arrow {
  position: absolute; top: 24px; right: 24px; width: 40px; height: 40px;
  border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-8px); transition: opacity 0.3s, transform 0.3s;
}
.fleet-strip-card:hover .fleet-strip-arrow { opacity: 1; transform: translateX(0); }
.fleet-strip-arrow svg { width: 14px; height: 14px; stroke: var(--gold); }

/* ============================================================
   RESPONSIVE Ã¢â‚¬â€ 1200px
============================================================ */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  #hamburger { display: flex; }
  #nav { padding: 20px 28px; }
  #nav.scrolled { padding: 14px 28px; }
  .s-inner { padding: 0 32px; }

  /* Home */
  .trust-header { grid-template-columns: 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .why-img-main { aspect-ratio: 16/9; }
  .why-badge { left: 20px; }
  .why-img-accent { display: none; }
  .exp-inner { grid-template-columns: 1fr; }
  .exp-visual { min-height: 300px; }
  .exp-content { padding: 64px 44px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .contact-info { position: static; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-inner { grid-template-columns: 1fr; gap: 0; }
  .quick-divider { display: none; }
  .quick-item { padding: 28px 0; border-bottom: 1px solid var(--gold-border); }
  .quick-item:last-child { border-bottom: none; }

  /* Services */
  .srv-split { grid-template-columns: 1fr; }
  .srv-panel-img { min-height: 420px; }
  .srv-panel-text { padding: 64px 44px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* Fleet */
  .car-grid { grid-template-columns: 1fr; gap: 48px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .car-overlay-label { left: 32px; bottom: 36px; }
  .car-overlay-num { display: none; }

  /* Why-us */
  .phil-split, .chauf-split { grid-template-columns: 1fr; }
  .phil-img, .chauf-img { min-height: 420px; }
  .phil-img::after { background: linear-gradient(180deg, transparent 60%, var(--void) 100%); }
  .chauf-img::before { background: linear-gradient(180deg, transparent 60%, var(--carbon) 100%); }
  .phil-text, .chauf-text { padding: 64px 40px; }
  .std-grid { grid-template-columns: repeat(2, 1fr); }
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .chauf-stat-overlay { right: 24px; bottom: 24px; }

  /* Experience */
  .timeline-step { grid-template-columns: 80px 1fr; }
  .step-content { padding: 0 28px; }
  .step-content.left { grid-column: 2; text-align: left; }
  .step-content.right { grid-column: 2; }
  .step-node { grid-column: 1; }
  #journey::before { left: 40px; }
  .cabin-split { grid-template-columns: 1fr; }
  .cabin-img { min-height: 420px; }
  .cabin-img::after { background: linear-gradient(180deg, transparent 60%, var(--obsidian) 100%); }
  .cabin-text { padding: 64px 40px; }
  .sensory-grid { grid-template-columns: repeat(2, 1fr); }
  .bespoke-inner { grid-template-columns: 1fr; gap: 56px; }
  .fleet-strip-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* ============================================================
   RESPONSIVE Ã¢â‚¬â€ 768px
============================================================ */
@media (max-width: 768px) {
  .s-inner { padding: 0 20px; }
  #hero { padding-bottom: 100px; }

  /* Booking widget */
  .b-fields { grid-template-columns: 1fr 1fr; }
  .b-field-pax  { grid-column: auto; }
  .b-submit-row { grid-column: 1 / -1; }
  .b-submit { width: 100%; justify-content: center; height: 44px; }
  .booking-form-wrap { padding: 24px 20px; }

  /* Home sections */
  .services-grid { grid-template-columns: 1fr; }
  .srv-card { aspect-ratio: 4/3; }
  .srv-desc { opacity: 1; transform: none; }
  .srv-link { opacity: 1; transform: none; }
  .trust-grid { grid-template-columns: 1fr; }
  #trust, #fleet, #why { padding: 80px 0; }
  #services { padding: 80px 0; }
  .exp-content { padding: 52px 20px; }
  #cta { padding: 100px 0; }

  /* Contact */
  .c-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .srv-panel-text { padding: 52px 24px; }
  .amenities-grid { grid-template-columns: 1fr; }

  /* Fleet */
  .car-visual { height: 50vh; }
  .car-spec-grid { grid-template-columns: 1fr; }
  .car-spec-item:nth-child(odd) { border-right: none; }
  .car-spec-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--gold-border); }
  .car-spec-item:last-child { border-bottom: none; }
  .promise-grid { grid-template-columns: 1fr; }
  .car-reserve { flex-direction: column; align-items: flex-start; }

  /* Why-us */
  .phil-text, .chauf-text { padding: 48px 24px; }
  .std-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; }

  /* Experience */
  .cabin-text { padding: 48px 24px; }
  .amenity-list { grid-template-columns: 1fr; }
  .sensory-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   GENERIC PAGE CONTENT (Terms, Privacy, Cookie Policy etc.)
============================================================ */
.lm-page-section { padding: 80px 0 110px; background: var(--void); }
.lm-prose {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}
.lm-prose > *:first-child { margin-top: 0; }
.lm-prose > *:last-child  { margin-bottom: 0; }

.lm-prose h1,
.lm-prose h2,
.lm-prose h3,
.lm-prose h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 1.8em 0 0.6em;
}
.lm-prose h1 { font-size: clamp(32px, 4vw, 46px); font-weight: 400; }
.lm-prose h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 400; }
.lm-prose h3 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 500; }
.lm-prose h4 { font-size: 18px; font-weight: 600; color: var(--gold-light); }

.lm-prose p { margin: 0 0 1.35em; }

.lm-prose a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  transition: border-color 0.25s, color 0.25s;
}
.lm-prose a:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }

.lm-prose ul,
.lm-prose ol { margin: 0 0 1.35em; padding-left: 1.4em; }
.lm-prose li { margin-bottom: 0.55em; padding-left: 0.3em; }
.lm-prose ul li::marker { color: var(--gold); }
.lm-prose ol li::marker { color: var(--gold); font-weight: 600; }

.lm-prose strong { color: var(--text-primary); font-weight: 600; }
.lm-prose em { font-style: italic; }

.lm-prose blockquote {
  margin: 1.6em 0;
  padding: 18px 28px;
  border-left: 2px solid var(--gold);
  background: var(--carbon);
  color: var(--text-primary);
  font-style: italic;
}

.lm-prose hr {
  border: none;
  height: 1px;
  background: var(--gold-border);
  margin: 2.4em 0;
}

.lm-prose img { max-width: 100%; height: auto; border-radius: 6px; margin: 1.4em 0; }

.lm-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 15px;
}
.lm-prose th,
.lm-prose td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--gold-border);
}
.lm-prose th { background: var(--carbon); color: var(--text-primary); font-weight: 600; }

.lm-prose code {
  background: var(--carbon);
  color: var(--gold-light);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.9em;
}

@media (max-width: 640px) {
  .lm-page-section { padding: 56px 0 72px; }
  .lm-prose { font-size: 15px; }
}

span#h-pax-display {
    color:#c9a84c !important;
}