/* ============================================================
   Prague Hotels v2 — editorial travel-magazine style
   ============================================================ */

:root {
  --c-bg: #faf7f2;
  --c-surface: #ffffff;
  --c-surface-alt: #f3ede4;
  --c-ink: #1a1614;
  --c-ink-soft: #4a4541;
  --c-muted: #8a827b;
  --c-line: #e6ddd1;
  --c-accent: #7a1e2b;         /* Bohemian burgundy */
  --c-accent-soft: #a83a48;
  --c-accent-ink: #5a1320;
  --c-gold: #b8893a;            /* Astronomical-clock gold */
  --c-gold-soft: #d4ae6b;

  --f-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --gutter: clamp(1rem, 3vw, 2rem);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --sh-card: 0 1px 2px rgba(26, 22, 20, .04), 0 8px 24px rgba(26, 22, 20, .06);
  --sh-card-hover: 0 4px 10px rgba(26, 22, 20, .08), 0 20px 40px rgba(26, 22, 20, .12);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-accent-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }

/* legacy markup that survives from old pages we haven't fully rewritten */
table { border-collapse: collapse; }
table[border] { border: 0 !important; }
img[border] { border: 0 !important; }

/* ---------- typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--f-sans); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

p { margin: 0 0 1.1em; color: var(--c-ink-soft); }
p strong, strong { color: var(--c-ink); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}
.eyebrow::before { content: "—"; margin-right: .6em; color: var(--c-gold); }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(3rem, 6vw, 5rem) 0; }
section.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
section.section--alt { background: var(--c-surface-alt); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); background: rgba(250, 247, 242, .98); }

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .9rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--c-ink) !important;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.brand__dot { color: var(--c-gold-soft); margin: 0 -.1em; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__line1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.brand__line2 {
  font-family: var(--f-sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: .25rem;
}

.primary-nav { margin-left: auto; }
.primary-nav > ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.primary-nav a {
  display: inline-block;
  padding: .6rem .9rem;
  font-weight: 500;
  font-size: .95rem;
  color: var(--c-ink);
  border-radius: var(--r-sm);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.primary-nav a:hover { background: var(--c-surface-alt); text-decoration: none; color: var(--c-accent-ink); }
.primary-nav .caret { font-size: .7em; opacity: .55; margin-left: .15em; }

.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
  padding: .5rem;
  list-style: none;
  margin: .4rem 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown .dropdown li { display: block; }
.has-dropdown .dropdown a {
  display: block;
  padding: .55rem .8rem;
  font-size: .92rem;
}

.nav-cta {
  background: var(--c-accent);
  color: #fff !important;
}
.nav-cta:hover { background: var(--c-accent-ink) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .15s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-line);
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-110%);
    transition: transform .3s var(--ease);
    box-shadow: var(--sh-card);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav a { padding: .9rem .5rem; }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 0 1rem; margin: 0;
    background: transparent;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(184, 137, 58, .12), transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(122, 30, 43, .10), transparent 70%),
    linear-gradient(180deg, #f7efe2 0%, var(--c-bg) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(122, 30, 43, .04) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.hero__inner { position: relative; }
.hero h1 {
  max-width: 22ch;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-accent);
}
.hero__lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  max-width: 60ch;
  margin-bottom: 2rem;
  color: var(--c-ink-soft);
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-line);
}
.hero__stat { line-height: 1.2; }
.hero__stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--c-accent);
  font-weight: 700;
}
.hero__stat span {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}

/* ---------- intro prose block ---------- */
.prose { max-width: 70ch; }
.prose p { font-size: 1.05rem; }
.prose--center { margin-left: auto; margin-right: auto; text-align: center; }
.prose--center p { text-align: left; }

.lede {
  font-size: 1.15rem;
  color: var(--c-ink);
  font-weight: 400;
  border-left: 3px solid var(--c-gold);
  padding-left: 1.2rem;
  margin-left: 0;
}

