/* =================================================================
   CBRLP — Stylesheet
   Pure CSS, no external dependencies. Inter-like system font stack.
   ================================================================= */

:root {
  --bg:        #FFFFFF;
  --ink:       #0A0A0A;
  --ink-soft:  #4A4A4A;
  --ink-mute:  #6B6B6B;
  --red:       #E63946;
  --orange:    #FF6B35;
  --line:      #E5E5E6;
  --surface:   #efeff0;
  --pill-bg:   rgba(245, 245, 245, 0.72);
  --pill-bd:   rgba(255, 255, 255, 0.55);
  --shadow:    0 8px 30px rgba(0, 0, 0, 0.08);
  --radius:    999px;
  --maxw:      1400px;
  --font:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
}
/* WebKit / Chromium / Edge */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 9999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.4); background-clip: padding-box; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 32px;
}

/* Quiet text link */
.link-quiet {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  opacity: 0.82;
  transition: opacity .2s;
}
.link-quiet:hover { opacity: 1; }

/* Pill buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: background-color .2s ease, color .2s ease, transform .15s ease, opacity .2s;
  white-space: nowrap;
}
.btn-pill:active { transform: translateY(1px); }
.btn-pill--dark {
  background: #000;
  color: #fff;
}
.btn-pill--dark:hover { background: #1d1d1f; }
.btn-pill--cta {
  padding: 10px 20px;
  font-size: 14px;
  gap: 8px;
}
.btn-pill--lg {
  padding: 13px 24px;
  font-size: 15px;
}
.btn-pill--ghost {
  background: #EDEDED;
  color: #1a1a1a;
}
.btn-pill--ghost:hover { background: #E2E2E2; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1d1d1f;
  color: #fff;
  border-radius: 0 0 32px 32px;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.52));
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.hero__logo-link {
  display: inline-flex;
  line-height: 0;
  margin-bottom: -18px;
}
.hero__logo {
  height: 92px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.hero__title {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 20ch;
}
.hero__title-soft {
  color: rgba(147, 197, 253, 0.78);
  font-weight: 700;
}
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  font-weight: 400;
}
.hero__actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  transition: opacity .35s ease, transform .35s ease;
}
.hero__scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}
.hero__scroll-mouse {
  display: block;
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  position: relative;
}
.hero__scroll-wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: hero-scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-wheel {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-wheel { animation: none; opacity: 0.7; }
}

/* Arrow text link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #06c;
  transition: opacity .2s;
}
.link-arrow svg { transition: transform .2s; }
.link-arrow:hover { opacity: 0.7; }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow--light { color: #fff; }

/* Light pill (on dark hero) */
.btn-pill--light {
  background: #fff;
  color: #000;
  padding: 11px 20px;
  font-size: 14px;
  gap: 8px;
}
.btn-pill--light:hover { background: #f0f0f0; }
.btn-pill--light svg {
  width: 14px;
  height: 14px;
}
.btn-pill--green {
  background: #22c55e;
  color: #fff;
  padding: 11px 20px;
  font-size: 14px;
  gap: 8px;
}
.btn-pill--green:hover { background: #16a34a; }
.btn-pill--green svg {
  width: 14px;
  height: 14px;
}

/* ---------- Booking search bar ---------- */
.book {
  background: #fff;
  padding: 40px 0 0;
  overflow: visible;
}
.book-card {
  background: #fff;
  border-radius: 28px;
  border: 2.5px solid #000;
  box-shadow: none;
  padding: 22px 24px 20px;
  overflow: visible;
  color: #1d1d1f;
}
.book-card__row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}
.book-field--location {
  min-width: 0;
}
.book-field {
  min-width: 0;
  position: relative;
}
.book-field__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  min-height: 22px;
}
.book-card .book-field__label {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
}
.book-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b6b6b;
  cursor: pointer;
  user-select: none;
}
.book-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.book-switch__track {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: #d9d9d9;
  position: relative;
  flex-shrink: 0;
  transition: background-color .2s;
}
.book-switch__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  transition: transform .2s;
}
.book-switch input:checked + .book-switch__track { background: #111; }
.book-switch input:checked + .book-switch__track::after { transform: translateX(16px); }

.book-card .book-field__box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f7;
  border-radius: 10px;
  padding: 0 12px;
  height: 48px;
  color: #1d1d1f;
}
.book-card .book-field__box svg {
  color: #6b7280;
  flex-shrink: 0;
}
.book-field__box input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: #1a1a1a;
  height: 100%;
}
.book-field__box--static {
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}
.book-card .book-field__value {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: #1d1d1f;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.book-card .book-picker {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: #1d1d1f;
  height: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.book-picker__val {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.book-card .book-picker.is-active { color: #2563eb; }
.book-card .book-field__chev { flex-shrink: 0; color: rgba(0, 0, 0, 0.35); }
.book-field__box--split .book-picker {
  flex: 1;
  min-width: 0;
}
.book-card .book-field__sep {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.book-card__bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.book-card .book-map-link {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-align: left;
  white-space: normal;
  line-height: 1.45;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
}
.book-card .book-map-link:hover { color: #1d4ed8; }
.book-map-link--field {
  display: none;
}
.book-card .btn-pill--light {
  background: #1d1d1f;
  color: #fff;
}
.book-card .btn-pill--light:hover { background: #000; }
.book-search {
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 14px;
  gap: 8px;
}
.book-search svg {
  width: 14px;
  height: 14px;
}

/* Custom date/time popover */
.book-popover {
  position: fixed;
  z-index: 720;
  display: none;
  background: #fff;
  border: 1.5px solid #d8d8d8;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  touch-action: manipulation;
}
.book-popover.is-open { display: block; }
.book-popover__heading {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.2;
}
.book-popover.is-flip::before {
  top: auto;
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.book-popover::before {
  content: "";
  position: absolute;
  top: -6px;
  left: var(--pop-arrow-x, 24px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  filter: drop-shadow(0 -1px 0 #d8d8d8);
  pointer-events: none;
}
.book-popover__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.book-popover__month {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-align: center;
  flex: 1;
}
.book-popover__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  flex-shrink: 0;
}
.book-popover__arrow:hover { background: #f4f4f4; }
.book-popover__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.book-popover__weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #9a9a9a;
  padding: 2px 0;
}
.book-popover__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.book-popover__day {
  aspect-ratio: 1;
  min-width: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.book-popover__day:hover:not(:disabled) { background: #f0f0f0; }
.book-popover__day.is-selected {
  background: #111;
  color: #fff;
}
.book-popover__day.is-today:not(.is-selected) {
  border: 1.5px solid #111;
}
.book-popover__day:disabled {
  opacity: 0.28;
  cursor: default;
}
.book-popover__day.is-closed:disabled {
  opacity: 0.22;
  color: #b0b0b0;
  text-decoration: line-through;
  background: #f5f5f5;
}
.book-popover__day.is-empty {
  visibility: hidden;
  pointer-events: none;
}
.book-popover__time-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
  height: 200px;
}
.book-popover__colon {
  align-self: center;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}
.book-popover__col {
  flex: 1;
  max-width: 72px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafafa;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.book-popover__col::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.book-popover__col-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  scroll-snap-align: center;
  cursor: pointer;
  padding: 0;
}
.book-popover__col-item.is-selected {
  background: #111;
  color: #fff;
}
.book-popover__col-item:hover:not(.is-selected) {
  background: #efefef;
}

/* Map overlay */
.map-overlay {
  position: fixed;
  inset: 0;
  z-index: 580;
  display: none;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}
.map-overlay.is-open {
  display: flex;
}
.map-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.map-overlay__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.map-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1f;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.map-overlay__close svg {
  width: 22px;
  height: 22px;
}
.map-overlay__close:hover {
  background: #f5f5f7;
  border-color: rgba(0, 0, 0, 0.12);
}
.map-overlay__frame {
  position: relative;
  z-index: 0;
  isolation: isolate;
  flex: 1;
  min-height: 0;
  background: #edf0f3;
}
.map-overlay__canvas,
.map-overlay__canvas.leaflet-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.map-overlay__iframe {
  position: absolute;
  inset: 0 0 -56px 0;
  width: 100%;
  height: calc(100% + 56px);
  border: 0;
  display: block;
  z-index: 0;
}
.map-overlay__card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 50;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 28px 32px 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  max-width: 560px;
  width: calc(100% - 56px);
}
.map-overlay__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 10px;
  line-height: 1.2;
}
.map-overlay__addr {
  font-size: clamp(15px, 1.4vw, 17px);
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 18px;
}
.map-overlay__gmaps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-overlay__gmaps svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.map-overlay__gmaps:hover { color: #1d4ed8; }

@media (min-width: 1025px) {
  .map-overlay__close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  .map-overlay__close svg {
    width: 20px;
    height: 20px;
  }
  .map-overlay__card {
    left: 32px;
    bottom: 32px;
    max-width: 520px;
    padding: 26px 30px 24px;
    border-radius: 24px;
  }
  .map-overlay__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .map-overlay__addr {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .map-overlay__gmaps {
    font-size: 15px;
    gap: 8px;
  }
  .map-overlay__gmaps svg {
    width: 16px;
    height: 16px;
  }
  .map-overlay__canvas .leaflet-top.leaflet-right {
    right: 80px;
  }
}

.map-pin-wrap { background: none !important; border: 0 !important; }
.map-pin {
  position: relative;
  width: 36px;
  height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.map-pin__dot {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: #111;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.map-pin__dot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}
.map-pin__pulse {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
  animation: mapPulse 1.8s ease-out infinite;
}
@keyframes mapPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(2.6); opacity: 0; }
}

.map-overlay__canvas .leaflet-top.leaflet-right {
  top: 24px;
  right: 84px;
}
.map-overlay__canvas .leaflet-control-attribution {
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(0, 0, 0, 0.18);
  font-size: 7px;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0;
  margin: 0 !important;
}
.map-overlay__canvas .leaflet-control-attribution a {
  color: inherit;
  text-decoration: none;
}
.map-overlay__canvas .leaflet-control-zoom {
  border: 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  border-radius: 10px !important;
  overflow: hidden;
  margin: 16px 0 0 16px !important;
}
.map-overlay__canvas .leaflet-control-zoom a {
  width: 34px !important;
  height: 34px !important;
  line-height: 34px !important;
  font-size: 16px !important;
  color: #111 !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.94) !important;
}
.map-overlay__canvas .leaflet-control-zoom a:hover { background: #fff !important; }
.map-overlay__canvas .leaflet-bar { border: 0 !important; }

/* ---------- Configurator overlay ---------- */
.cfg-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #fff;
  display: none;
  overflow: hidden;
}
.cfg-overlay.is-open {
  display: block;
}
.cfg-overlay__panel {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cfg-overlay__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 14px 24px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0f0f0;
}
.cfg-overlay__head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cfg-overlay__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.cfg-overlay__close svg {
  width: 16px;
  height: 16px;
}
.cfg-overlay__close:hover {
  background: #f5f5f5;
  border-color: #d4d4d4;
}
.cfg-overlay__label {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  text-align: left;
}
.cfg-filter {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.cfg-filter__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  flex: 1 1 220px;
}
.cfg-filter__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #6b7280;
  padding-left: 12px;
}
.cfg-filter__chips {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 42px;
  padding: 0 6px 0 4px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 999px;
}
.cfg-filter__chips .book-picker {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-align: left;
  cursor: pointer;
}
.cfg-filter__chips .book-picker.is-active {
  color: #2563eb;
}
.cfg-filter__sep {
  width: 1px;
  height: 16px;
  background: #d4d4d8;
  flex-shrink: 0;
}
.cfg-filter__submit {
  height: 42px;
  padding: 0 18px;
  width: auto;
  flex: 0 0 auto;
  font-size: 13px;
  margin-left: auto;
}
.cfg-overlay__body {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 24px 48px;
}
.cfg-overlay__count {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #6b7280;
  margin: 0 0 20px;
}
.cfg-staff-tools {
  display: none;
  align-items: center;
  gap: 10px;
  margin: -8px 0 16px;
}
.page--staff-booking .cfg-staff-tools:not([hidden]) {
  display: flex;
}
.cfg-staff-tools__label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}
.cfg-staff-tools__select {
  min-width: 168px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
}
.cfg-staff-tools__select:focus {
  outline: none;
  border-color: #cbd5e1;
}

.cfg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.cfg-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow .2s, transform .2s;
}
.cfg-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.cfg-card__media {
  position: relative;
  background: #f3f4f6;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.cfg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cfg-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
}
.cfg-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin: 0;
}
.cfg-card__features-label {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  margin: 12px 0 0;
}
.cfg-card__features {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 6px;
}
.cfg-card__feat {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-size: 10px;
  line-height: 1.25;
  color: #374151;
}
.cfg-card__feat svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: #9ca3af;
}
.cfg-card__feat span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cfg-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}
.cfg-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.cfg-card__price-unit {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
.cfg-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s;
}
.cfg-card__btn svg {
  width: 11px;
  height: 11px;
}
.cfg-card__btn:hover {
  background: #2d2d2d;
}

@media (min-width: 1025px) {
  .cfg-filter__chips {
    height: 36px;
  }
  .cfg-filter__submit {
    height: 36px;
  }
  .cfg-overlay__body {
    padding: 28px 32px 56px;
  }
  .cfg-overlay__count {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .cfg-grid {
    gap: 24px;
  }
  .cfg-card {
    border-radius: 24px;
  }
  .cfg-card__media {
    aspect-ratio: 16 / 9;
  }
  .cfg-card__body {
    padding: 22px 22px 24px;
  }
  .cfg-card__title {
    font-size: 17px;
  }
  .cfg-card__features-label {
    font-size: 12px;
    margin-top: 14px;
  }
  .cfg-card__features {
    gap: 11px 8px;
    margin-top: 12px;
  }
  .cfg-card__feat {
    font-size: 11px;
    gap: 5px;
  }
  .cfg-card__feat svg {
    width: 14px;
    height: 14px;
  }
  .cfg-card__foot {
    padding-top: 18px;
  }
  .cfg-card__price {
    font-size: 22px;
  }
  .cfg-card__price-unit {
    font-size: 14px;
  }
  .cfg-card__btn {
    padding: 7px 14px;
    font-size: 12px;
    gap: 4px;
  }
  .cfg-card__btn svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 1280px) {
  .cfg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cfg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .cfg-overlay__head {
    padding: 12px 18px 14px;
    transition: gap 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding-bottom 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .cfg-overlay__filter-wrap {
    display: grid;
    grid-template-rows: 1fr;
    min-height: 0;
    transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    opacity: 1;
  }
  .cfg-overlay__filter-wrap > .cfg-filter {
    min-height: 0;
    overflow: hidden;
  }
  .cfg-overlay__body {
    padding: 20px 18px 40px;
  }
  .cfg-filter {
    align-items: stretch;
  }
  .cfg-filter__group {
    flex: 1 1 100%;
  }
  .cfg-filter__submit {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
  .cfg-overlay__head.is-filter-hidden {
    gap: 0;
    padding-bottom: 12px;
  }
  .cfg-overlay__head.is-filter-hidden .cfg-overlay__filter-wrap {
    grid-template-rows: 0fr;
    opacity: 0;
    pointer-events: none;
  }
  .cfg-overlay__count {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .cfg-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cfg-card__media {
    aspect-ratio: 16 / 9;
  }
  .cfg-card__body {
    padding: 18px 18px 20px;
  }
  .cfg-card__title {
    font-size: 16px;
  }
  .cfg-card__features-label {
    font-size: 11px;
    margin-top: 12px;
  }
  .cfg-card__features {
    gap: 10px 8px;
    margin-top: 10px;
  }
  .cfg-card__feat {
    font-size: 11px;
    gap: 5px;
  }
  .cfg-card__feat svg {
    width: 14px;
    height: 14px;
  }
  .cfg-card__foot {
    padding-top: 16px;
  }
  .cfg-card__price {
    font-size: 20px;
  }
  .cfg-card__price-unit {
    font-size: 13px;
  }
  .cfg-card__btn {
    padding: 7px 13px;
    font-size: 12px;
    gap: 4px;
  }
  .cfg-card__btn svg {
    width: 12px;
    height: 12px;
  }
}

/* ---------- How It Works ---------- */
.how {
  padding: 72px 0 32px;
  background: #fff;
}
.how__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.how__eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d1d1f;
  background: #f5f5f7;
  border-radius: 999px;
}
.how__title {
  margin: 0 0 14px;
  font-family: 'Pacifico', 'Inter', system-ui, sans-serif;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
  color: #1d1d1f;
}
.how__title-em {
  display: inline-block;
  padding: 0 0.12em 0.05em;
  background: linear-gradient(135deg, #1d1d1f 0%, #6e6e73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 700;
}
.how__lead {
  margin: 0 auto;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: #6e6e73;
  max-width: none;
  white-space: nowrap;
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.how-steps__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 26px 26px 28px;
  background: #fff;
  border: 1.5px solid #000;
  border-radius: 22px;
  overflow: hidden;
}
.how-steps__item::before {
  content: attr(data-bignum);
  position: absolute;
  right: -8px;
  bottom: -22px;
  font-size: 128px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #f5f5f7;
  pointer-events: none;
  user-select: none;
  transition: color .3s ease;
}
.how-steps__item:hover {
  border-color: #000;
}
.how-steps__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.how-steps__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #86868b;
}
.how-steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f5f5f7;
  color: #1d1d1f;
  transition: background .3s ease, color .3s ease;
}
.how-steps__item:hover .how-steps__icon {
  background: #1d1d1f;
  color: #fff;
}
.how-steps__title {
  margin: 8px 0 0;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  position: relative;
  z-index: 1;
}
.how-steps__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6e6e73;
  position: relative;
  z-index: 1;
}

.how-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.how-band__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  padding: 36px 38px 34px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.how-band__card:hover {
  transform: translateY(-3px);
}
.how-band__card--light {
  background: linear-gradient(160deg, #ffffff 0%, #f5f5f7 100%);
  border: 1px solid #e5e5e7;
  color: #1d1d1f;
}
.how-band__card--dark {
  background: radial-gradient(120% 140% at 100% 0%, #2b2b2f 0%, #0a0a0c 60%);
  border: 1px solid #1d1d1f;
  color: #fff;
}
.how-band__card--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px 200px at 88% 12%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(240px 160px at 10% 100%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}
.how-band__card > * {
  position: relative;
  z-index: 1;
}
.how-band__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e6e73;
}
.how-band__eyebrow--light {
  color: rgba(255,255,255,0.6);
}
.how-band__title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: inherit;
  max-width: 22ch;
}
.how-band__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6e6e73;
  max-width: 42ch;
}
.how-band__text--light {
  color: rgba(255,255,255,0.72);
}
.how-band__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  text-decoration: none;
  cursor: pointer;
  transition: gap .25s ease, color .2s ease;
  align-self: flex-start;
}
.how-band__link svg {
  flex-shrink: 0;
  transition: transform .25s ease;
}
.how-band__link:hover {
  color: #000;
  gap: 12px;
}
.how-band__link:hover svg {
  transform: translateX(2px);
}
.how-band__link--solid {
  padding: 12px 22px 12px 24px;
  border-radius: 999px;
  background: #fff;
  color: #1d1d1f;
}
.how-band__link--solid:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .how {
    padding: 60px 0 24px;
  }
  .how__head {
    margin-bottom: 44px;
  }
  .how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .how-steps__item {
    min-height: 200px;
  }
  .how-steps__item::before {
    font-size: 112px;
  }
}

@media (max-width: 640px) {
  .how {
    padding: 44px 0 20px;
  }
  .how__head {
    margin-bottom: 32px;
    text-align: left;
  }
  .how__title {
    font-size: clamp(26px, 8vw, 34px);
  }
  .how__lead {
    white-space: normal;
    max-width: 100%;
    margin: 0;
    text-align: left;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .how-steps__item {
    min-height: 0;
    padding: 22px 22px 24px;
  }
  .how-steps__item::before {
    font-size: 96px;
    right: -4px;
    bottom: -14px;
  }
  .how-band {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .how-band__card {
    min-height: 0;
    padding: 28px 26px 26px;
  }
  .how-band__title {
    font-size: 22px;
  }
}

/* ---------- Rental / CTA cards ---------- */
.rent-duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rent-duo__card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
}
.rent-duo__card--auto {
  background-position: center 35%;
}
.rent-duo__card--plain {
  background-color: var(--surface);
  background-image: none;
  border: 1px solid var(--line);
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
}
.rent-duo__card--plain .rent-duo__shade {
  display: none;
}
.rent-duo__card--plain .rent-duo__content {
  text-align: left;
  color: #111;
  padding: 36px 40px 40px;
}
.rent-duo__card--plain .rent-duo__title {
  color: #111;
}
.rent-duo__card--plain .rent-duo__text {
  color: #6b7280;
  margin-left: 0;
  max-width: none;
}
.rent-duo__card--plain .rent-duo__contact-icon {
  background: #fff;
  border-color: #e5e7eb;
  color: #374151;
}
.rent-duo__card--plain .rent-duo__contact-label {
  color: #9ca3af;
}
.rent-duo__card--plain .rent-duo__contact-value {
  color: #111;
}
.rent-duo__card--plain a.rent-duo__contact-value:hover {
  opacity: 1;
  color: #2563eb;
}
.rent-duo__card--cta {
  background-position: 72% center;
}
.rent-duo__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.02) 100%);
}
.rent-duo__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 48px 44px;
  text-align: right;
  color: #fff;
}
.rent-duo__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.rent-duo__text {
  margin: 0 0 20px 0;
  margin-left: auto;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.94);
}
.rent-duo__card--contact {
  grid-column: 1 / -1;
  min-height: 0;
  align-items: stretch;
  justify-content: flex-start;
}
.rent-duo__card--premium {
  position: relative;
  background: transparent;
  background-image: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.rent-duo__card--premium .rent-duo__content {
  position: relative;
  z-index: 1;
  color: #1d1d1f;
  padding: 0;
  text-align: center;
}
.rent-duo__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d1d1f;
  background: #f5f5f7;
  border-radius: 999px;
}
.rent-duo__card--premium .rent-duo__title {
  color: #1d1d1f;
  font-family: 'Pacifico', 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 auto 10px;
  max-width: 24ch;
}
.rent-duo__text--contact {
  margin: 0 auto 40px;
  max-width: none;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: #6e6e73;
  white-space: nowrap;
}
.rent-duo__card--premium .rent-duo__contact {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  padding: 28px 28px 30px;
  background: #fff;
  border: 1.5px solid #000;
  border-radius: 22px;
  overflow: hidden;
}
.rent-duo__card--premium .rent-duo__contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f5f5f7;
  border: 0;
  color: #1d1d1f;
  transition: background .3s ease, color .3s ease;
}
.rent-duo__card--premium .rent-duo__contact-icon svg {
  width: 20px;
  height: 20px;
}
.rent-duo__card--premium .rent-duo__contact:hover .rent-duo__contact-icon {
  background: #1d1d1f;
  color: #fff;
}
.rent-duo__card--premium .rent-duo__contact-body {
  align-items: flex-start;
  text-align: left;
  gap: 6px;
  width: 100%;
}
.rent-duo__card--premium .rent-duo__contact-label {
  color: #86868b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.rent-duo__card--premium .rent-duo__contact-value {
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color .2s ease;
}
.rent-duo__card--premium a.rent-duo__contact-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rent-duo__card--premium a.rent-duo__contact-value::after {
  content: "→";
  font-size: 15px;
  color: #86868b;
  transition: transform .25s ease, color .2s ease;
}
.rent-duo__card--premium a.rent-duo__contact-value:hover {
  opacity: 1;
  color: #000;
}
.rent-duo__card--premium a.rent-duo__contact-value:hover::after {
  color: #000;
  transform: translateX(3px);
}
.rent-duo__content--contact {
  text-align: left;
  width: 100%;
  max-width: none;
}
.rent-duo__content--contact .rent-duo__title {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.rent-duo__card--premium .rent-duo__content--contact {
  text-align: center;
}
.rent-duo__card--premium .rent-duo__content--contact .rent-duo__title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.rent-duo__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rent-duo__contact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rent-duo__contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.rent-duo__contact-icon svg {
  width: 18px;
  height: 18px;
}
.rent-duo__contact-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.rent-duo__contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.rent-duo__contact-value {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  transition: opacity .2s;
}
a.rent-duo__contact-value:hover {
  opacity: 0.82;
}

@media (min-width: 769px) {
  .rent-duo__content--contact {
    margin-bottom: 0;
  }
  .rent-duo__content--contact .rent-duo__title {
    margin-bottom: 10px;
  }
  .rent-duo__contacts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
  }
  .rent-duo__contact {
    min-width: 0;
  }
  .rent-duo__contact-value {
    word-break: break-word;
  }
}

