:root {
  /* — Surfaces — */
  --black:        #0E0C09;
  --black-soft:   #14120E;
  --black-elev:   #1C1813;
  --black-deep:   #050402;

  /* — Gold — */
  --gold:         #C9A96A;
  --gold-bright:  #DFC487;
  --gold-deep:    #9C7C3D;
  --gold-soft:    rgba(201, 169, 106, 0.08);

  /* — Lines — */
  --line:         rgba(201, 169, 106, 0.14);
  --line-strong:  rgba(201, 169, 106, 0.32);

  /* — Text — */
  --cream:        #F4EFE2;
  --cream-soft:   #BFB8A6;
  --muted:        #7A746A;

  /* — Aliases for legacy class names — */
  --ink:          var(--cream);
  --ink-soft:     var(--cream-soft);
  --paper:        var(--black-elev);
  --bone:         var(--black);
  --forest:       var(--gold);
  --forest-deep:  var(--gold-bright);
  --terracotta:   var(--gold);
  --terracotta-deep: var(--gold-deep);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, .serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--cream);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ===================== NAV ===================== */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  transition: all .3s ease;
  padding: 18px 0;
}
.nav-wrap.scrolled {
  background: rgba(14,12,9,.85);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}
.nav-link-x {
  color: var(--cream-soft) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px !important;
  transition: color .2s;
}
.nav-link-x:hover { color: var(--gold) !important; }

/* ===================== BUTTONS ===================== */
/* Primary CTA — gold filled */
.btn-forest {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.btn-forest:hover {
  background: var(--gold-bright);
  color: var(--black);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}
/* Secondary — outlined gold */
.btn-terra {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-terra:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}
/* Ghost — subtle cream outline */
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,239,226,.28);
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}

/* ===================== HERO ===================== */
.hero {
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,169,106,.08) 0%, transparent 55%),
    var(--black);
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: .98;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-lede {
  font-size: 17px;
  color: var(--cream-soft);
  max-width: 460px;
  margin-top: 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero-meta .item .val {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--cream);
}
.hero-img-wrap {
  position: relative;
  height: 100%;
  min-height: 540px;
}
.hero-img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(.78) saturate(.85);
  border: 1px solid var(--line);
}
.quote-card {
  position: absolute;
  left: -28px;
  bottom: -32px;
  background: var(--black-elev);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 28px 30px;
  width: 320px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.7);
}
.quote-card .label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.quote-card .price {
  font-family: 'Fraunces', serif;
  font-size: 46px;
  color: var(--cream);
  margin: 8px 0 6px;
  line-height: 1;
}
.quote-card .desc {
  font-size: 13px;
  color: var(--cream-soft);
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .hero { padding: 130px 0 70px; }
  .hero-img-wrap { margin-top: 48px; min-height: 420px; }
  .hero-img { min-height: 420px; }
  .quote-card { left: 12px; right: 12px; bottom: -24px; width: auto; }
}

/* ===================== TICKER ===================== */
.ticker {
  background: var(--gold);
  color: var(--black);
  padding: 18px 0;
  overflow: hidden;
  margin-top: 80px;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--black);
  font-weight: 500;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track .dot { color: var(--black); opacity: .35; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== SECTIONS ===================== */
.section { padding: 110px 0; background: var(--black); }
.section-head { margin-bottom: 70px; }
.section-head h2 {
  font-size: clamp(34px, 3.6vw, 54px);
  margin-top: 18px;
}
.section-head .text-muted { color: var(--cream-soft) !important; }

/* ===================== SERVICES ===================== */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row .num {
  font-family: 'Fraunces', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}
.service-row h3 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--cream);
}
.service-row p {
  color: var(--cream-soft);
  margin: 0;
  max-width: 460px;
}
.service-row .img-block {
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.service-row .img-block img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
  filter: brightness(.85) saturate(.9);
}
.service-row:hover .img-block img { transform: scale(1.04); }
.service-row .tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--black);
  color: var(--gold);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
}
@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }
  .service-row .num { font-size: 44px; }
  .service-row .img-block { height: 220px; }
}

