/* ═══════════════════════════════════════════════════════════
   BEBSY — common.css
   Shared across every page: tokens, reset, header, footer.
   Page-specific styles live in each page's own <style> block.
═══════════════════════════════════════════════════════════ */

/* ── 1. CSS TOKENS ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:             #3d1f8c;
  --purple-mid:         #5a35b0;
  --purple-light:       #7c5cc4;
  --purple-pale:        #f0ecf8;
  --purple-border:      #c4b4e4;
  --green-booking:      #00c853;
  --green-booking-dark: #00a844;
  --orange:             #e07820;
  --text-primary:       #1a1a18;
  --text-secondary:     #5a5a52;
  --text-muted:         #9a9a90;
  --border:             #e4e2da;
  --border-strong:      #c8c6bc;
  --bg:                 #f8f6f0;
  --bg-card:            #ffffff;
  --bg-secondary:       #f2f0ea;
  --font-body:          'DM Sans', sans-serif;
  --font-serif:         'Lora', Georgia, serif;
  --radius:             12px;
  --radius-sm:          8px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-primary); line-height: 1.6; }


/* ── 2. HEADER TOP BAR ─────────────────────────────────── */
.header-top {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
  gap: 12px;
  flex-wrap: wrap;
}
.header-top-left  { display: flex; align-items: center; gap: 20px; }
.header-top-check { display: flex; align-items: center; gap: 5px; color: #2e7d32; font-size: 12px; font-weight: 500; }
.header-top-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.header-top-right span { font-size: 12px; color: #888; }
.payment-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
}


/* ── 3. HEADER MAIN ────────────────────────────────────── */
.header-main {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header-left  { display: flex; align-items: center; }
.header-logo  { text-decoration: none; display: flex; align-items: center; }
.header-logo img { height: 38px; width: auto; display: block; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: 24px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 6px;
  transition: background 0.12s;
}
.header-nav a:hover { background: #f5f5f5; }
.header-right { display: flex; align-items: center; gap: 8px; }
.header-search-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: border-color 0.12s, color 0.12s, background 0.12s;
  flex-shrink: 0;
}
.header-search-btn:hover { border-color: var(--border-strong); color: var(--purple); background: var(--purple-pale); }

/* Contact dropdown trigger */
.header-contact-wrap { position: relative; }
.header-contact-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  height: 34px;
  padding: 0 12px 0 10px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-contact-btn:hover { border-color: var(--border-strong); background: var(--bg-secondary); }
.header-contact-btn.open  { border-color: var(--purple); background: var(--purple-pale); }
.hcb-icon    { color: #25d366; flex-shrink: 0; }
.hcb-label   { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.hcb-chevron { color: var(--text-muted); font-size: 11px; margin-left: 2px; transition: transform 0.2s; }
.header-contact-btn.open .hcb-chevron { transform: rotate(180deg); }

/* Contact dropdown panel */
.contact-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  width: 320px;
  z-index: 300;
  overflow: hidden;
}
.contact-dropdown.open { display: block; }
.cd-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.cd-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cd-heading { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.cd-sub     { font-size: 13px; color: var(--text-secondary); line-height: 1.45; }
.cd-actions { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.cd-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s;
  font-family: var(--font-body);
  border: none;
}
.cd-btn svg {
  flex-shrink: 0;
  display: block;
}
.cd-btn.wa   { background: #25d366; color: #fff; }
.cd-btn.wa:hover { background: #1ebe5d; }
.cd-btn.tel  { background: var(--bg-secondary); color: var(--text-primary); border: 1px solid var(--border); }
.cd-btn.tel:hover  { border-color: var(--border-strong); }
.cd-btn.mail { background: var(--bg-secondary); color: var(--text-primary); border: 1px solid var(--border); }
.cd-btn.mail:hover { border-color: var(--border-strong); }

/* Account button */
.header-account-btn {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 20px;
  height: 34px;
  padding: 0 14px 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s;
}
.header-account-btn:hover { background: var(--purple-mid); }


/* ── 4. HAMBURGER + MOBILE MENU ────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-hamburger:hover { background: var(--bg-secondary); }
.nav-hamburger.is-open {
  color: var(--purple);
  background: var(--purple-pale);
}
.nav-hamburger__icon {
  display: block;
  width: 22px;
  height: 18px;
  margin: 0 auto;
  position: relative;
}
.nav-hamburger__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    top 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease,
    width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-hamburger__line:nth-child(1) { top: 0; }
.nav-hamburger__line:nth-child(2) { top: 8px; }
.nav-hamburger__line:nth-child(3) { top: 16px; }
.nav-hamburger.is-open .nav-hamburger__line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.nav-hamburger.is-open .nav-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-open .nav-hamburger__line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .nav-hamburger__line { transition: none; }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  height: calc(100dvh - 62px);
  max-height: calc(100dvh - 62px);
  background: #fff;
  z-index: 190;
  padding: 20px 20px calc(28px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  min-height: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu > a,
.mobile-menu-contact {
  flex-shrink: 0;
}
.mobile-menu > a {
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu-account {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
}
.mobile-menu-account__icon {
  color: var(--purple);
  flex-shrink: 0;
}

/* Contact accordion inside mobile menu */
.mobile-menu-contact {
  flex-shrink: 0;
  min-width: 0;
}
.mobile-menu-contact:not(.open) {
  border-bottom: 1px solid var(--border);
}
.mobile-menu-contact__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
}
.mobile-menu-contact__icon { color: #25d366; flex-shrink: 0; }
.mobile-menu-contact__label { flex: 1; }
.mobile-menu-contact__chev {
  color: var(--text-muted);
  font-size: 12px;
  transition: transform 0.2s;
}
.mobile-menu-contact.open .mobile-menu-contact__chev { transform: rotate(180deg); }
.mobile-menu-contact.open .mobile-menu-contact__trigger { color: var(--purple); }
.mobile-menu-contact__panel {
  display: none;
  overflow: visible;
  padding-bottom: 4px;
}
.mobile-menu-contact.open .mobile-menu-contact__panel {
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-contact__panel .cd-header {
  padding: 4px 0 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-contact__panel .cd-actions {
  padding: 14px 0 4px;
  gap: 10px;
}
.mobile-menu-contact__panel .cd-btn {
  justify-content: flex-start;
  padding: 14px 18px;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.35;
  border-bottom: none;
}
.mobile-menu-contact__panel .cd-btn svg {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
}
.mobile-menu-contact__panel .cd-btn:last-child {
  margin-bottom: 2px;
}


body.mobile-menu-open { overflow: hidden; }

/* ── 4b. HEADER SEARCH MODAL ───────────────────────────── */
body.header-search-open { overflow: hidden; }
.header-search-modal {
  position: fixed;
  inset: 0;
  z-index: 8500;
  display: none;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header-search-modal.open { display: block; }
.header-search-modal__inner {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 40px 56px;
}
.header-search-modal__close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 1;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.header-search-modal__close:hover {
  background: var(--bg-secondary);
  border-color: var(--border-strong);
  color: var(--purple);
}
.header-search-modal__content {
  width: min(1040px, 100%);
}
.header-search-modal__eyebrow { display: none; }
.header-search-modal__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 28px;
}
.header-site-search { overflow: visible; }

.header-site-search__form {
  padding: 0 0 28px;
  border: none;
}
.header-site-search__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}
.header-site-search__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-site-search__input-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.header-site-search__input-wrap:focus-within {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(61,31,140,0.08);
}
.header-site-search__icon {
  flex-shrink: 0;
  color: var(--purple-light);
  transition: color 0.15s;
}
.header-site-search__input-wrap:focus-within .header-site-search__icon { color: var(--purple); }
.header-site-search__input {
  min-width: 0;
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--text-primary);
  background: transparent;
}
.header-site-search__input::placeholder { color: var(--text-muted); }
.header-site-search__submit {
  border: none;
  border-radius: 30px;
  background: var(--purple);
  color: #fff;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s, transform 0.12s;
}
.header-site-search__submit:hover { background: var(--purple-mid); transform: translateY(-1px); }

.header-site-search__results {
  max-height: min(54vh, 480px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 0;
}
.header-site-search__empty {
  padding: 24px 4px;
  color: var(--text-muted);
  font-size: 14px;
}
.header-site-search__group {
  padding: 10px 0;
}
.header-site-search__group + .header-site-search__group {
  border-top: 1px solid var(--border);
}
.header-site-search__group-title {
  padding: 0 18px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
}
.header-site-search__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 4px;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
  border-radius: var(--radius-sm);
}
.header-site-search__item:hover {
  background: var(--bg-secondary);
  padding-left: 10px;
  padding-right: 10px;
}
.header-site-search__item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.header-site-search__item-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.header-site-search__item-desc {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}
/* ── 4c. HEADER ACCOUNT MODAL ──────────────────────────── */
body.header-account-open { overflow: hidden; }
.header-account-modal {
  position: fixed;
  inset: 0;
  z-index: 8500;
  display: none;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header-account-modal.open { display: block; }
.header-account-modal__inner {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 40px 56px;
}
.header-account-modal__close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 1;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.header-account-modal__close:hover {
  background: var(--bg-secondary);
  border-color: var(--border-strong);
  color: var(--purple);
}
.header-account-modal__content {
  width: min(480px, 100%);
}
.header-account-modal__eyebrow { display: none; }
.header-account-modal__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
}
.header-account-modal__lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.header-account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 24px;
}
.header-account-tabs__btn {
  border: none;
  border-radius: 10px;
  background: transparent;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.12s;
}
.header-account-tabs__btn:hover { color: var(--text-primary); }
.header-account-tabs__btn.is-active {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 1px 4px rgba(61, 31, 140, 0.08);
}
.header-account-panel { display: none; }
.header-account-panel.is-active { display: block; }
.header-account-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header-account-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.header-account-form__row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}
.header-account-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header-account-field__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--purple-light);
}
.header-account-field__input {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.header-account-field__input::placeholder { color: var(--text-muted); }
.header-account-field__input:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(61, 31, 140, 0.08);
}
.header-account-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  text-decoration: none;
}
.header-account-link:hover { text-decoration: underline; }
.header-account-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  cursor: pointer;
}
.header-account-checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--purple);
}
.header-account-checkbox a {
  color: var(--purple);
  text-decoration: none;
}
.header-account-checkbox a:hover { text-decoration: underline; }
.header-account-submit {
  width: 100%;
  border: none;
  border-radius: 30px;
  background: var(--purple);
  color: #fff;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s, transform 0.12s;
  margin-top: 4px;
}
.header-account-submit:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
}