/* =================================================================
   Footer — Mingers-style: rounded CTA banner + 4 title-list columns
   ================================================================= */

/* =================================================================
   Footer — Mingers-style: rounded CTA banner + 4 title-list columns
   ================================================================= */

/* ---------- CTA banner (same card style as rent-duo) ---------- */
.footer-cta {
  background: #fff;
  padding: 40px 0 72px;
}
.footer-cta .rent-duo__grid {
  padding: 0;
}

/* ---------- Footer body ---------- */
.site-footer {
  background: #000;
  color: #fff;
  padding: 0 0 32px;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  border-top: 0;
}

/* 4 columns — each: title | list */
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0 56px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-col--newsletter { gap: 12px; }
.footer-col__title {
  font-size: 15px;
  font-weight: 700;
  color: #0b0f38;
  margin: 0;
}
.footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col__list li {
  font-size: 14px;
  line-height: 1.4;
  color: #6b7280;
}
.footer-col__list a {
  color: #6b7280;
  transition: color .2s;
}
.footer-col__list a:hover { color: #0b0f38; }

.footer-col__sub {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 8px;
  line-height: 1.5;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}
.footer-newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  color: #0b0f38;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.footer-newsletter__input::placeholder { color: #9ca3af; }
.footer-newsletter__input:focus {
  border-color: #3d5cff;
  box-shadow: 0 0 0 3px rgba(61, 92, 255, 0.15);
}
.footer-newsletter__btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: #1e3fff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background-color .2s;
}
.footer-newsletter__btn:hover { background: #1732d6; }
.footer-newsletter__fine {
  font-size: 11px;
  line-height: 1.4;
  color: #9ca3af;
  margin: 4px 0 0;
}
.footer-newsletter__fine a {
  color: #6b7280;
  text-decoration: underline;
  text-decoration-color: #e5e7eb;
}

/* Bottom bar */
.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 22px 0 18px;
  flex-wrap: wrap;
}
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-footer__legal a {
  color: #fff;
  font-size: 13px;
  transition: color .2s;
}
.site-footer__legal a:hover { color: rgba(255, 255, 255, 0.72); }
.site-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.site-footer__extras {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 4px 0 0;
}
.site-footer__badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
}
.site-footer__badge {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}
.site-footer__badge img {
  display: block;
  height: 52px;
  width: auto;
}
.site-footer__dev img {
  display: block;
  height: 58px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer__dev {
  display: block;
  flex: 0 0 auto;
  margin-left: auto;
  line-height: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .container { padding-inline: 18px; }
  .hero { min-height: 100svh; }
  .hero__logo { height: 80px; }
  .hero__inner { gap: 8px; }
  .hero__logo-link { margin-bottom: -14px; }
  .hero__title { font-size: 26px; }
  .book { padding: 28px 0 0; }
  .book-card { padding: 18px 16px 16px; }
  .book-card__row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .book-field--location { grid-column: 1 / -1; }
  .book-card__bar { flex-direction: column; align-items: stretch; gap: 12px; }
  .book-search { justify-content: center; width: 100%; }
  .book-map-link--field {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
  }
  .book-map-link--bar {
    display: none;
  }
  .cfg-filter .book-search {
    width: 100%;
  }
  .book-field__value,
  .book-picker {
    font-size: 16px;
  }
  .map-overlay__close {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .map-overlay__close svg {
    width: 20px;
    height: 20px;
  }
  .map-overlay__card {
    left: 16px;
    right: 16px;
    bottom: 20px;
    max-width: none;
    width: auto;
    padding: 24px 26px 22px;
    border-radius: 20px;
  }
  .map-overlay__title { font-size: 22px; margin-bottom: 8px; }
  .map-overlay__addr { font-size: 16px; margin-bottom: 16px; }
  .map-overlay__gmaps { font-size: 16px; }
  .map-overlay__gmaps svg { width: 15px; height: 15px; }
  .footer-cta { padding: 24px 0 44px; }

  .rent-duo__grid { grid-template-columns: 1fr; gap: 14px; }
  .rent-duo__card { min-height: 360px; }
  .rent-duo__card--premium { min-height: 0; }
  .rent-duo__card--plain { min-height: 0; }
  .rent-duo__card--plain .rent-duo__content { padding: 28px 24px 32px; }
  .rent-duo__content { padding: 32px 24px; text-align: left; }
  .rent-duo__title { font-size: 28px; }
  .rent-duo__text { font-size: 13px; max-width: 100%; margin-left: 0; }
  .rent-duo__card--contact {
    min-height: 0;
    align-items: stretch;
  }
  .rent-duo__card--premium .rent-duo__content {
    padding: 0;
  }
  .rent-duo__card--premium .rent-duo__content--contact {
    text-align: left;
  }
  .rent-duo__card--premium .rent-duo__content--contact .rent-duo__title {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: 100%;
  }
  .rent-duo__text--contact {
    margin: 0 0 28px;
    text-align: left;
    max-width: 100%;
    font-size: 15px;
    white-space: normal;
  }
  .rent-duo__content--contact {
    width: 100%;
    max-width: 100%;
  }
  .rent-duo__content--contact .rent-duo__title {
    margin-bottom: 16px;
  }
  .rent-duo__contacts {
    flex-direction: column;
    gap: 14px;
  }
  .rent-duo__card--premium .rent-duo__contact {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
  }
  .rent-duo__card--premium .rent-duo__contact-body {
    align-items: flex-start;
    text-align: left;
  }
  .rent-duo__contact-value {
    font-size: 14px;
    word-break: break-word;
  }

  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
    padding: 32px 0 44px;
  }
  .footer-col--newsletter { grid-column: 1 / -1; }

  .site-footer { padding-bottom: 28px; }
  .site-footer__bar {
    margin-top: 12px;
    padding: 20px 0 14px;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }
  .site-footer__legal { flex-wrap: wrap; gap: 14px; }
  .site-footer__legal a { font-size: 11px; }
  .site-footer__copy { font-size: 11px; }

  .site-footer__extras {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 2px;
  }
  .site-footer__badges { gap: 8px; }
  .site-footer__dev { margin-left: 0; }
  .site-footer__badge img { height: 38px; }
  .site-footer__dev img { height: 54px; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .hero__logo { height: 72px; }
  .hero__title { font-size: 23px; }
  .hero__sub { font-size: 15px; }
  .book-card__row { grid-template-columns: 1fr; }
  .btn-pill--lg { padding: 11px 20px; font-size: 14px; }
  .hero__actions { gap: 16px; }

  .site-footer__badge img { height: 38px; }
  .site-footer__dev img { height: 58px; }

  .footer-newsletter { flex-direction: column; align-items: stretch; }
  .footer-newsletter__btn { padding: 12px; }
}

/* ---------- Car detail overlay (configurator) ---------- */
.car-detail {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: #fff;
  display: none;
  overflow: hidden;
}
.car-detail.is-open {
  display: block;
}
.car-detail__panel {
  position: relative;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.car-detail__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  padding-top: calc(16px + env(safe-area-inset-top, 0px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0f0f0;
}
.car-detail__label {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  text-align: left;
}
.car-detail__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.car-detail__close svg {
  width: 16px;
  height: 16px;
}
.car-detail__close:hover {
  background: #f5f5f5;
  border-color: #d4d4d4;
}
.car-detail__scroll {
  overflow: visible;
}
.car-detail__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 20px 48px;
}
.car-detail__location {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #374151;
  margin-bottom: 16px;
}
.car-detail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #374151;
}
.car-detail__icon--inline {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f3f4f6;
}
.car-detail__icon--inline .car-detail__svg {
  width: 15px;
  height: 15px;
}
.car-detail__icon--brand {
  width: 52px;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  color: #111;
}
.car-detail__icon--brand .car-detail__svg {
  width: 26px;
  height: 26px;
}
.car-detail__icon--feat {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #111;
}
.car-detail__icon--feat .car-detail__svg {
  width: 17px;
  height: 17px;
}
.car-detail__icon--spec {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #f3f4f6;
  color: #111;
  margin-bottom: 8px;
}
.car-detail__icon--spec .car-detail__svg {
  width: 16px;
  height: 16px;
}
.car-detail__icon--section {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #111;
  color: #fff;
}
.car-detail__icon--section .car-detail__svg {
  width: 16px;
  height: 16px;
}
.car-detail__flag {
  font-size: 14px;
  line-height: 1;
}
.car-detail__gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: min(340px, 52vw);
  margin-bottom: 20px;
}
.car-detail__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #f3f4f6;
}
.car-detail__gallery-main {
  grid-column: 1;
  grid-row: 1 / 3;
}
.car-detail__gallery-center {
  grid-column: 2;
  grid-row: 1 / 3;
}
.car-detail__gallery-sm {
  grid-column: 3;
}
.car-detail__intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.car-detail__intro-text {
  flex: 1;
  min-width: 0;
}
.car-detail__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.car-detail__title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #111;
}
.car-detail__rent {
  flex-shrink: 0;
  width: auto;
}
.car-detail__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}
.car-detail__section {
  margin-bottom: 24px;
}
.car-detail__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.car-detail__section-title > span {
  min-width: 0;
}
.car-detail__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
}
.car-detail__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.car-detail__feat-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 14px 12px;
  background: #fff;
}
.car-detail__feat-card h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}
.car-detail__feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.car-detail__feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #374151;
}
.car-detail__spec {
  flex: 0 0 auto;
  min-width: 124px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.car-detail__specs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.car-detail__spec-label {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 4px;
}
.car-detail__spec-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}
.car-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.car-detail__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f4f6;
}
.car-detail__faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.car-detail__faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.car-detail__faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  background: #f9fafb;
  color: #111;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.car-detail__faq-q svg {
  flex-shrink: 0;
  transition: transform .2s;
}
.car-detail__faq-item.is-open .car-detail__faq-q svg {
  transform: rotate(180deg);
}
.car-detail__faq-a {
  display: none;
  padding: 0 14px 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #6b7280;
  background: #f9fafb;
}
.car-detail__faq-item.is-open .car-detail__faq-a {
  display: block;
}