/* ===================== PRICING ===================== */
.price-section {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-card {
  background: var(--black-elev);
  border-radius: 6px;
  padding: 44px 38px;
  height: 100%;
  border: 1px solid var(--line);
  transition: all .3s;
  position: relative;
}
.price-card.featured {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.price-card.featured h3,
.price-card.featured .price-line span:first-child {
  color: var(--black);
}
.price-card.featured .price-line {
  border-color: rgba(14,12,9,.18);
}
.price-card.featured .price-line span:last-child {
  color: var(--black);
  font-weight: 700;
}
.price-card .badge-pill {
  position: absolute;
  top: -14px; left: 38px;
  background: var(--black);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--gold);
}
.price-card h3 {
  font-size: 26px;
  margin-bottom: 4px;
  color: var(--cream);
}
.price-card .sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.price-card.featured .sub { color: rgba(14,12,9,.65); }
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.price-line:last-child { border-bottom: none; }
.price-line span:first-child { color: var(--cream); font-weight: 500; }
.price-line span:last-child {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
}
.price-note {
  background: var(--black-elev);
  border-left: 3px solid var(--gold);
  padding: 26px 30px;
  margin-top: 50px;
  font-size: 14px;
  color: var(--cream-soft);
  border-radius: 0 4px 4px 0;
}
.price-note strong { color: var(--cream); }

/* — Price table — */
.price-table-wrap {
  background: var(--black-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 0;
}
.price-table thead th {
  background: var(--black-soft);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 20px 26px;
  text-align: left;
  border-bottom: 1px solid var(--line-strong);
}
.price-table thead th:not(:first-child) { text-align: right; }
.price-table tbody td {
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  vertical-align: middle;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr { transition: background .2s; }
.price-table tbody tr:hover { background: rgba(201,169,106,.05); }
.price-table tbody td:first-child {
  font-weight: 500;
  font-size: 15px;
}
.price-table tbody td:not(:first-child) {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--gold);
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .price-table thead th { padding: 14px 14px; font-size: 9px; letter-spacing: .15em; }
  .price-table tbody td { padding: 14px 14px; font-size: 13px; }
  .price-table tbody td:not(:first-child) { font-size: 15px; }
}

/* — Reference card (Impressum / Datenschutz redirects) — */
.reference-card {
  background: var(--black-elev);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 38px 40px;
  margin: 30px 0;
}
.reference-card-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.reference-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 500;
}
.reference-card p {
  font-size: 15px;
  color: var(--cream-soft);
  margin-bottom: 22px;
}
.reference-card .btn-forest { text-decoration: none; }
@media (max-width: 575px) {
  .reference-card { padding: 28px 24px; }
}

/* ===================== USPs ===================== */
.usp-item {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.usp-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: 12px;
}
.usp-item h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--cream);
}
.usp-item p {
  color: var(--cream-soft);
  font-size: 14px;
  margin: 0;
}

