/* N1 Chauffeured — sections + booking page */

.post-hero {
  overflow-x: clip;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.section-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.1rem + 2vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
}

.section-title .gold-accent,
.cta-band-title .gold-accent {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.section-lead {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-muted);
}

/* —— Reveal —— */
[data-reveal] {
  --reveal-ms: 800ms;
  --reveal-delay: 0ms;
  --reveal-distance: 12px;
  --reveal-scale: 0.99;
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, var(--reveal-distance), 0) scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-ms) cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay),
    transform var(--reveal-ms) cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay),
    filter var(--reveal-ms) cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay);
}

[data-reveal]:not(.is-visible) {
  transition: none;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* —— Interactive cards —— */
body.motion-ready .tilt-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transform: perspective(980px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

body.motion-ready .tilt-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(280px circle at var(--px, 50%) var(--py, 50%), rgba(201, 169, 107, 0.2), rgba(201, 169, 107, 0) 62%);
  transition: opacity 0.3s ease;
}

body.motion-ready .tilt-card:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  body.motion-ready .tilt-card {
    transform: none !important;
  }

  body.motion-ready .tilt-card::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.motion-ready .tilt-card,
  body.motion-ready .tilt-card::after {
    transform: none;
    transition: none;
    animation: none;
  }
}

/* —— Pillars —— */
.pillars {
  padding: clamp(40px, 7vw, 72px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.pillar {
  padding: 24px 22px 22px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--bg-elev);
  transition: border-color 0.3s ease;
}

.pillar:hover {
  border-color: rgba(201, 169, 107, 0.3);
}

.pillar-icon {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}

.pillar-title {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.pillar-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Services 2×2 —— */
.services {
  padding: clamp(48px, 8vw, 88px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(201, 169, 107, 0.3);
}

.service-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.service-card:nth-child(even) .service-card-media {
  order: 2;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 28px);
}

.service-card-body h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.service-bullets {
  margin: 0 0 16px;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.service-bullets li {
  margin-bottom: 6px;
}

.service-card-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.text-link {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease, gap 0.25s ease;
}

.text-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.text-link:hover {
  color: var(--gold-soft);
  gap: 12px;
}

.text-link:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 800px) {
  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) .service-card-media {
    order: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Fleet rows —— */
.fleet {
  padding: clamp(48px, 8vw, 88px) 0;
}

.fleet-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 48px);
  padding-bottom: clamp(28px, 5vw, 48px);
  border-bottom: 1px solid var(--rule);
}

.fleet-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.fleet-row--reverse .fleet-row-media {
  order: 2;
}

.fleet-row-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: border-color 0.3s ease;
}

.fleet-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fleet-row:hover .fleet-row-media {
  border-color: rgba(201, 169, 107, 0.3);
}

.fleet-row:hover .fleet-row-media img {
  transform: scale(1.03);
}

.fleet-row-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1.2vw, 1.85rem);
  color: var(--ink);
}

.fleet-row-body p {
  margin: 0 0 16px;
  color: var(--ink-muted);
}

.fleet-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pill {
  font-size: 0.72rem;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  color: var(--ink-muted);
}

.pill strong {
  color: var(--gold);
  font-weight: 600;
}

.btn-sm {
  padding: 11px 18px;
  font-size: 0.62rem;
}

@media (max-width: 768px) {
  .fleet-row,
  .fleet-row--reverse {
    grid-template-columns: 1fr;
  }

  .fleet-row--reverse .fleet-row-media {
    order: 0;
  }
}

/* —— How it works —— */
.how-it-works {
  padding: clamp(48px, 8vw, 88px) 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.hiw-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  position: relative;
}

.hiw-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}

.hiw-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 107, 0.5);
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.hiw-step h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--ink);
}

.hiw-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

@media (max-width: 700px) {
  .hiw-track {
    grid-template-columns: 1fr;
  }

  .hiw-track::before {
    display: none;
  }
}

/* —— Areas —— */
.areas {
  padding: clamp(48px, 8vw, 88px) 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}

.areas-panel--airports {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--surface);
}

.areas-lead {
  color: var(--ink-muted);
}

.areas-list {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.airport-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.airport-list li {
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  font-size: 0.9rem;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Testimonials —— */
.testimonials {
  padding: clamp(48px, 8vw, 88px) 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--rule);
}

.t-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.t-scroll::-webkit-scrollbar {
  height: 6px;
}

.t-scroll::-webkit-scrollbar-thumb {
  background: var(--gold-strong);
  border-radius: 3px;
}

.t-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--surface);
  transition: border-color 0.3s ease;
}

.t-card:hover {
  border-color: rgba(201, 169, 107, 0.3);
}

.t-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}

.t-quote {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.6;
}

.t-by {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.t-loc {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--ink-faint);
}

@media (min-width: 1100px) {
  .t-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }

  .t-card {
    flex: none;
  }
}

/* —— CTA band —— */
.cta-band {
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  border-top: 1px solid var(--gold);
}

.cta-band-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2rem);
  color: var(--ink);
}

.cta-band-copy p {
  margin: 0;
  color: var(--ink-muted);
}

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

/* —— Hero trust chips —— */
.hero-trust {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li span {
  color: var(--gold);
  font-weight: 700;
}

/* —— Stats band —— */
.stats-band {
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-elev);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
}

.stat {
  text-align: left;
  padding: 6px 0;
  border-left: 1px solid var(--rule);
  padding-left: clamp(12px, 2vw, 20px);
}

.stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1rem + 1.4vw, 2.1rem);
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .stats-band {
    background: linear-gradient(180deg, #11151b 0%, #141920 100%);
    border-top-color: rgba(255, 255, 255, 0.12);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat {
    border-left: 0;
    padding: 14px 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
  }
  .stat:first-child { padding-left: 14px; }

  .stat-label { color: #b8b4ad; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
  }
  .stat:first-child {
    padding-top: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* —— FAQ —— */
.faq {
  padding: clamp(48px, 8vw, 88px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.faq-head {
  margin-bottom: 0;
  position: sticky;
  top: 110px;
}

.faq-call {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 107, 0.35);
}

.faq-call:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}

.faq-list {
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s ease;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }

.faq-q:hover { color: var(--gold-soft); }

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0);
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  padding: 0 0 22px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 56ch;
}

.faq-a p { margin: 0; }

@media (max-width: 800px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-head { position: static; }
}

/* —— Sticky mobile CTA —— */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(201, 169, 107, 0.35);
  border-radius: 6px;
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.sticky-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sticky-cta-call:hover { color: var(--gold); border-color: rgba(201, 169, 107, 0.6); }

.sticky-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 12px 14px;
  border: 1px solid #25d366;
  border-radius: 3px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.sticky-cta-wa:hover {
  color: #ffffff;
  border-color: #1fbe5a;
  background: #1fbe5a;
}

.sticky-cta-book.btn {
  flex: 1 1 auto;
  padding: 12px 14px;
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  .sticky-cta { display: flex; }
  body:not(.page-booking) { padding-bottom: 74px; }
  body.page-booking { padding-bottom: 0; }
  .page-booking .sticky-cta { display: none !important; }
  .wa-chat-widget { right: 12px !important; bottom: 84px !important; }
  .page-booking .wa-chat-widget { bottom: max(18px, env(safe-area-inset-bottom)) !important; }
  .wa-chat-fab { display: none !important; }

  .stats-band {
    background: linear-gradient(180deg, #161d27 0%, #131922 100%);
  }

  .pillar,
  .service-card,
  .fleet-row-media,
  .areas-panel--airports,
  .t-card,
  .faq-item {
    border-color: rgba(220, 193, 141, 0.22);
    background: linear-gradient(180deg, rgba(26, 31, 40, 0.96) 0%, rgba(18, 22, 29, 0.96) 100%);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
  }

  .section-lead,
  .pillar-copy,
  .fleet-row-body p,
  .hiw-step p,
  .areas-lead,
  .areas-list,
  .airport-list li,
  .t-quote,
  .faq-a {
    color: #b8beca;
  }
}

/* —— Breadcrumbs —— */
.breadcrumbs {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumbs a:hover { color: var(--gold-soft); }

.breadcrumbs span[aria-current] { color: var(--ink-muted); }

/* —— Contact highlight —— */
.footer-col--contact {
  position: relative;
  border-radius: 4px;
  padding: 14px 16px;
  margin: -14px -16px;
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  border: 1px solid transparent;
}

.footer-col--contact.is-highlighted {
  background: rgba(201, 169, 107, 0.06);
  border-color: rgba(201, 169, 107, 0.4);
  box-shadow: 0 0 0 6px rgba(201, 169, 107, 0.05);
  animation: contactPulse 1.6s ease 1;
}

.footer-col--contact.is-highlighted h4 {
  color: var(--gold-soft);
}

@keyframes contactPulse {
  0% {
    background: rgba(201, 169, 107, 0.18);
    border-color: var(--gold);
    box-shadow: 0 0 0 0 rgba(201, 169, 107, 0.45);
  }
  60% {
    background: rgba(201, 169, 107, 0.09);
    border-color: rgba(201, 169, 107, 0.55);
    box-shadow: 0 0 0 14px rgba(201, 169, 107, 0);
  }
  100% {
    background: rgba(201, 169, 107, 0.06);
    border-color: rgba(201, 169, 107, 0.4);
    box-shadow: 0 0 0 6px rgba(201, 169, 107, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-col--contact.is-highlighted { animation: none; }
}

.footer-hours {
  margin-top: 10px !important;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.footer-col--contact address {
  font-style: normal;
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* —— Book page —— */
.book-intro {
  padding: 28px 0 8px;
}

.book-back {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.book-back:hover {
  color: var(--gold-soft);
}

.book-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  color: var(--ink);
}

.book-lead {
  margin: 0;
  max-width: 42rem;
  color: var(--ink-muted);
}

.booking {
  padding: 24px 0 90px;
}

.booking > .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.booking-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.5rem;
}

.booking-copy p {
  margin: 0;
  color: var(--ink-muted);
}

.booking-copy {
  max-width: 68ch;
}

.booking-widget {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  min-height: 1300px;
  max-height: none;
  overflow: visible;
  -webkit-overflow-scrolling: auto;
  overscroll-behavior: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-widget > [data-kf-booking-widget],
.booking-widget iframe {
  display: block;
  width: 100% !important;
  max-width: none !important;
  min-height: 1300px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  max-height: none !important;
}

.booking-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

.booking-note a {
  color: var(--gold-soft);
}

.booking-page {
  padding: 32px 0 48px;
}

@media (max-width: 960px) {
  .booking-widget,
  .booking-widget > [data-kf-booking-widget],
  .booking-widget iframe {
    min-height: 1450px !important;
  }
}

@media (max-width: 640px) {
  .booking-widget,
  .booking-widget > [data-kf-booking-widget],
  .booking-widget iframe {
    min-height: 1650px !important;
  }
}