/* ── 4d. AUTH PAGES (wachtwoord vergeten, etc.) ───────── */
.auth-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px 88px;
}
.auth-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 0 28px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.auth-page__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.auth-page__breadcrumb a:hover { color: var(--text-secondary); }
.auth-page__breadcrumb .sep { color: var(--border-strong); }
.auth-page__breadcrumb .current { color: var(--text-secondary); }
.auth-page__card {
  width: min(480px, 100%);
  margin: 0 auto;
}
.auth-page__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 10px;
}
.auth-page__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.auth-page__lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.auth-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  text-decoration: none;
}
.auth-page__back:hover { text-decoration: underline; }
.auth-page__success {
  display: none;
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--purple-pale);
  border: 1px solid rgba(61, 31, 140, 0.12);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.auth-page__success.is-visible { display: block; }
.auth-page__success strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--purple);
}

.header-site-search__item-type {
  align-self: start;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}


/* ── 5. FOOTER TOP (contact + newsletter) ──────────────── */
.footer-top {
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1549294413-26f195200c16?w=1400&q=80');
  background-size: cover;
  background-position: center 60%;
}
.footer-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,10,35,0.78) 0%, rgba(20,10,35,0.90) 100%);
}
.footer-contact-row {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.footer-left h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.footer-left h2 em { font-style: italic; }
.footer-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 380px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.12s;
}
.footer-contact-item:hover { color: #fff; }
.fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.12s;
}
.footer-social:hover { color: #fff; }
.footer-newsletter-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.footer-newsletter-title {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.4;
}
.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 14px;
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.12s;
}
.footer-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-input:focus { border-color: rgba(255,255,255,0.5); }
.footer-email-row { display: flex; gap: 8px; margin-bottom: 10px; }
.footer-email-row .footer-input { flex: 1; }
.footer-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background 0.15s;
}
.footer-submit:hover { background: #c96a18; }
.footer-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-privacy a { color: rgba(255,255,255,0.55); text-decoration: underline; }


/* ── 6. FOOTER NAV + BOTTOM ────────────────────────────── */
.footer-nav { background: #0f0a1e; padding: 36px 40px 24px; }
.footer-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 8px; }
.footer-col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.12s;
}
.footer-col-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.12s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-trust { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.trust-badge-footer {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}


/* ── 7. RESPONSIVE — header & footer only ──────────────── */
@media (max-width: 1024px) {
  .header-top { display: none; }
  .header-main { padding: 0 16px; }
  .header-nav  { display: none; }
  .header-contact-wrap { display: none; }
  .nav-hamburger { display: block; }
  .footer-contact-row {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 20px;
  }
  .footer-nav { padding: 28px 20px 20px; }
  .footer-nav-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .header-search-modal__inner {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100dvh;
    padding: 72px 20px 32px;
  }
  .header-search-modal__close {
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .header-search-modal__content {
    width: 100%;
  }
  .header-search-modal__eyebrow {
    text-align: left;
    margin-bottom: 8px;
  }
  .header-search-modal__title {
    text-align: left;
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .header-site-search__form {
    padding: 0 0 20px;
  }
  .header-site-search__label {
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .header-site-search__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .header-site-search__input-wrap {
    padding: 14px 16px;
    border-radius: 12px;
  }
  .header-site-search__icon {
    width: 20px;
    height: 20px;
  }
  .header-site-search__input {
    font-size: 17px;
  }
  .header-site-search__submit {
    width: 100%;
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 12px;
  }
  .header-account-modal__inner {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100dvh;
    padding: 72px 20px 32px;
  }
  .header-account-modal__close {
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .header-account-modal__content { width: 100%; }
  .header-account-modal__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--purple-light);
    text-align: left;
    margin-bottom: 8px;
  }
  .header-account-modal__title {
    text-align: left;
    font-size: 26px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .header-account-modal__lead {
    text-align: left;
    font-size: 14px;
    margin-bottom: 22px;
  }
  .header-account-tabs {
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .header-account-tabs__btn {
    padding: 11px 12px;
    font-size: 13px;
  }
  .header-account-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .header-account-field__input {
    font-size: 16px;
    padding: 13px 14px;
  }
  .auth-page {
    padding: 20px 20px 64px;
  }
  .auth-page__breadcrumb {
    padding-bottom: 22px;
  }
  .auth-page__title {
    font-size: 26px;
  }
  .auth-page__lead {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .header-site-search__empty {
    padding: 16px 0 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .header-site-search__results {
    max-height: none;
    padding-top: 4px;
  }
  .header-site-search__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .header-site-search__item-type {
    justify-self: start;
  }
  .footer-nav-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-form-row  { grid-template-columns: 1fr; }
}

/* ── 8. REUSABLE SEARCH + DROPDOWN ───────────────────────── */

/* Root fills whatever wrapper contains it */
.bebsy-search       { width: 100%; }
.bebsy-search__form { width: 100%; }

.bebsy-search__row {
  display: flex;
  align-items: stretch;
}

/* Each field gets a wrapper for positioning context */
.bebsy-search__field-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.bebsy-search__field-wrap[data-field-wrap="travellers"] { flex: 1.2; }
.bebsy-search__field-wrap[data-field-wrap="type"]       { flex: 0.85; }

.bebsy-search__field {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: 14px 18px;
  border: none;
  border-right: 1px solid var(--border);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s;
  font-family: var(--font-body);
  overflow: hidden;
}
.bebsy-search__field:hover,
.bebsy-search__field--open { background: var(--bg-secondary); }

.bebsy-search__label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.bebsy-search__value {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  max-width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.bebsy-search__value-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bebsy-search__chev {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.18s;
}
.bebsy-search__field--open .bebsy-search__chev { transform: rotate(180deg); }
.bebsy-search__field--selected .bebsy-search__value { color: var(--purple); }
.bebsy-search__field--selected .bebsy-search__chev  { color: var(--purple-light); }

.bebsy-search__btnwrap {
  flex-shrink: 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
}
.bebsy-search__btn {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}
.bebsy-search__btn:hover { background: var(--purple-mid); }

/* ── Floating dropdown (portal on <body>) ──────────────── */
#bebsy-float {
  position: fixed;
  z-index: 9000;
  max-width: 340px;
}
#bebsy-float.bebsy-float--range {
  max-width: none;
}

/* Mobile fullscreen sheet */
.bebsy-dropdown {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.bebsy-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mobile fullscreen sheet */
#bebsy-float.bebsy-dropdown--sheet {
  position: fixed;
  inset: 0;
  z-index: 9000;
  max-width: none;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  border: none;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transform: none;
  overflow: hidden;
}
#bebsy-float.bebsy-dropdown--sheet:not(.open) {
  opacity: 0;
  pointer-events: none;
}
#bebsy-float.bebsy-dropdown--sheet.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.bebsy-sheet__backdrop { display: none; }
.bebsy-sheet__panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: none;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
#bebsy-float.bebsy-dropdown--sheet.open .bebsy-sheet__panel { transform: none; }
.bebsy-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: max(14px, env(safe-area-inset-top)) 18px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.bebsy-sheet__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.bebsy-sheet__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.12s, border-color 0.12s;
}
.bebsy-sheet__close:hover {
  background: var(--bg-secondary);
  border-color: var(--border-strong);
  color: var(--purple);
}
.bebsy-sheet__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
  padding-bottom: env(safe-area-inset-bottom);
}
#bebsy-float.bebsy-dropdown--sheet .bebsy-range {
  width: 100%;
  max-width: none;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
}
#bebsy-float.bebsy-dropdown--sheet .bebsy-opt {
  padding: 16px 18px;
  font-size: 16px;
}
body.bebsy-sheet-open { overflow: hidden; }

/* Option rows */
.bebsy-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 11px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  transition: background 0.1s;
}
.bebsy-opt:last-child { border-bottom: none; }
.bebsy-opt:hover { background: var(--bg-secondary); color: var(--text-primary); }