/* ---------- section heading ---------- */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.section-head h2 { margin: 0; }
.section-head p { max-width: 50ch; margin: 0; color: var(--c-muted); }
.section-head__star {
  display: inline-flex;
  gap: 2px;
  color: var(--c-gold);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

/* tier CTA link below each homepage star section */
.tier-cta { margin-top: 1.75rem; text-align: center; }

/* ---------- hotel cards grid ---------- */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.hotel-card {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  text-decoration: none !important;
  color: inherit;
  position: relative;
}
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card-hover);
  color: inherit;
}
.hotel-card__media {
  aspect-ratio: 4 / 3;
  background: var(--c-surface-alt);
  overflow: hidden;
  position: relative;
}
.hotel-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.hotel-card:hover .hotel-card__media img { transform: scale(1.06); }

.hotel-card__stars {
  position: absolute;
  top: .8rem; left: .8rem;
  background: rgba(26, 22, 20, .82);
  color: var(--c-gold-soft);
  font-size: .72rem;
  letter-spacing: .1em;
  padding: .35rem .55rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hotel-card__body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hotel-card__name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 .35rem;
  line-height: 1.25;
}
.hotel-card__location {
  font-size: .82rem;
  color: var(--c-muted);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .8rem;
}
.hotel-card__location::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--c-accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.hotel-card__price {
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
}
.hotel-card__price-label { font-size: .72rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .12em; }
.hotel-card__price-value {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-accent);
}
.hotel-card__price-value small { font-family: var(--f-sans); font-size: .65em; color: var(--c-muted); font-weight: 400; margin-left: .25em; }

/* ---------- "more hotels" list table ---------- */
.more-hotels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.more-hotels h3 {
  font-family: var(--f-sans);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 1rem;
}
.more-hotels ul { list-style: none; padding: 0; margin: 0; }
.more-hotels li { padding: .5rem 0; border-bottom: 1px dashed var(--c-line); }
.more-hotels li:last-child { border-bottom: 0; }
.more-hotels li a { color: var(--c-ink); font-weight: 500; }
.more-hotels li a:hover { color: var(--c-accent); }
.more-hotels li small { display: block; color: var(--c-muted); font-size: .8rem; margin-top: 2px; }
@media (max-width: 750px) { .more-hotels { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- hotel detail page ---------- */
.hotel-detail__header {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(184, 137, 58, .14), transparent 70%),
    var(--c-bg);
}
.hotel-detail__stars {
  display: inline-flex;
  gap: 4px;
  color: var(--c-gold);
  font-size: 1.3rem;
  margin-bottom: .8rem;
}
.hotel-detail__location {
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: .5rem;
}
.hotel-detail h1 { margin: 0; }

.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
.hotel-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
}
@media (max-width: 700px) {
  .hotel-gallery { grid-template-columns: 1fr; }
}

.hotel-detail__body { max-width: 75ch; margin: 0 auto; }
.hotel-detail__body h3 {
  font-family: var(--f-sans);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-top: 2.2rem;
  margin-bottom: .8rem;
}
.hotel-detail__body h3:first-child { margin-top: 0; }
.hotel-detail__body p { font-size: 1.05rem; line-height: 1.75; }

.hotel-detail__cta {
  margin: 3rem 0 0;
  padding: 2rem;
  background: var(--c-surface);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  text-align: center;
}
.hotel-detail__cta h3 {
  font-family: var(--f-display) !important;
  font-size: 1.5rem !important;
  text-transform: none !important;
  letter-spacing: -.01em !important;
  color: var(--c-ink) !important;
  margin: 0 0 .6rem !important;
}