@media (min-width: 769px) {
  .car-detail__inner {
    padding: 28px 24px 56px;
  }
}

@media (max-width: 768px) {
  .car-detail__head {
    padding: 14px 18px;
    padding-top: calc(14px + env(safe-area-inset-top, 0px));
  }
  .car-detail__panel {
    overscroll-behavior-x: none;
    width: 100%;
    max-width: 100%;
  }
  .car-detail__inner {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding: 20px max(18px, env(safe-area-inset-right, 0px)) calc(40px + env(safe-area-inset-bottom, 0px)) max(18px, env(safe-area-inset-left, 0px));
  }
  .car-detail__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 100px 100px;
    height: auto;
    width: 100%;
    min-width: 0;
  }
  .car-detail__gallery img {
    min-width: 0;
    max-width: 100%;
  }
  .car-detail__gallery-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .car-detail__gallery-center {
    grid-column: 1;
    grid-row: 2;
  }
  .car-detail__gallery-sm:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .car-detail__gallery-sm:nth-of-type(4) {
    grid-column: 1 / 3;
    grid-row: 3;
  }
  .car-detail__features {
    grid-template-columns: 1fr;
  }
  .car-detail__intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  .car-detail__intro-text,
  .car-detail__title-row {
    display: contents;
  }
  .car-detail__icon--brand {
    grid-column: 1;
    grid-row: 1;
  }
  .car-detail__title {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(18px, 4.8vw, 22px);
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .car-detail__rent {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 11px 20px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }
  .car-detail__rent svg {
    width: 14px;
    height: 14px;
  }
  .car-detail__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
    padding-bottom: 0;
  }
  .car-detail__spec {
    min-width: 0;
    max-width: 100%;
    flex: unset;
    padding: 10px 8px;
  }
  .car-detail__section,
  .car-detail__feat-card,
  .car-detail__location {
    min-width: 0;
    max-width: 100%;
  }
  .car-detail__location {
    font-size: 11px;
    gap: 6px;
    margin-bottom: 12px;
    line-height: 1.35;
  }
  .car-detail__location .car-detail__icon--inline {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }
  .car-detail__location .car-detail__icon--inline .car-detail__svg {
    width: 12px;
    height: 12px;
  }
  .car-detail__spec-label {
    font-size: 10px;
  }
  .car-detail__spec-value {
    font-size: 12px;
    white-space: normal;
    word-break: break-word;
  }
  .car-detail__icon--spec {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }
  .car-detail__icon--spec .car-detail__svg {
    width: 14px;
    height: 14px;
  }
  .car-detail__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- About overlay ---------- */
