/*
  ┌─────────────────────────────────────────────┐
  │  LSAT · Master Design System                │
  │  Palette: White · Deep Navy · Gold          │
  │  Version: 2.0 — Full UI/UX Redesign        │
  └─────────────────────────────────────────────┘
*/

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

:root {
  /* Colour tokens */
  --navy:        #0D1B3E;
  --navy-mid:    #162347;
  --navy-light:  #1E2F5C;
  --gold:        #C8A84B;
  --gold-light:  #DEC06A;
  --gold-pale:   #F5EDD6;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --smoke:       #EFEFED;
  --ink:         #1A1A2E;
  --mid:         #5A6070;
  --subtle:      #9CA3AF;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(13,27,62,0.06);
  --shadow-md:  0 4px 20px rgba(13,27,62,0.09);
  --shadow-lg:  0 12px 48px rgba(13,27,62,0.13);
  --shadow-xl:  0 24px 72px rgba(13,27,62,0.18);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s;
  --t-mid:  0.32s;
  --t-slow: 0.55s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── Layout Helpers ────────────────────────────── */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s4);
}

.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 var(--s4); }

section { padding: var(--s7) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); }

/* ── Typography Scale ──────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.t-display-sm {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.t-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.t-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-body-lg { font-size: 1.1rem; line-height: 1.7; color: var(--mid); }
.t-body    { font-size: 0.975rem; line-height: 1.7; color: var(--mid); }
.t-small   { font-size: 0.84rem; color: var(--subtle); }

/* ── Decorative Gold Line ──────────────────────── */
.gold-line {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--s3);
}

/* Section intro block */
.section-intro {
  margin-bottom: var(--s6);
}

.section-intro.centered {
  text-align: center;
}

.section-intro.centered .gold-line {
  margin: 0 auto var(--s3);
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  padding: 14px 28px;
  border: 2px solid transparent;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(13,27,62,0.25);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(13,27,62,0.04);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 17px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--t-mid), box-shadow var(--t-mid);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(13,27,62,0.08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s4);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-mark {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-brand-mark svg {
  width: 22px; height: 22px;
}

.nav-brand-text { line-height: 1.2; }

.nav-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.nav-brand-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links > li > a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--navy);
  background: var(--off-white);
}

.nav-links > li > a.active {
  font-weight: 600;
}

/* Dropdown */
.nav-has-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}

.nav-has-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  transition: background var(--t-fast);
}

.nav-dropdown-menu li a:hover { background: var(--off-white); }

.nav-dropdown-menu li a .dd-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--off-white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.nav-book {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
}

.nav-book:hover {
  background: var(--gold-light) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t-fast);
}

/* ── Hero — Video ──────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,27,62,0.72) 0%, rgba(13,27,62,0.25) 60%, transparent 100%),
    linear-gradient(to top, rgba(13,27,62,0.65) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s4) var(--s7);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 680px;
  margin-bottom: var(--s3);
}

.hero-h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: var(--s5);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats strip at bottom */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: var(--s3) var(--s4);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Cards ─────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--smoke);
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  overflow: hidden;
  height: 240px;
}

.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: var(--s4) var(--s4) var(--s5); }

.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s1);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: var(--s2);
}

.card-text { font-size: 0.9rem; color: var(--mid); line-height: 1.65; margin-bottom: var(--s3); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--t-fast);
}

.card-link:hover { gap: 10px; }

.card-link svg { width: 14px; height: 14px; }

/* ── Photo Feature Block ───────────────────────── */
.photo-block {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-block-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.75) 0%, rgba(13,27,62,0.1) 55%, transparent 100%);
}

.photo-block-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s4) var(--s5);
}

.photo-block-label h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s2);
}

.photo-block-label p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
  line-height: 1.6;
}