/* ===================== DRIVER (editorial) ===================== */
.driver-section {
  background: var(--black-soft);
  color: var(--cream);
  padding: 130px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.driver-section h2 { color: var(--cream); }
.driver-section .eyebrow { color: var(--gold); }
.driver-section .eyebrow::before { background: var(--gold); }
.pullquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 36px 0;
}
.driver-img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(.2) brightness(.9);
  border: 1px solid var(--line);
}
.driver-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--cream-soft);
}
.driver-meta strong {
  display: block;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ===================== CONTACT BAND ===================== */
.contact-band {
  background:
    radial-gradient(circle at 20% 30%, rgba(201,169,106,.06), transparent 60%),
    var(--black-soft);
  color: var(--cream);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-band h2 { color: var(--cream); font-size: clamp(34px, 4vw, 56px); }
.contact-band p { color: var(--cream-soft); }

.alt-contact {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}
.alt-contact-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.alt-contact-link {
  display: flex; align-items: center; gap: 14px;
  color: var(--cream);
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  padding: 8px 0;
  transition: color .2s;
}
.alt-contact-link:hover { color: var(--gold); }
.alt-contact-link span:first-child {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201,169,106,.12);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 14px;
  color: var(--gold);
}
.alt-contact-foot {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.alt-contact-link small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
  line-height: 1;
}

/* — Nav phone display — */
.nav-phone {
  display: none;
  align-items: center;
  gap: 10px;
  margin-right: 14px;
  text-decoration: none;
  font-size: 13px;
  transition: opacity .2s;
}
.nav-phone:hover { opacity: .82; }
.nav-phone .num { color: var(--cream); font-weight: 500; }
.nav-phone .badge-free {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
@media (min-width: 992px) {
  .nav-phone { display: inline-flex; }
}

/* ===================== BOOKING FORM CARD ===================== */
.booking-card {
  background: var(--black-elev);
  color: var(--cream);
  border-radius: 8px;
  padding: 38px 38px 32px;
  box-shadow: 0 40px 80px -25px rgba(0,0,0,.7);
  height: 100%;
  border: 1px solid var(--line-strong);
}
.booking-card-head {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.booking-card-head h3 {
  font-size: 28px;
  margin: 0 0 6px;
  color: var(--cream);
}
.booking-card-head p {
  font-size: 14px;
  color: var(--cream-soft);
  margin: 0;
}
.booking-form .form-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.booking-form .form-label .optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
  margin-left: 4px;
}
.booking-form .form-control,
.booking-form .form-select {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,106,.15);
  background: var(--black);
  color: var(--cream);
}
.booking-form .form-control::placeholder { color: var(--muted); }
.booking-form .form-text {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.booking-form .invalid-feedback {
  font-size: 12px;
  color: #E48A65;
  margin-top: 4px;
}
.booking-form textarea.form-control { resize: vertical; min-height: 90px; }
.booking-form .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A96A'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
}

.form-foot-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 320px;
}
.form-foot-note a {
  color: var(--cream-soft);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.form-foot-note a:hover { color: var(--gold); text-decoration-color: var(--gold); }

.form-success {
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(201,169,106,.12);
  border: 1px solid rgba(201,169,106,.32);
  border-radius: 4px;
  color: var(--gold);
  font-size: 14px;
}
.form-success strong { color: var(--gold-bright); }

.form-error {
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(228, 138, 101, 0.10);
  border: 1px solid rgba(228, 138, 101, 0.35);
  border-radius: 4px;
  color: #E48A65;
  font-size: 14px;
  line-height: 1.5;
}
.form-error strong { color: #FFB48F; display: inline-block; margin-right: 4px; }
.form-error a { color: inherit; text-decoration: underline; }

@media (max-width: 575px) {
  .booking-card { padding: 28px 22px 26px; }
}

/* ===================== FAQ ===================== */
.faq-section { background: var(--black); }
.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0 !important;
}
.accordion-button {
  background: transparent !important;
  color: var(--cream) !important;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  padding: 28px 8px;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
}
.accordion-button::after {
  background-image: none;
  content: '+';
  font-family: 'Fraunces', serif;
  font-size: 32px;
  line-height: 1;
  width: auto; height: auto;
  color: var(--gold);
  transition: transform .25s;
  transform: rotate(0);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  background-image: none;
}
.accordion-body {
  padding: 0 8px 28px;
  color: var(--cream-soft);
  font-size: 15px;
  max-width: 760px;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--black-deep);
  color: var(--cream-soft);
  padding: 90px 0 32px;
  border-top: 1px solid var(--line);
}
footer h5 {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 22px;
  font-weight: 600;
}
footer a {
  color: var(--cream-soft);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  font-size: 14px;
  transition: color .2s;
}
footer a:hover { color: var(--gold); }
.footer-brand {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.footer-brand span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 8px;
}
.footer-bottom {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

/* ===================== STICKY CALL PILL ===================== */
.sticky-pill {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--black-elev);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 12px 30px -6px rgba(0,0,0,.6);
  z-index: 1020;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s;
}
.sticky-pill:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.sticky-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,106,.25);
}
.sticky-pill:hover .dot {
  background: var(--black);
  box-shadow: 0 0 0 4px rgba(14,12,9,.25);
}
@media (max-width: 576px) {
  .sticky-pill { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

.divider-leaf {
  text-align: center;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin: 28px 0;
  letter-spacing: .4em;
}

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0,0,0,0.25);
  z-index: 1020;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  color: #fff;
}
.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5), 0 6px 14px rgba(0,0,0,0.3);
  color: #fff;
}
.whatsapp-fab svg { width: 30px; height: 30px; display: block; }
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.6);  opacity: 0;    }
  100% { transform: scale(1.6);  opacity: 0;    }
}
@media (max-width: 576px) {
  .whatsapp-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

/* ===================== SERVICE AREA CHIPS (hero) ===================== */
.service-area-strip {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.service-area-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-chip {
  background: rgba(201, 169, 106, 0.06);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ===================== TRIP TYPE TOGGLE ===================== */
.trip-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px;
}
.trip-type-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.trip-type-option {
  text-align: center;
  padding: 11px 14px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-soft);
  cursor: pointer;
  transition: all .2s ease;
  margin: 0;
  user-select: none;
}
.trip-type-toggle input[type="radio"]:checked + .trip-type-option {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.trip-type-option:hover { color: var(--cream); }
.trip-type-toggle input[type="radio"]:checked + .trip-type-option:hover { color: var(--black); }

/* — Promo banner — */
.trip-promo {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(201, 169, 106, 0.07);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 13px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.trip-promo-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.trip-promo strong { color: var(--gold); font-weight: 700; }

/* — Conditional return-trip fields — */
.trip-return-field {
  display: none;
}
.trip-return-field.is-visible {
  display: block;
  animation: fieldFadeIn .25s ease;
}
@keyframes fieldFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== STEPPER ===================== */
.stepper {
  display: flex;
  align-items: center;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.stepper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,106,.15);
}
.stepper-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
.stepper-btn:hover:not(:disabled) {
  background: rgba(201, 169, 106, 0.12);
  color: var(--gold-bright);
}
.stepper-btn:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: .5;
}
.stepper-input {
  background: transparent;
  border: none;
  color: var(--cream);
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  flex: 1;
  width: 100%;
  padding: 12px 0;
  min-width: 0;
}
.stepper-input:focus {
  outline: none;
  box-shadow: none;
}
/* Hide native spin buttons */
.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.stepper-input[type="number"] {
  -moz-appearance: textfield;
}

/* ===================== LEGAL PAGES ===================== */
.legal-hero {
  padding: 160px 0 60px;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,169,106,.06), transparent 55%),
    var(--black-soft);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  margin-top: 18px;
  color: var(--cream);
}
.legal-hero .lede {
  color: var(--cream-soft);
  font-size: 16px;
  max-width: 540px;
  margin-top: 20px;
}