.about-overlay {
  position: fixed;
  inset: 0;
  z-index: 480;
  display: none;
  background: #fff;
}
.about-overlay.is-open {
  display: block;
}
.about-overlay__panel {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.about-overlay__bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 16px 24px 8px;
  background: #fff;
}
.about-overlay__close {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.about-overlay__close svg {
  width: 18px;
  height: 18px;
}
.about-overlay__close:hover {
  background: #f5f5f5;
  border-color: #d4d4d4;
}
.about-overlay__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 32px 72px;
}
.about-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}
.about-hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.about-card {
  background: #000;
  border: 0;
  border-radius: 28px;
  padding: 40px 36px;
}
.about-card--story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.about-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--orange);
}
.about-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}
.about-heading {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}
.about-copy {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #eef1f6;
}
.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
  background: #000;
  border: 0;
  border-radius: 28px;
}
.about-stat {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 22px 18px 18px;
}
.about-stat__value {
  display: block;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
.about-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-split .about-copy {
  max-width: none;
}

@media (max-width: 900px) {
  .about-overlay__inner {
    padding: 4px 20px 48px;
  }
  .about-hero,
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-card {
    padding: 28px 24px;
  }
  .about-photo img {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .about-overlay__bar {
    padding: 12px 16px 4px;
  }
  .about-overlay__inner {
    padding: 4px 16px 40px;
  }
  .about-stats {
    gap: 8px;
    padding: 10px;
  }
  .about-stat {
    padding: 16px 14px 14px;
  }
  .about-stat__value {
    font-size: 26px;
  }
}

/* ---------- Booking checkout / thanks (full-screen, above car-detail) ---------- */
.book-checkout,
.book-thanks {
  position: fixed;
  inset: 0;
  display: none;
  overflow: hidden;
  background: #fff;
}
.book-checkout {
  z-index: 700;
}
.book-thanks {
  z-index: 710;
}
.book-checkout.is-open,
.book-thanks.is-open {
  display: block;
}
.book-checkout__panel,
.book-thanks__panel {
  position: relative;
  height: 100%;
  background: #fff;
}
.book-thanks__panel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.book-checkout__panel {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.book-checkout__head,
.book-thanks__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}
.book-thanks__head {
  flex: 0 0 auto;
}
.book-checkout__label,
.book-thanks__label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}
.book-checkout__close,
.book-thanks__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.book-checkout__close svg,
.book-thanks__close svg {
  width: 16px;
  height: 16px;
}
.book-checkout__close:hover,
.book-thanks__close:hover {
  background: #f5f5f5;
  border-color: #d4d4d4;
}
.book-checkout__scroll {
  overflow: visible;
}
.book-checkout__inner {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 28px 24px 48px;
}
.book-checkout__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111;
}
.book-checkout__sub {
  margin: 6px 0 18px;
  font-size: 15px;
  line-height: 1.45;
  color: #6b7280;
}
.book-checkout__summary {
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.book-checkout__summary strong {
  display: inline;
  font-size: inherit;
  color: inherit;
  margin: 0;
}

.book-summary {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.book-summary__head {
  padding: 18px 20px 14px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.book-summary__eyebrow {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}
.book-summary__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #111;
}
.book-summary__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 20px;
}
.book-summary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.book-summary__row:last-child {
  border-bottom: 0;
}
.book-summary__label {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}
.book-summary__value {
  margin: 0;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.01em;
}
.book-summary__foot {
  padding: 14px 20px 16px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.book-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.book-summary__total span {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.book-summary__total strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1;
}
.book-summary__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: #9ca3af;
}
.book-checkout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.book-checkout__field label,
.book-checkout__label-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}
.book-checkout__field input {
  width: 100%;
  height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 0 14px;
  font: inherit;
  font-size: 15px;
  background: #fff;
}
.book-checkout__field input:focus {
  outline: none;
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}
.book-checkout__field input::placeholder,
.phone-field input::placeholder {
  color: #b0b7c3;
  opacity: 1;
}