/* ---------- breadcrumb (hotel pages + any non-guide page) ---------- */
.breadcrumb {
  font-size: .82rem;
  color: var(--c-muted);
  margin-bottom: 0;
  padding: .9rem 0 0;
  letter-spacing: .04em;
  text-align: left;
}
.breadcrumb a { color: var(--c-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb__sep { margin: 0 .35rem; color: var(--c-line); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: .9rem 1.6rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--primary { background: var(--c-accent); color: #fff; }
.btn--primary:hover { background: var(--c-accent-ink); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(122, 30, 43, .25); }
.btn--ghost { background: transparent; color: var(--c-accent); border-color: var(--c-accent); }
.btn--ghost:hover { background: var(--c-accent); color: #fff; }

/* ---------- forms ---------- */
.form-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--sh-card);
}
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  letter-spacing: .04em;
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-bg);
  font: inherit;
  color: var(--c-ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 0;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(122, 30, 43, .15);
}

/* ---------- ad slot ---------- */
.ad-slot {
  max-width: var(--container);
  margin: 2rem auto 0;
  padding: 0 var(--gutter);
}
.ad-slot--horizontal ins { min-height: 90px; }

/* ---------- footer ---------- */
.site-footer {
  background: #1a1614;
  color: #cdc4ba;
  margin-top: 4rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
}
.site-footer__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.site-footer__cols {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) {
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .site-footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer__cols { grid-template-columns: 1fr; }
}
.site-footer h4 {
  font-family: var(--f-sans);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #cdc4ba; font-size: .92rem; }
.site-footer a:hover { color: var(--c-gold-soft); text-decoration: none; }
.site-footer p { color: #9a918a; font-size: .9rem; }
.site-footer .brand--footer { color: #fff; margin-bottom: 1rem; }
.site-footer .brand--footer .brand__line2 { color: #9a918a; }
.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
  color: #9a918a;
  text-align: center;
}
.site-footer__bottom a { color: #cdc4ba; }

/* ---------- Booking.com search widget ---------- */

/* Desktop: single row — all 6 fields in one bar */
.booking-search {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr .9fr .9fr auto;
  gap: .5rem;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 1.1rem;
  box-shadow: 0 2px 4px rgba(26,22,20,.04), 0 12px 32px rgba(26,22,20,.11);
  align-items: end;
}

/* Tablet ≤880px: 2-column grid
   Row 1: Destination (full width)
   Row 2: Check-in | Check-out
   Row 3: Guests    | Rooms
   Row 4: Search button (full width)  */
@media (max-width: 880px) {
  .booking-search {
    grid-template-columns: 1fr 1fr;
  }
  .booking-search .booking-search__field--dest,
  .booking-search .booking-search__field--submit {
    grid-column: 1 / -1;
  }
}

/* Mobile ≤500px: single column stack */
@media (max-width: 500px) {
  .booking-search {
    grid-template-columns: 1fr;
  }
  .booking-search .booking-search__field--dest,
  .booking-search .booking-search__field--submit {
    grid-column: 1;
  }
}

.booking-search__field {
  display: flex;
  flex-direction: column;
  gap: .28rem;
  min-width: 0;
}

.booking-search__field label {
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  padding-left: 2px;
}

.booking-search__field input,
.booking-search__field select {
  width: 100%;
  padding: .72rem .9rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-bg);
  font: inherit;
  font-size: .95rem;
  color: var(--c-ink);
  min-height: 46px;   /* touch-friendly */
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

/* Restore select arrow */
.booking-search__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%238a827b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1 7 7 13 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.2rem;
}

.booking-search__field input:focus,
.booking-search__field select:focus {
  outline: 0;
  border-color: var(--c-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(122,30,43,.12);
}

.booking-search__field--submit { align-self: end; }
.booking-search__field--submit .btn {
  width: 100%;
  padding: .73rem 1.4rem;
  min-height: 46px;
  white-space: nowrap;
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.booking-search__note {
  color: var(--c-muted);
  font-size: .75rem;
  margin: .55rem 0 0;
  text-align: center;
}

/* Compact variant: no labels, tighter padding (reserve for future use) */
.booking-search--compact { padding: .8rem; gap: .4rem; }
.booking-search--compact label { display: none; }
.booking-search--compact .booking-search__field input,
.booking-search--compact .booking-search__field select { padding: .62rem .8rem; }

/* ---------- utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
