/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  --dark: #1A1916;
  --gold: #C4993C;
  --cream: #F5F1EA;
  --blue: #C8DDE8;
  --muted: #888580;
  --border: #E8E4DC;
  --light: #F9F7F4;
}

/* ── Reset ───────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.container { max-width: 1280px; margin: 0 auto; }

.section { padding: 88px 20px; }
.section--white { background: #fff; }
.section--light { background: var(--light); }
.section--cream { background: var(--cream); }
.section--blue { background: var(--blue); }
.section--border-top { border-top: 1px solid var(--border); }

@media (min-width: 768px) {
  .section { padding-left: 48px; padding-right: 48px; }
}

.eyebrow {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow--light { color: rgba(255,255,255,0.4); }
.eyebrow--tight { margin-bottom: 44px; }

.h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--dark);
  font-weight: 500;
}
.h2--light { color: #fff; }
.h2--tight { margin-bottom: 44px; }
.h2 em, h1 em { font-style: italic; color: var(--gold); }

.body-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.section-lead { margin-top: 20px; max-width: 620px; }
.section-lead--wide { max-width: 680px; }
.section-cta-link { display: inline-block; margin-top: 24px; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 15px 28px;
}
.btn--sm { padding: 9px 18px; font-size: 11px; }
.btn--block { width: 100%; padding: 15px; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #b3893a; }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #333; }
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
}
.btn--outline-dark {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dark);
}
.btn--outline-dark:hover { border-color: var(--dark); }

/* ── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(26,25,22,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
}
@media (min-width: 768px) { .nav__container { padding: 0 48px; } }

.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 38px; width: auto; }

.nav__links { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav__links { display: flex; } }

.nav__links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.15s;
}
.nav__links a:hover { color: #fff; }
.nav__links a.btn { color: #fff; }
.nav__links a.btn:hover { color: #fff; }

.nav__burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) { .nav__burger { display: none; } }
.nav__burger span { display: block; width: 22px; height: 1px; background: #fff; }
.nav__burger span.nav__burger-accent { width: 14px; background: var(--gold); }

/* ── NAV DROPDOWN (Services) ────────────────────────────────────── */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.15s;
}
.nav__dropdown-trigger:hover { color: #fff; }
.nav__caret { font-size: 8px; display: inline-block; transition: transform 0.2s; }
.nav__dropdown:hover .nav__caret,
.nav__dropdown:focus-within .nav__caret { transform: rotate(180deg); }

.nav__dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  /* transparent bridge: keeps the box touching the trigger so hover
     never crosses a dead gap on the way down to the panel */
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__dropdown-panel__inner {
  background: #211F1B;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  padding: 10px;
}
.nav__dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 12px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav__dropdown-item:hover { background: rgba(255,255,255,0.05); }
.nav__dropdown-num { font-size: 10px; color: var(--gold); letter-spacing: 0.1em; padding-top: 2px; flex-shrink: 0; }
.nav__dropdown-title { display: block; font-size: 13px; color: #fff; margin-bottom: 3px; }
.nav__dropdown-desc { display: block; font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.nav__dropdown-all {
  display: block;
  margin-top: 4px;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
}

/* ── MOBILE MENU ─────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26,25,22,0.97);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.mobile-menu__link {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
}
.mobile-menu__cta { margin-top: 8px; padding: 12px 28px; }

.mobile-menu__group { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.mobile-menu__toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu__toggle-icon { font-size: 18px; color: var(--gold); font-weight: 300; transition: transform 0.2s; }
.mobile-menu__group.is-open .mobile-menu__toggle-icon { transform: rotate(45deg); }
.mobile-menu__submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.mobile-menu__group.is-open .mobile-menu__submenu { max-height: 280px; opacity: 1; margin-top: 2px; }
.mobile-menu__sublink { font-size: 15px; color: rgba(255,255,255,0.55); text-decoration: none; letter-spacing: 0.02em; }
.mobile-menu__sublink:hover { color: #fff; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; background: var(--dark); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,25,22,0.82) 40%, rgba(26,25,22,0.15) 100%);
}
.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 20px 80px;
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .hero__inner { padding-left: 48px; padding-right: 48px; } }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1fr 420px; } }
@media (min-width: 1280px) { .hero__inner { grid-template-columns: 1fr 460px; } }

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: 1.06;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 500;
}
.hero__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 470px;
    margin: 0 0 48px;
}
.hero__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 460px;
  margin: -28px 0 40px;
}

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.badge-strip__item {
  padding-right: 32px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-strip__num { font-size: 9px; color: var(--gold); letter-spacing: 0.1em; }
.badge-strip__label { font-size: 14px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }

/* ── Booking form ────────────────────────────────────────────────── */
.booking {
  position: relative;
  background: #fff;
  padding: 24px 26px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  width: 100%;
  scroll-margin-top: 90px;
}
.booking__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.booking__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking__tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,153,60,0.09);
  border: 1px solid rgba(196,153,60,0.2);
  padding: 4px 9px;
}
.booking__field { margin-bottom: 14px; }
.booking__field label {
  display: block;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.booking__field label.captchaAnswer{font-size: 14px;}
.booking__field input,
.booking__field textarea,
.booking__field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: transparent;
  outline: none;
  color-scheme: light;
}
.booking__field textarea {
  resize: vertical;
  min-height: 56px;
  line-height: 1.5;
}
.booking__field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23888580' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 11px;
  padding-right: 18px;
}