/* Phone + country prefix */
.book-checkout__field--phone {
  position: relative;
}
.phone-field {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.phone-field.is-open,
.phone-field:focus-within {
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}
.phone-field__country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 10px 0 12px;
  border: 0;
  border-right: 1px solid #e5e7eb;
  border-radius: 12px 0 0 12px;
  background: #f8fafc;
  color: #111;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.phone-field__country:hover {
  background: #f1f5f9;
}
.phone-field__flag {
  font-size: 18px;
  line-height: 1;
}
.phone-field__dial {
  letter-spacing: 0.01em;
  min-width: 2.4em;
}
.phone-field__chev {
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform .18s ease;
}
.phone-field.is-open .phone-field__chev {
  transform: rotate(180deg);
}
.phone-field #checkoutPhoneLocal {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  border-radius: 0 12px 12px 0;
  box-shadow: none;
  padding: 0 14px;
  background: transparent;
}
.phone-field #checkoutPhoneLocal:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}
.phone-field__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.14);
  padding: 6px;
}
.phone-field__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  color: #111;
  text-align: left;
  cursor: pointer;
}
.phone-field__option:hover,
.phone-field__option.is-active {
  background: #f3f4f6;
}
.phone-field__option.is-selected {
  background: #111;
  color: #fff;
}
.phone-field__option-flag {
  font-size: 18px;
  line-height: 1;
  width: 1.4em;
  text-align: center;
}
.phone-field__option-name {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-field__option-dial {
  flex-shrink: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #6b7280;
}
.phone-field__option.is-selected .phone-field__option-dial {
  color: rgba(255, 255, 255, 0.72);
}
.book-checkout__error {
  margin: 14px 0 0;
  color: #b91c1c;
  font-size: 13px;
}
.book-checkout__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 4px;
}
.book-thanks__scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(34, 197, 94, 0.08), transparent 55%),
    radial-gradient(90% 60% at 50% 100%, rgba(0, 0, 0, 0.03), transparent 50%),
    #fff;
}
.book-thanks__body {
  width: min(420px, 100%);
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.book-thanks__check {
  width: 64px;
  height: 64px;
  margin: 0 0 28px;
  border-radius: 50%;
  background: #fff;
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.18);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(22, 163, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bookThanksPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.book-thanks.is-open .book-thanks__check {
  animation: bookThanksPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes bookThanksPop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.book-thanks__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.15;
  color: #1d1d1f;
}
.book-thanks__text {
  margin: 14px 0 0;
  max-width: 34ch;
  color: #86868b;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.01em;
}
.book-thanks__id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
  margin-top: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}
.book-thanks__id-label {
  display: inline;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #86868b;
}
.book-thanks__code {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1d1d1f;
  font-variant-numeric: tabular-nums;
  word-break: break-all;
}
.book-thanks__cta {
  margin-top: 28px;
  min-width: 0;
  min-height: 0;
  padding: 10px 20px;
  font-size: 13px;
}
@media (max-width: 640px) {
  .book-checkout__head,
  .book-thanks__head {
    padding: 14px 16px;
  }
  .book-checkout__inner {
    padding: 16px 16px 36px;
  }
  .book-checkout__title {
    font-size: 22px;
  }
  .book-checkout__sub {
    margin: 4px 0 14px;
    font-size: 14px;
  }
  .book-checkout__summary {
    margin-bottom: 16px;
  }
  .book-summary {
    border-radius: 16px;
  }
  .book-summary__head {
    padding: 12px 14px 10px;
  }
  .book-summary__eyebrow {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .book-summary__title {
    font-size: 15px;
    line-height: 1.25;
  }
  .book-summary__body {
    padding: 0 14px;
  }
  .book-summary__row {
    gap: 10px;
    padding: 10px 0;
  }
  .book-summary__label {
    font-size: 12px;
  }
  .book-summary__value {
    font-size: 13px;
  }
  .book-summary__foot {
    padding: 12px 14px 12px;
  }
  .book-summary__total span {
    font-size: 13px;
  }
  .book-summary__total strong {
    font-size: 18px;
  }
  .book-summary__note {
    margin: 0;
    font-size: 11px;
  }
  .book-checkout__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .book-checkout__field input,
  .phone-field #checkoutPhoneLocal {
    font-size: 16px;
  }
  .book-checkout__footer {
    flex-direction: column-reverse;
  }
  .book-checkout__footer .btn-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Legal pages ---------- */
body.page--legal,
body.page--legal .site-main,
.legal-page {
  background: #fff;
}
.legal-page {
  min-height: 100svh;
}
.legal-page__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 18px 32px 10px;
}
.legal-page__logo {
  display: inline-flex;
  line-height: 0;
}
.legal-page__logo img {
  display: block;
  height: 36px;
  width: auto;
}
.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s, border-color .2s;
}
.legal-page__back svg {
  width: 14px;
  height: 14px;
}
.legal-page__back:hover {
  background: #f5f5f5;
  border-color: #d4d4d8;
}
.legal-page__wrap {
  max-width: 760px;
  padding-top: 32px;
  padding-bottom: 48px;
}
.legal-page__title {
  margin: 0 0 20px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111;
}
.legal-page__body {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}
.legal-page__body p {
  margin: 0 0 1.1em;
}
.legal-page__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .legal-page__top {
    padding: 14px 18px 8px;
  }
  .legal-page__wrap {
    padding-top: 24px;
    padding-bottom: 36px;
  }
  .legal-page__body {
    font-size: 15px;
  }
}