/* ── Split Section ─────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.split-text-col {
  padding: var(--s7) var(--s7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s3);
}

.split-img-col {
  position: relative;
  min-height: 500px;
}

.split-img-col img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Testimonials ──────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: var(--r-lg);
  padding: var(--s5);
  transition: box-shadow var(--t-mid);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--s3);
}

.star { color: var(--gold); font-size: 0.9rem; }

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: var(--s4);
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.875rem; color: var(--navy); }
.testimonial-author span { font-size: 0.78rem; color: var(--subtle); }

/* ── FAQ ───────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--smoke);
}

.faq-trigger {
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  gap: var(--s3);
  align-items: center;
  padding: var(--s4) 0;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
}

.faq-q {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
}

.faq-chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--smoke);
  display: grid;
  place-items: center;
  color: var(--subtle);
  transition: transform var(--t-fast), background var(--t-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.faq-body {
  display: none;
  padding: 0 0 var(--s4) calc(52px + var(--s3));
}

.faq-item.open .faq-body { display: block; }

.faq-body p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

/* ── Navy Band ─────────────────────────────────── */
.band-navy {
  background: var(--navy);
  color: var(--white);
}

.band-navy .t-display, .band-navy .t-display-sm,
.band-navy .t-heading { color: var(--white); }

.band-gold-pale { background: var(--gold-pale); }
.band-off-white  { background: var(--off-white); }

/* ── Pricing ───────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--smoke);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s5) var(--s6);
  position: relative;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
}

.pricing-plan { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--subtle); margin-bottom: var(--s3); }
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.5); }

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-period { font-size: 0.84rem; color: var(--subtle); margin-bottom: var(--s5); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.45); }

.pricing-features { list-style: none; margin-bottom: var(--s5); }

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--smoke);
  color: var(--mid);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Fleet Cards ───────────────────────────────── */
.fleet-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy);
}

.fleet-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity var(--t-mid), transform var(--t-slow) var(--ease);
}

.fleet-card:hover img { opacity: 0.7; transform: scale(1.05); }

.fleet-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s4);
  background: linear-gradient(transparent, rgba(13,27,62,0.85));
}

.fleet-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 2px;
}

.fleet-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

.fleet-price-chip {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* ── Gallery ───────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

.gallery-cell {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.gallery-cell.span-2 { grid-column: span 2; }
.gallery-cell.tall   { grid-row: span 2; }

.gallery-cell img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}

.gallery-cell.tall img, .gallery-cell.span-2 img { height: 100%; min-height: 280px; }

.gallery-cell:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,0.45);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--t-mid);
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}

.gallery-cell:hover .gallery-overlay { opacity: 1; }

/* ── Page Hero Bands ───────────────────────────── */
.page-hero {
  padding-top: calc(72px + var(--s7));
  padding-bottom: var(--s7);
  background: var(--off-white);
  border-bottom: 1px solid var(--smoke);
}

.page-hero-navy {
  padding-top: calc(72px + var(--s7));
  padding-bottom: var(--s7);
  background: var(--navy);
}

/* ── Booking Wizard ────────────────────────────── */
.booking-shell {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: stretch;
}

.booking-rail {
  background: var(--navy);
  color: var(--white);
  padding: var(--s7) var(--s6);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
}

.booking-rail-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s2);
}

.booking-rail-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--s6);
  line-height: 1.6;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex: 1;
}

.booking-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.35;
  transition: opacity var(--t-mid);
}

.booking-step-item.active { opacity: 1; }
.booking-step-item.done   { opacity: 0.6; }

.booking-step-bubble {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--t-mid);
}

.booking-step-item.active .booking-step-bubble {
  background: var(--gold);
  border-color: var(--gold);
}

.booking-step-item.done .booking-step-bubble {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.booking-step-label { font-size: 0.875rem; font-weight: 500; }

.booking-deposit-note {
  margin-top: auto;
  padding: var(--s3);
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: var(--r-md);
}

.booking-deposit-note p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.booking-deposit-note strong { color: var(--gold); }

.booking-main {
  padding: var(--s7) var(--s6);
  background: var(--off-white);
  overflow-y: auto;
}

/* Wizard steps */
.wiz-step { display: none; animation: wiz-in var(--t-mid) var(--ease) both; }
.wiz-step.active { display: block; }

@keyframes wiz-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.wiz-step h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: var(--s2);
}