/* ── Phone country-code selector ────────────────────────────────── */
.phone-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.phone-input__code {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.phone-input__flag { font-size: 16px; line-height: 1; }
.phone-input__dial { font-size: 14px; color: var(--dark); }
.phone-input__caret { font-size: 8px; color: var(--muted); transition: transform 0.2s; }
.phone-input.is-open .phone-input__caret { transform: rotate(180deg); }
.phone-input input[type="tel"] {
  flex: 1;
  min-width: 0;
  border: none !important;
  border-bottom: none !important;
  padding: 8px 0 !important;
}
.phone-input__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  max-width: 90vw;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.phone-input.is-open .phone-input__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.phone-input__search { background: var(--dark); padding: 12px 14px; }
.phone-input__search input {
  width: 100%;
  border: none !important;
  background: rgba(255,255,255,0.08);
  padding: 8px 10px !important;
  font-size: 12px;
  color: #fff;
  outline: none;
}
.phone-input__search input::placeholder { color: rgba(255,255,255,0.4); }
.phone-input__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow-y: auto;
}
.phone-input__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.phone-input__list li:last-child { border-bottom: none; }
.phone-input__list li:hover { background: var(--light); }
.phone-input__list .country-name { display: flex; align-items: center; gap: 8px; min-width: 0; }
.phone-input__list .country-name span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.phone-input__list .country-dial { color: var(--muted); flex-shrink: 0; font-size: 12px; }
.phone-input__empty { padding: 16px 14px; font-size: 12px; color: var(--muted); text-align: center; cursor: default; }
.phone-input__empty:hover { background: none; }
.booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.booking__row--3 { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.booking__row .booking__field,
.booking__row--3 .booking__field { margin-bottom: 0; }
@media (max-width: 420px) {
  .booking__row--3 { grid-template-columns: 1fr 1fr; row-gap: 14px; }
  .booking__row--3 .booking__field:last-child { grid-column: 1 / -1; }
}
.stepper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.stepper__btn {
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stepper__value { flex: 1; text-align: center; font-size: 14px; }
.booking__note {
  font-size: 11px;
  color: rgba(136,133,128,0.7);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.booking__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.booking__status {
  font-size: 12px;
  line-height: 1.6;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid;
}
.booking__status--error {
  color: #a33b2c;
  background: rgba(196,60,60,0.06);
  border-color: rgba(196,60,60,0.25);
}
.booking__field--invalid input,
.booking__field--invalid textarea {
  border-color: #c0392b !important;
}
.booking__field--invalid .phone-input {
  border-color: #c0392b !important;
}

/* ── Flatpickr theme ─────────────────────────────────────────────── */
.flatpickr-calendar {
  font-family: 'Inter', sans-serif;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border-radius: 0;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after { display: none; }
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekdays { background: var(--dark); color: #fff; fill: #fff; }
.flatpickr-current-month input.cur-year { color: #fff; }
.flatpickr-current-month .flatpickr-monthDropdown-months { background: var(--dark); }
span.flatpickr-weekday { background: var(--dark); color: rgba(255,255,255,0.5); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.flatpickr-day.today { border-color: var(--gold); }
.flatpickr-day:hover { background: var(--light); }
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus { background: var(--light); }
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm { color: var(--dark); }
.flatpickr-current-month .numInputWrapper span.arrowUp:after { border-bottom-color: #fff; }
.flatpickr-current-month .numInputWrapper span.arrowDown:after { border-top-color: #fff; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: #fff; }

/* ── INTRO ───────────────────────────────────────────────────────── */
.intro-grid { display: grid; gap: 48px; align-items: end; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .intro-grid { grid-template-columns: 1fr 1fr; } }

.stat-row { display: flex; gap: 40px; align-items: flex-start; margin-top: 36px; }
.stat { flex: 1; }
.stat__value { font-family: 'DM Serif Display', serif; font-size: 38px; line-height: 1; }
.stat__label { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; margin-top: 6px; line-height: 1.5; }

/* ── SERVICES ────────────────────────────────────────────────────── */
.services-head { display: grid; gap: 32px; margin-bottom: 52px; align-items: end; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .services-head { grid-template-columns: 1fr 1fr; } }
.services-head__desc { max-width: 400px; }

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  margin-top: -1px;
  cursor: pointer;
  gap: 16px;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
}
.service-row + .service-row { border-top: none; }
.service-row--last { border-bottom: none; }
.service-row__left { display: flex; align-items: center; gap: 20px; min-width: 0; }
.service-row__num { font-size: 10px; color: var(--gold); letter-spacing: 0.1em; flex-shrink: 0; }
.service-row__label { font-size: 15px; }
.service-row__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 768px) { .service-row__desc { display: block; } }
.service-row__arrow {
  font-size: 12px;
  color: var(--gold);
  opacity: 0.3;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.service-row:hover .service-row__arrow { opacity: 1; transform: translateX(4px); }

/* ── COMFORT ─────────────────────────────────────────────────────── */
.comfort { display: grid; min-height: 520px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .comfort { grid-template-columns: 1fr 1fr; } }
.comfort__img { position: relative; overflow: hidden; min-height: 320px; background: #ccc; }
.comfort__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.comfort__content {
  background: var(--dark);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .comfort__content { padding: 56px 48px; } }
.comfort__desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 32px; }
.comfort__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}
.comfort__item { display: flex; align-items: center; gap: 8px; }
.comfort__item span:last-child { font-size: 12px; color: rgba(255,255,255,0.45); }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; display: block; }

.link-gold {
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,153,60,0.35);
  padding-bottom: 2px;
  letter-spacing: 0.04em;
}
.link-dark {
  font-size: 12px;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,25,22,0.25);
  padding-bottom: 2px;
}

/* ── FLEET ───────────────────────────────────────────────────────── */
.fleet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}
.fleet-head__desc { max-width: 320px; }

.fleet-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .fleet-grid { grid-template-columns: repeat(4, 1fr); } }

.car-card { background: #fff; }
.car-card__img { background: var(--light); aspect-ratio: 4/3; overflow: hidden; }
.car-card__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; transition: opacity 0.25s; }
.car-card__img:hover img { opacity: 1; }
.car-card__body { padding: 18px 20px 24px; }
.car-card__name { font-size: 16px; font-weight: 500; margin-bottom: 3px; }
.car-card__type { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.car-card__meta { font-size: 11px; color: var(--muted); line-height: 1.85; }
.car-card__foot { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 12px; }
.car-card__foot a { font-size: 11px; color: var(--gold); text-decoration: none; letter-spacing: 0.04em; }

/* ── FEATURED ROUTE ──────────────────────────────────────────────── */
.route-grid { display: grid; gap: 60px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .route-grid { grid-template-columns: 1fr 1fr; } }

.pill {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(26,25,22,0.08);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 28px;
}
.route-desc { font-size: 14px; color: rgba(26,25,22,0.58); line-height: 1.85; margin-bottom: 28px; max-width: 360px; }

.route-card { background: #fff; padding: 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.route-step { display: flex; gap: 16px; }
.route-step__rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.route-step__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #C8C4BC;
  margin-top: 4px;
}
.route-step__dot--filled { background: var(--gold); border-color: var(--gold); }
.route-step__line { width: 1px; flex: 1; background: #DDD8D0; margin: 5px 0; }
.route-step__body { padding-bottom: 22px; }
.route-step--last .route-step__body { padding-bottom: 0; }
.route-step__place { font-size: 16px; font-weight: 500; }
.route-step__sub { font-size: 11px; color: var(--muted); margin-top: 3px; }

.route-time {
  margin-top: 28px;
  background: var(--light);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.route-time span:first-child { font-size: 11px; color: var(--muted); }
.route-time__value { font-family: 'DM Serif Display', serif; font-size: 30px; }
.route-card .btn { margin-top: 12px; }

/* ── TESTIMONIAL ─────────────────────────────────────────────────── */
.testimonial { text-align: center; }
.testimonial__inner { max-width: 680px; margin: 0 auto; }
.testimonial__quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.38;
  font-style: italic;
  margin: 0 0 32px;
  font-weight: 500;
}
.testimonial__stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 12px; }
.testimonial__by { font-size: 11px; color: var(--muted); letter-spacing: 0.07em; }

/* ── WHY US ──────────────────────────────────────────────────────── */
.why-grid { display: grid; gap: 1px; background: var(--border); grid-template-columns: 1fr; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: #fff; padding: 40px 32px; }
.why-card__num { font-size: 10px; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 20px; }
.why-card__title { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 14px;font-weight: 500; }
.why-card__body { font-size: 16px; color: var(--muted); line-height: 1.85; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-grid { display: grid; gap: 56px; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-list { border-top: 1px solid var(--border); }
.faq-row { border-bottom: 1px solid var(--border); }
.faq-row__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-row__q span:first-child { font-size: 18px; line-height: 1.5; }
.faq-row__icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s;
}
.faq-row.is-open .faq-row__icon { transform: rotate(45deg); }
.faq-row__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  opacity: 0;
}
.faq-row.is-open .faq-row__a { max-height: 200px; opacity: 1; }
.faq-row__a p { font-size: 16px; color: var(--muted); line-height: 1.8; padding-bottom: 20px; }

/* ── SERVICE DETAIL: PAGE HERO ───────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; background: var(--dark); }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.page-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,25,22,0.25) 0%, rgba(26,25,22,0.95) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 20px 64px;
}
@media (min-width: 768px) { .page-hero__inner { padding-left: 48px; padding-right: 48px; } }
.page-hero__crumb { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; margin-bottom: 22px; }
.page-hero__crumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.page-hero__crumb a:hover { color: #fff; }
.page-hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 500;
  max-width: 760px;
}
.page-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 0 32px;
}
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SERVICE DETAIL: ABOUT ───────────────────────────────────────── */
.about-grid { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid--rev .about-grid__img { order: 2; }
.about-grid__img { position: relative; overflow: hidden; min-height: 340px; background: var(--light); }
.about-grid__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-list { margin-top: 28px; max-width: 620px; display: flex; flex-direction: column; gap: 14px; }
.about-list--wide { max-width: 680px; }
.about-list__item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.6; }
.about-list__item .dot { margin-top: 8px; }

/* ── SERVICE DETAIL: MADE FOR THE MOMENT ─────────────────────────── */
.moment-head { display: grid; gap: 32px; margin-bottom: 44px; align-items: end; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .moment-head { grid-template-columns: 1fr 1fr; } }
.moment-head__desc { max-width: 400px; }
.moment-grid { display: grid; gap: 1px; background: var(--border); grid-template-columns: 1fr; }
@media (min-width: 640px) { .moment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .moment-grid { grid-template-columns: repeat(4, 1fr); } }
.moment-card { background: #fff; padding: 34px 26px; }
.moment-card__num { font-size: 10px; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 20px; }
.moment-card__title { font-family: 'DM Serif Display', serif; font-size: 19px; margin-bottom: 10px; font-weight: 500; }
.moment-card__body { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── SERVICE DETAIL: TRUST BAR ────────────────────────────────────── */
.trust-bar { background: var(--light); border-bottom: 1px solid var(--border); }
.trust-bar__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  padding: 32px 20px;
}
@media (min-width: 768px) { .trust-bar__grid { grid-template-columns: repeat(4, 1fr); padding: 32px 48px; } }
.trust-bar__item { text-align: center; }
.trust-bar__value { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--gold); line-height: 1; }
.trust-bar__label { font-size: 11px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ── SERVICE DETAIL: OVERVIEW ─────────────────────────────────────── */
.overview-body { max-width: 760px; }
.overview-body p { margin-bottom: 16px; }

/* ── SERVICE DETAIL: HOW IT WORKS (STEPS) ─────────────────────────── */
.steps-grid { display: grid; gap: 1px; background: var(--border); grid-template-columns: 1fr; margin-top: 44px; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { background: #fff; padding: 32px 26px; }
.step-card__num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--gold); margin-bottom: 16px; line-height: 1; }
.step-card__title { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.step-card__body { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── SERVICE DETAIL: WHY US 4-COLUMN VARIANT ──────────────────────── */
@media (min-width: 768px) { .why-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ── SERVICE DETAIL: CLOSING LINE ─────────────────────────────────── */
.section-closing {
  font-size: 14px;
  font-style: italic;
  color: var(--dark);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  max-width: 620px;
}

/* ── REQUEST-QUOTE WIZARD ─────────────────────────────────────────── */
.quote-shell { max-width: 640px; margin: 0 auto; }

.progress { display: flex; gap: 32px; list-style: none; margin: 0 0 40px; padding: 0; }
.progress li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.progress li span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Serif Display', serif;
  flex-shrink: 0;
}
.progress li.active { color: var(--dark); }
.progress li.active span { background: var(--gold); border-color: var(--gold); color: #fff; }

.summary-card { background: var(--light); border: 1px solid var(--border); padding: 20px 24px; margin-bottom: 20px; }
.summary-card__title {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row__label { color: var(--muted); flex-shrink: 0; }
.summary-row__value { font-weight: 500; text-align: right; }
.summary-card__edit {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.quote-form .booking__field { margin-bottom: 14px; }
.quote-form .booking__row { margin-bottom: 14px; }

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.consent-field input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}
.consent-field a { color: var(--gold); }

.quote-review-actions { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.quote-review-actions .btn { flex: 1; min-width: 140px; }

.recaptcha-notice {
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
  margin: -8px 0 18px;
}
.recaptcha-notice a { color: var(--muted); text-decoration: underline; }

/* Google's floating badge is hidden per their terms, since the required
   attribution text above is shown instead — avoids clashing with our own
   floating WhatsApp/back-to-top buttons in the same corner. */
.grecaptcha-badge { visibility: hidden; }

/* ── FINAL CTA ───────────────────────────────────────────────────── */
.cta {
  background: var(--dark);
  padding: 88px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta { padding-left: 48px; padding-right: 48px; } }
.cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.1; }
.cta__inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cta__inner { grid-template-columns: 1fr 1fr; } }
.cta__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.07;
  color: #fff;
  font-weight: 500;
}
.cta__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-top: 20px;
  max-width: 420px;
}
.cta__actions { display: flex; flex-direction: column; gap: 10px; max-width: 320px; }
.cta__phone {
  display: block;
  color: rgba(255,255,255,0.38);
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  margin-top: 4px;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: #111110;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 52px 20px 32px;
}
@media (min-width: 768px) { .footer { padding-left: 48px; padding-right: 48px; } }
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 44px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-heading {
  font-size: 9px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-grid a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom__legal { display: flex; gap: 16px; }

/* ── COOKIE CONSENT BAR ──────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) { .cookie-bar { padding: 18px 48px; } }
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}
.cookie-bar__text a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(196,153,60,0.35); }
.cookie-bar__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── FLOATING ACTIONS ────────────────────────────────────────────── */
.whatsapp-float,
.back-to-top {
  position: fixed;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: bottom 0.25s ease, opacity 0.25s ease, transform 0.2s ease, background 0.15s ease;
}
.whatsapp-float { left: 24px; background: #25D366; }
.whatsapp-float:hover { transform: scale(1.06); }
.back-to-top {
  right: 24px;
  background: var(--dark);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }
body.has-cookie-bar .whatsapp-float,
body.has-cookie-bar .back-to-top { bottom: 104px; }
@media (max-width: 480px) {
  .whatsapp-float, .back-to-top { width: 46px; height: 46px; bottom: 18px; }
  .whatsapp-float { left: 16px; }
  .back-to-top { right: 16px; }
  body.has-cookie-bar .whatsapp-float,
  body.has-cookie-bar .back-to-top { bottom: 132px; }
}

/* ── LEGAL PAGES ─────────────────────────────────────────────────── */
.legal-content { max-width: 760px; }
.legal-content__updated { font-size: 12px; color: var(--muted); margin-bottom: 40px; }
.legal-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 25px;
  font-weight: 500;
  margin: 44px 0 14px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 14px; color: var(--muted); line-height: 1.85; margin: 0 0 16px; }
.legal-content ul { margin: 0 0 16px; padding-left: 20px; }
.legal-content li { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 6px; }
.legal-content a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(196,153,60,0.35); }

/* ── THANK YOU ───────────────────────────────────────────────────── */
.thanks {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 88px;
  text-align: center;
}
@media (min-width: 768px) { .thanks { padding-left: 48px; padding-right: 48px; } }
.thanks__inner { max-width: 640px; margin: 0 auto; }
.thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 28px;
}
.thanks__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.thanks__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 460px;
  margin: 0 auto 36px;
}
.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.thanks__note { font-size: 13px; color: rgba(255,255,255,0.35); }