.staff-booking-badge {
  position: fixed;
  right: 16px;
  bottom: 16px;
  top: auto;
  z-index: 2147483000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity .15s ease;
}
.page--staff-booking-pending .staff-booking-badge {
  opacity: 0;
}

.staff-booking-alert {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483001;
  max-width: min(92vw, 520px);
  padding: 10px 14px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* ---------- Cookie banner ---------- */
body.cookie-banner-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  pointer-events: none;
}

.cookie-banner.is-visible {
  pointer-events: auto;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cookie-banner.is-visible .cookie-banner__backdrop {
  opacity: 1;
}

.cookie-banner__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.cookie-banner.is-visible .cookie-banner__bar {
  transform: translateY(0);
}

.cookie-banner__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 32px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
}

.cookie-banner__copy {
  min-width: 0;
  flex: 1;
}

.cookie-banner__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.cookie-banner__text {
  margin: 0;
  max-width: 62ch;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.cookie-banner__link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__link:hover {
  opacity: 0.75;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cookie-banner__btn--ghost {
  border: 1px solid #d8d8dc;
  background: #fff;
  color: var(--ink);
}

.cookie-banner__btn--ghost:hover {
  background: #f5f5f7;
}

.cookie-banner__btn--primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.cookie-banner__btn--primary:hover {
  background: #222;
  border-color: #222;
}

@media (max-width: 860px) {
  .cookie-banner__bar {
    border-radius: 0;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: none;
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner__title {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .cookie-banner__text {
    max-width: none;
    font-size: 12px;
    line-height: 1.45;
  }

  .cookie-banner__actions {
    width: 100%;
    gap: 8px;
  }

  .cookie-banner__btn {
    flex: 1;
    min-width: 0;
    min-height: 40px;
    padding-inline: 14px;
  }
}