.wiz-sub { font-size: 0.9rem; color: var(--mid); margin-bottom: var(--s5); }

/* Service tiles */
.service-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }

.service-tile {
  background: var(--white);
  border: 1.5px solid var(--smoke);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s4) var(--s5);
  cursor: pointer;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  text-align: left;
}

.service-tile:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-tile.selected {
  border-color: var(--navy);
  background: rgba(13,27,62,0.03);
  box-shadow: var(--shadow-sm);
}

.tile-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: var(--s3);
}

.tile-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--s1);
}

.tile-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }

/* Form fields */
.form-group { margin-bottom: var(--s3); }

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: var(--s1);
}

.form-control {
  width: 100%;
  padding: 13px var(--s3);
  border: 1.5px solid var(--smoke);
  border-radius: var(--r-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,62,0.07);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }

.form-divider {
  border: none;
  border-top: 1.5px solid var(--smoke);
  margin: var(--s5) 0 var(--s4);
}

/* Price chip */
.price-chip {
  background: var(--navy);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s5);
  margin: var(--s4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-chip-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.price-chip-amount { font-family: var(--font-display); font-size: 2rem; color: var(--white); line-height: 1; }
.price-chip-deposit { font-size: 0.8rem; color: var(--gold); margin-top: 4px; }

/* Summary rows */
.summary-card {
  background: var(--white);
  border: 1.5px solid var(--smoke);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--s4);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px var(--s4);
  border-bottom: 1px solid var(--smoke);
  font-size: 0.875rem;
}

.summary-row:last-child { border-bottom: none; }
.summary-row-label { color: var(--mid); }
.summary-row-value { font-weight: 600; color: var(--navy); }

/* Confirm success */
.confirm-success {
  text-align: center;
  padding: var(--s6) var(--s4);
}

.confirm-icon {
  width: 72px; height: 72px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto var(--s4);
  font-size: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: var(--s4);
  transition: color var(--t-fast);
}

.back-link:hover { color: var(--navy); }

/* ── Contact ────────────────────────────────────── */
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}

.contact-panel-l {
  background: var(--navy);
  padding: var(--s7) var(--s7);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-panel-l h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s3);
}

.contact-panel-l p { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 380px; margin-bottom: var(--s6); }

.contact-details { display: flex; flex-direction: column; gap: var(--s4); }

.contact-item { display: flex; align-items: flex-start; gap: var(--s3); }

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.2);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.contact-item-value { font-size: 0.95rem; color: rgba(255,255,255,0.8); font-weight: 500; }

.contact-panel-r {
  background: var(--off-white);
  padding: var(--s7) var(--s7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-panel-r h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: var(--s5);
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: var(--s7) 0 var(--s4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--s4);
}

.footer-about p { font-size: 0.875rem; line-height: 1.7; margin-top: var(--s3); max-width: 280px; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--s3);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; font-size: 0.875rem; }
.footer-col a { color: rgba(255,255,255,0.5); transition: color var(--t-fast); }
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: var(--s2);
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}

/* ── Reveal animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split-img-col { min-height: 360px; position: relative; }
  .split-img-col img { position: relative; width: 100%; height: 360px; }
  .split-text-col { padding: var(--s6) var(--s5); }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-rail { position: static; height: auto; }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: var(--s2) var(--s3);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--smoke);
    gap: 2px;
  }
  .nav-links > li > a { display: block; }
  .nav-toggle { display: flex; }
  .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; background: var(--off-white); opacity: 1; visibility: visible; padding: var(--s1); }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-tiles { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cell.span-2, .gallery-cell.tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-main { padding: var(--s5) var(--s4); }
  .booking-rail { padding: var(--s5) var(--s4); }
  .contact-panel-l, .contact-panel-r { padding: var(--s6) var(--s4); }
}