.demo-banner {
  background: rgba(201,169,106,.08);
  border-left: 3px solid var(--gold);
  color: var(--cream);
  padding: 16px 22px;
  margin-top: 32px;
  font-size: 13px;
  border-radius: 0 4px 4px 0;
  max-width: 640px;
}
.demo-banner strong { color: var(--gold); }

.legal-body {
  padding: 80px 0 110px;
  background: var(--black);
}
.legal-body .legal-content {
  max-width: 760px;
}
.legal-body h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 56px 0 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--cream);
}
.legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin: 32px 0 12px;
}
.legal-body p, .legal-body li {
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 14px;
}
.legal-body ul {
  padding-left: 20px;
  margin-bottom: 18px;
}
.legal-body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-body ol > li {
  margin-bottom: 12px;
  padding-left: 6px;
}
.legal-body ol > li::marker {
  color: var(--gold);
  font-weight: 600;
}
.legal-body ol ul {
  margin-top: 8px;
  margin-bottom: 0;
}
.legal-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--gold-bright); text-decoration-color: var(--gold); }
.legal-body strong { color: var(--cream); }
.legal-body address {
  font-style: normal;
  background: var(--black-elev);
  padding: 22px 26px;
  border-radius: 4px;
  border: 1px solid var(--line);
  font-size: 15px;
  color: var(--cream);
  line-height: 1.8;
  margin: 18px 0 24px;
}

.legal-toc {
  background: var(--black-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 30px;
  margin-bottom: 56px;
  position: sticky;
  top: 90px;
}
.legal-toc h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.legal-toc a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--cream-soft);
  text-decoration: none;
}
.legal-toc a:hover { color: var(--gold); }
.legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 991px) {
  .legal-toc { position: static; margin-bottom: 30px; }
}