.bebsy-opt--active {
  color: var(--purple);
  font-weight: 500;
  background: var(--purple-pale);
}
.bebsy-opt--active:hover { background: var(--purple-pale); }

.bebsy-opt__radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
  transition: all 0.12s;
  position: relative;
}
.bebsy-opt--active .bebsy-opt__radio {
  border-color: var(--purple);
  background: var(--purple);
  box-shadow: inset 0 0 0 3px #fff;
}

.bebsy-opt__label { flex: 1; }

.bebsy-dropdown__empty {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Date range picker inside dropdown */
.bebsy-range {
  padding: 16px 18px 14px;
  width: min(100vw - 24px, 620px);
}
.bebsy-range__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.bebsy-range__pick {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: var(--bg-secondary);
}
.bebsy-range__pick--active {
  border-color: var(--purple);
  background: var(--purple-pale);
}
.bebsy-range__pick-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.bebsy-range__pick-val {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.bebsy-range__pick--active .bebsy-range__pick-val { color: var(--purple); }

.bebsy-range__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.bebsy-range__months {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.bebsy-range__nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, border-color 0.12s;
  flex-shrink: 0;
}
.bebsy-range__nav-btn:hover:not(:disabled) {
  background: var(--bg-secondary);
  border-color: var(--border-strong);
  color: var(--purple);
}
.bebsy-range__nav-btn:disabled { opacity: 0.35; cursor: default; }

.bebsy-range__grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.bebsy-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.bebsy-cal__weekday {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  padding: 2px 0;
}
.bebsy-cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.bebsy-cal__day {
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  padding: 0;
}
.bebsy-cal__day:hover:not(:disabled):not(.bebsy-cal__day--empty) {
  background: var(--purple-pale);
  color: var(--purple);
}
.bebsy-cal__day--empty { visibility: hidden; pointer-events: none; }
.bebsy-cal__day--disabled {
  color: var(--text-muted);
  opacity: 0.35;
  cursor: default;
}
.bebsy-cal__day--in-range {
  border-radius: 0;
  background: var(--purple-pale);
  color: var(--purple);
}
.bebsy-cal__day--start,
.bebsy-cal__day--end {
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
}
.bebsy-cal__day--start.bebsy-cal__day--in-range { border-radius: 50% 0 0 50%; }
.bebsy-cal__day--end.bebsy-cal__day--in-range   { border-radius: 0 50% 50% 0; }
.bebsy-cal__day--start.bebsy-cal__day--end       { border-radius: 50%; }

.bebsy-range__hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}
.bebsy-range__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.bebsy-range__clear {
  margin-right: auto;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bebsy-range__clear:hover { color: var(--purple); }
.bebsy-range__apply {
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--purple);
  color: #fff;
  cursor: pointer;
  transition: background 0.12s;
}
.bebsy-range__apply:hover:not(:disabled) { background: var(--purple-mid); }
.bebsy-range__apply:disabled {
  opacity: 0.4;
  cursor: default;
}

@media (max-width: 640px) {
  .bebsy-range__grids,
  .bebsy-range__months { grid-template-columns: 1fr; }
  .bebsy-range__months span:last-child { display: none; }
  .bebsy-range__grids .bebsy-cal:last-child { display: none; }
}

/* Responsive — stack fields on narrow screens */
@media (max-width: 768px) {
  .bebsy-search__row {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .bebsy-search__field-wrap,
  .bebsy-search__field-wrap[data-field-wrap="type"],
  .bebsy-search__field-wrap[data-field-wrap="travellers"] {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .bebsy-search__field {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .bebsy-search__btnwrap {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px 14px;
    border-top: none;
    box-sizing: border-box;
  }
  .bebsy-search__btn {
    width: 100%;
    justify-content: center;
  }
}
