﻿/* =============================================================
   theme.css — Beachside Bliss  |  All hand-written custom styles
   
   ARCHITECTURE
   ────────────
   site.css   → Tailwind CSS v4 compiled output (auto-generated, never edit)
   theme.css  → ALL hand-written styles (this file)
   front-page.css → hero + modal styles loaded only on front page
   vendor/    → third-party CSS (litepicker, …)
   
   History:
   Originally split across overrides.css + custom.css to allow
   quick hot-patches via a separate file. Merged 2026-04-24 to
   eliminate competing rules and reduce HTTP requests.
   ============================================================= */

/* =============================================================
   1.  FONTS
   Google Fonts loaded via wp_enqueue_style → bb-fonts handle.
   Preconnect hints added in functions.php via wp_head.
   ============================================================= */

:root {
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont,
                  'Segoe UI', Helvetica, Arial, sans-serif;
}

/* Base: Inter for all body copy */
html,
body {
  font-family: var(--font-body);
}

/* Playfair Display for section headings */
.bb-hero__title,
.bb-facts-title,
.bb-experience-h2,
.bb-spaces-h2,
.bb-reviews-h2,
.bb-explore-h1,
.bb-explore-h2,
.bb-check-h2,
.bb-booking-cta-card h2,
.bb-about-hero2__title,
.bb-glance-h2,
.bb-catalog-header h2,
.bb-split-content h3,
.bb-modal-header h2,
.footer-bigword {
  font-family: var(--font-heading);
}

/* Review quotes — Playfair italic is stunning at 16px */
.bb-review-text {
  font-family: var(--font-heading);
}

/* =============================================================
   2.  FORMER overrides.css  (base layer — loaded first)
   ============================================================= */
/* Hard safety: текст всегда виден */
html, body { margin: 0; color: #0f172a; background: #ffffff; }

/* --- Safety nav visibility + responsive without relying on Tailwind md:* --- */
.bb-hidden { display: none !important; }

/* Desktop / Mobile switches */
.bb-desktop { display: none; }
.bb-mobile { display: block; }

@media (min-width: 768px) {
  .bb-desktop { display: block !important; }
  .bb-mobile  { display: none !important; }
}

/* Header refinements */
.bb-header {
  background: transparent;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1200;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.bb-header.bb-header--scrolled {
  background: transparent;
}

.bb-header-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent;
}

.bb-header-panel {
  position: relative;
  background: #0F172A;
  border-radius: 999px;
  color: #f8fafc;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.bb-header-panel::before {
  display: none;
}

.bb-header-inner {
  position: relative;
  z-index: 2;
}

/* Make menu links readable */
.bb-header .bb-nav a {
  color: #f8fafc !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: color 160ms ease, background-color 160ms ease;
}

.bb-header .bb-nav a:hover {
  /* Brand ice-blue — clearly distinct from default white on dark panel */
  color: #7fb6d9 !important;
  background: rgba(127, 182, 217, 0.15);
}

.bb-header .bb-nav li.current-menu-item > a,
.bb-header .bb-nav li.current_page_item > a,
.bb-header .bb-nav li.current-menu-ancestor > a {
  color: #ffffff !important;
}

/* Book Now button safety */
a.bb-booknow,
header a[href*="book-now"] {
  color: var(--brand-blue) !important;
  background: #f8fafc !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.16);
}

a.bb-booknow:hover,
header a[href*="book-now"]:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 16px 24px rgba(15, 23, 42, 0.2);
}

.bb-burger {
  position: relative;
  width: 44px;
  height: 44px;  /* W3C minimum touch target 44×44px */
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
}

.bb-burger-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.bb-burger-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f8fafc;
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}

.bb-burger[aria-expanded="true"] .bb-burger-line:nth-child(2) {
  opacity: 0;
}

.bb-burger[aria-expanded="true"] .bb-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bb-burger[aria-expanded="true"] .bb-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bb-mobile-panel {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 12px;
}

/* --- MODERN MODAL OVERLAY --- */
.bb-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bb-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

html.bb-modal-open,
body.bb-modal-open {
  overflow: hidden;
  touch-action: none;
}

#bb-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#bb-booking-modal.active {
  display: flex;
}

#bb-booking-modal .bb-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 0;
  opacity: 1;
  visibility: visible;
}

#bb-booking-modal .bb-modal-wrap {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  max-width: 760px;
  max-height: 90vh;
  max-height: 90svh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: none;
}

@media (max-width: 1024px) {
  #bb-booking-modal .bb-modal-wrap {
    width: min(92vw, 680px);
  }
}

@media (max-width: 600px) {
  #bb-booking-modal {
    padding: 16px;
  }

  #bb-booking-modal .bb-modal-wrap {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    padding: 24px;
  }
}

/* --- MODAL WRAP --- */
.bb-modal-wrap {
  background: #fff;
  width: min(92vw, 720px);
  max-width: 720px;
  max-height: 90vh;
  max-height: 90svh;
  overflow-y: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 24px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bb-modal-overlay.active .bb-modal-wrap {
  transform: translateY(0);
}

/* Mobile Bottom Sheet Style */
@media (max-width: 600px) {
  .bb-modal-wrap {
    position: relative;
    bottom: auto;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    max-height: 90svh;
    padding: 24px;
    transform: none;
  }
}

@media (max-width: 767px) {
  .bb-submit-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .bb-submit-btn {
    position: sticky;
    bottom: 0;
    margin-top: 16px;
    box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.08);
  }
}

/* --- HEADER --- */
.bb-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-modal-header h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.bb-modal-header p {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
}

/* --- DATE PICKER (Merged) --- */
.bb-date-input {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
  background: #fff;
  padding: 12px;
  min-height: 44px;
}

.bb-clear-dates-inline {
  align-self: flex-end;
  border: none;
  background: none;
  font-size: 11px;
  font-weight: 600;
  color: #0f172a;
  padding: 0;
  margin-bottom: 0;
  cursor: pointer;
  text-decoration: underline;
}

.bb-clear-dates-inline:hover {
  color: #1d4ed8;
}

.bb-date-input-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  margin-bottom: 2px;
}

.bb-date-range {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}

.bb-date-input:hover {
  border-color: #0f172a;
}

.bb-date-input label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 0;
}

.bb-date-input input {
  font-size: 14px;
  color: #0f172a;
  border: none;
  outline: none;
  padding: 0;
  background: transparent;
  width: 100%;
}

.bb-date-input input::placeholder {
  color: #94a3b8;
}

.bb-warning-msg {
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  font-weight: 600;
}

/* Litepicker is appended to document.body (parentEl:body), NOT inside #bb-booking-modal.
   Selector must target body > .litepicker, not #bb-booking-modal .litepicker.
   z-index: 100001 = one above #bb-booking-modal (100000) — always on top regardless of DOM order. */
.litepicker {
  z-index: 100001 !important;
}

#bb-booking-modal .litepicker {
  font-size: 14px;
}

#bb-booking-modal .litepicker .day-item {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-weight: 600;
}

#bb-booking-modal .litepicker .day-item.is-locked {
  text-decoration: line-through;
  opacity: 0.5;
  background: #f1f5f9;
}

#bb-booking-modal .litepicker .container__months {
  gap: 24px;
}

.bb-field-note {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #64748b;
}

/* --- GUEST PICKER --- */
.bb-guests-row {
  position: relative;
  margin-top: 0;
}

.bb-guest-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px;
  min-height: 44px;
  cursor: pointer;
  background: #fff;
}

.bb-guest-label label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.bb-guest-label span {
  font-size: 14px;
  color: #334155;
}

.bb-guest-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 50;
  margin-top: 8px;
}

.bb-guest-dropdown.active {
  display: block;
  animation: fadeIn 0.2s;
}

.bb-guest-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bb-guest-text strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
}

.bb-guest-text span {
  font-size: 13px;
  color: #64748b;
}

.bb-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-cnt-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-cnt-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bb-cnt-btn:not(:disabled):hover {
  border-color: #0f172a;
  color: #0f172a;
}

.bb-cnt-val {
  width: 20px;
  text-align: center;
  font-weight: 600;
}

.bb-guest-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bb-guest-footer p {
  font-size: 11px;
  color: #64748b;
  max-width: 72%;
  margin: 0;
}

#bb-guest-close {
  background: none;
  border: none;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  color: #0f172a;
}

.bb-booking-top-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.bb-date-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.bb-price-details .bb-strike {
  text-decoration: line-through;
  opacity: 0.65;
}

.bb-discount-row {
  color: #0f172a;
  font-weight: 600;
}

.bb-phone-field input {
  padding-left: 16px;
}

.bb-clear-dates {
  border: none;
  background: none;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.bb-date-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #0f172a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000001;
}

.bb-date-toast.is-visible {
  opacity: 1;
}

@media (max-width: 1023px) {
  .bb-booking-top-row {
    grid-template-columns: 1fr;
  }

  .bb-date-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- PRICE SUMMARY --- */
.bb-price-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 20px 0;
  border: 1px solid #e2e8f0;
}

.bb-price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 13px;
  color: #475569;
}

.bb-total-row {
  border-top: 1px solid #e2e8f0;
  padding-top: 6px;
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.bb-deposit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0f172a;
}

.bb-deposit-badge {
  background: #0f172a;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  text-transform: uppercase;
}

.bb-price-details {
  margin-top: 8px;
}

.bb-price-details summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.bb-price-details[open] summary {
  margin-bottom: 8px;
}

/* --- INPUTS --- */
.bb-personal-info {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.bb-dual-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bb-field {
  position: relative;
}

.bb-field input {
  width: 100%;
  padding: 24px 12px 8px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 16px;
  background: transparent;
}

.bb-field label {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 14px;
  color: #64748b;
  transition: 0.2s;
  pointer-events: none;
}

.bb-field input:focus ~ label,
.bb-field input:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- SUBMIT --- */
.bb-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #2980b9, #2563eb);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  margin-top: 24px;
  cursor: pointer;
  transition: 0.2s;
}

.bb-submit-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

/* --- CHECKBOX --- */
.bb-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  cursor: pointer;
  position: relative;
}

.bb-checkbox-container input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bb-checkmark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bb-checkbox-container input:checked + .bb-checkmark {
  background: #0f172a;
  border-color: #0f172a;
}

.bb-checkbox-container input:checked + .bb-checkmark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
}

.bb-legal-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.bb-legal-text a {
  color: #0f172a;
  text-decoration: underline;
}

/* ── Optional / Required checkbox blocks ─────────────────────────────── */
.bb-age-check,
.bb-legal-check {
  position: relative;
  border-radius: 8px;
  padding: 12px 14px 14px;
  margin-top: 8px;
}

.bb-professional-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.bb-age-check,
.bb-legal-check {
  background: #fff;
  border: 1px solid #1a3c5e;
}

.bb-age-check .bb-checkbox-container,
.bb-legal-check .bb-checkbox-container {
  margin-top: 6px;
}

.bb-field-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.6;
}

.bb-field-badge--optional {
  background: #f1f5f9;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}

.bb-field-badge--required {
  background: #eff6ff;
  color: #1a3c5e;
  border: 1px solid #bfdbfe;
}

@media (max-width: 600px) {
  .bb-dual-inputs {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 767px) {
  .bb-header {
    padding: 0;
    top: 0;
  }

}

.bb-burger {
  position: relative;
  width: 44px;
  height: 44px;  /* W3C minimum touch target 44×44px */
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
}

.bb-burger-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.bb-burger-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f8fafc;
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}

.bb-burger[aria-expanded="true"] .bb-burger-line:nth-child(2) {
  opacity: 0;
}

.bb-burger[aria-expanded="true"] .bb-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bb-burger[aria-expanded="true"] .bb-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bb-mobile-panel {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 12px;
}

.bb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* -------- Booking form styling -------- */
.bb-quote { margin: 14px 0; padding: 12px 14px; border:1px solid #e2e8f0; border-radius: 12px; background:#fff; }
.bb-quote-title { font-weight:700; color:#0f172a; font-size:14px; }
.bb-quote-value { margin-top:6px; font-size:18px; font-weight:800; color:#0f172a; }
.bb-quote-note { margin-top:6px; font-size:12px; color:#64748b; }

.bb-booking { max-width: 560px; }
.bb-row { margin: 12px 0; display: grid; gap: 6px; }
.bb-row input, .bb-row textarea { padding: 10px 12px; border: 1px solid #e2e8f0; border-radius: 12px; color:#0f172a; background:#fff; }
.bb-btn { padding: 12px 16px; border-radius: 12px; border: none; background: #0f172a; color: #fff; font-weight: 700; cursor: pointer; }
.bb-btn:hover { opacity: .92; }
.bb-note { margin-top: 10px; font-size: 12px; color: #64748b; }
.bb-alert { padding: 10px 12px; border-radius: 12px; margin-bottom: 12px; }
.bb-ok { background: #ecfdf5; border: 1px solid #a7f3d0; }
.bb-bad { background: #fef2f2; border: 1px solid #fecaca; }

/* =========================
   HOME EXPLORE PREVIEW
   ========================= */
.bb-explore-section {
  padding: 72px 0;
  background: #F8FAFC;
}

.bb-explore-header {
  text-align: center;
  margin-bottom: 24px;
}

.bb-explore-h2 {
  font-size: clamp(24px, calc(20px + 1vw), 32px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.bb-explore-lead {
  color: #475569;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.bb-explore-lead-line {
  display: block;
}

.bb-explore-lead-line + .bb-explore-lead-line {
  margin-top: 2px;
}

.bb-explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.bb-explore-card,
.bb-explore-grid .bb-article-card {
  height: 100%;
}

.bb-explore-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.bb-explore-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.bb-explore-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.bb-explore-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.45);
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.bb-explore-placeholder svg {
  width: 36px;
  height: 36px;
}

.bb-explore-content {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bb-explore-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.bb-explore-excerpt {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bb-explore-cta {
  margin-top: auto;
  font-weight: 600;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.bb-explore-footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .bb-explore-lead-line {
    display: inline;
  }

  .bb-explore-lead-line + .bb-explore-lead-line {
    margin-top: 0;
    margin-left: 4px;
  }

  .bb-explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .bb-explore-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bb-explore-card-link:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    transform: translateY(-2px);
  }

  .bb-explore-card-link:hover .bb-explore-img {
    transform: scale(1.04);
  }

  .bb-explore-card-link:hover .bb-explore-cta {
    text-decoration: underline;
  }
}

/* =========================
   HOME HERO
   ========================= */

.bb-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bb-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
  transition: background-image 600ms ease;
}

/* лёгкое затемнение для читаемости текста */
.bb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.28));
}

.bb-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.bb-hero__card {
  max-width: 760px;
  border-radius: 22px;
  padding: 22px 22px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.bb-hero__pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #2980B9;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2px;
}

.bb-hero__title {
  margin: 14px 0 8px;
  font-size: clamp(34px, calc(30px + 1.2vw), 44px);
  line-height: 1.08;
  color: #2C3E50;
  font-weight: 700;
}

.bb-hero__subtitle {
  margin: 0;
  color: #5f6b73; /* чуть темнее чем #7F8C8D */
  font-size: 16px;
  line-height: 1.6;
  max-width: 680px;
}

.bb-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.bb-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;  
  font-size: 15px;
  line-height: 1;
}

.bb-hero__btn--primary {
  background: #2980B9;
  color: #fff;
}

.bb-hero__btn--primary:hover { opacity: .92; }

.bb-hero__btn--outline {
  border: 2px solid #2980B9;
  color: #2980B9;
  background: transparent;
}

.bb-hero__btn--outline:hover {
  background: rgba(41,128,185,0.08);
}

.bb-hero__icon {
  font-size: 16px;
}

/* заглушка блока ниже */
.bb-home-next { padding: 48px 16px; }
.bb-home-next__inner { max-width: 1100px; margin: 0 auto; }
.bb-home-next h2 { margin: 0 0 8px; font-size: clamp(18px, calc(16px + 0.5vw), 22px); }
.bb-home-next p { margin: 0; color: #475569; }

/* адаптив */
@media (max-width: 768px) {
  /* .bb-hero__title font-size handled by clamp() above */
  .bb-hero { min-height: 88vh; }
  .bb-hero__card { padding: 18px; }
}

/* =========================
   BLOCK: Quick Facts
   ========================= */

.bb-facts-section {
    padding: 72px 0;
    background-color: #2980B9; /* Очень легкий серо-голубой оттенок */
}

.bb-facts-header {
    text-align: center;
    margin-bottom: 32px;
}

.bb-facts-title {
    font-size: clamp(24px, calc(20px + 1vw), 32px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.bb-facts-subtitle {
    font-size: 16px;
    color: #ffffff; /* Slate 500 */
    margin: 0;
}

.bb-facts-grid {
    display: grid;
    gap: 18px;
    /* На десктопе 5 в ряд */
    grid-template-columns: repeat(5, 1fr);
    max-width: 980px;
    margin: 0 auto;
}

.bb-fact-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.bb-fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
    background: #ffffff;
}

.bb-fact-icon {
    margin-bottom: 18px;
    color: #2980B9; /* Брендовый акцент */
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-fact-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px; /* Тонкие изящные линии */
}

.bb-fact-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bb-fact-value {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.bb-fact-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* --- Адаптивность --- */

@media (max-width: 1100px) {
    .bb-facts-grid {
        grid-template-columns: repeat(3, 1fr); /* Планшет: 3 в ряд (2 переедут ниже) */
    }
}

@media (max-width: 768px) {
    .bb-facts-section {
        padding: 60px 0;
    }
    .bb-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Мобильный/Узкий планшет: 2 в ряд */
        gap: 14px;
    }
    .bb-fact-item {
        padding: 18px 14px;
    }
    .bb-facts-grid .bb-fact-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 220px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bb-fact-item {
        padding: 16px 12px;
    }
}

/* =========================
   BLOCK: The Experience (Optimized)
   ========================= */

.bb-experience-section {
    padding: 60px 0; /* Уменьшили отступ секции */
    background: #F8FAFC;
}

.bb-experience-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px; /* Сжимаем контент к центру */
    margin: 0 auto;
    align-items: flex-start;
}

/* Левая колонка */
.bb-experience-intro {
    flex: 1 1 320px;
    text-align: left;
}

.bb-experience-h2 {
    font-size: clamp(24px, calc(20px + 1vw), 32px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.bb-experience-lead {
    font-size: 16px; /* Такая же, как в блоке Quick Facts */
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Правая колонка */
.bb-experience-list {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    gap: 24px; /* Уменьшили интервалы между пунктами */
}

.bb-exp-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.bb-exp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bb-exp-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #2980B9;
    margin-top: 3px;
}

.bb-exp-h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.bb-exp-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* --- Адаптивность --- */

@media (max-width: 900px) {
    .bb-experience-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .bb-experience-intro {
        text-align: center;
        flex: 1 1 100%;
    }
    .bb-experience-list {
        flex: 1 1 100%;
        width: 100%;
    }
    .bb-exp-item {
        text-align: left; /* Текст преимуществ оставим слева для читаемости */
    }
}

/* =========================
   BLOCK: Spaces & Atmosphere
   ========================= */

.bb-spaces-section {
    padding: 24px 0 80px;
    background: #e4f5ff; /* Легкий тон, чтобы отделить от белого блока выше */
}

.bb-spaces-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Теги-преимущества (Pills) */
.bb-spaces-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.bb-tag {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.bb-tag:hover {
    border-color: #2980B9;
    color: #2980B9;
}

.bb-spaces-h2 {
    font-size: clamp(24px, calc(20px + 1vw), 32px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.bb-spaces-lead {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* ГАЛЕРЕЯ: Асимметричная сетка */
.bb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    margin-bottom: 40px;
}

.bb-gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #e2e8f0;
}

.bb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Расстановка элементов */
.item-main { grid-column: 1 / 3; grid-row: 1 / 3; } /* Большая картинка слева */
.item-secondary { grid-column: 3 / 5; grid-row: 1 / 2; } /* Горизонтальная сверху справа */
.item-tertiary { grid-column: 3 / 4; grid-row: 2 / 3; } /* Квадрат снизу */
.item-small { grid-column: 4 / 5; grid-row: 2 / 3; } /* Квадрат снизу */
/* Workspace спрячем в мобилке или добавим в ряд ниже, если нужно 5 фото */
.item-small-2 { display: none; } /* В сетке 4x2 уместилось 4 фото красиво */

/* Если принципиально 5 фото, меняем сетку на 12 колонок */
@media (min-width: 1024px) {
    .bb-gallery-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 300px 250px;
    }
    .item-main      { grid-column: 1 / 7; grid-row: 1 / 3; }
    .item-secondary { grid-column: 7 / 13; grid-row: 1 / 2; }
    .item-tertiary  { grid-column: 7 / 9; grid-row: 2 / 3; }
    .item-small     { grid-column: 9 / 11; grid-row: 2 / 3; }
    .item-small-2   { grid-column: 11 / 13; grid-row: 2 / 3; display: block; }
}

/* Эффекты при наведении */
.bb-gallery-item:hover img {
    transform: scale(1.05);
}

.bb-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bb-gallery-item:hover .bb-gallery-overlay {
    opacity: 1;
}

.bb-gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Кнопка внизу */
.bb-spaces-footer {
    text-align: center;
}

.bb-btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #0f172a;
    border-radius: 14px;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bb-btn-outline:hover {
    background: #0f172a;
    color: #fff;
}

/* Адаптивность */
@media (max-width: 768px) {
    .bb-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .item-main, .item-secondary, .item-tertiary, .item-small, .item-small-2 {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
    .item-small-2 { display: block; }
}

/* =========================
   BLOCK: Guest Reviews
   ========================= */

.bb-reviews-section {
    padding: 100px 0;
    background-color: #F8FAFC;
    overflow: hidden;
}

.bb-reviews-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.bb-reviews-h2 {
    font-size: clamp(24px, calc(20px + 1vw), 32px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.bb-reviews-lead {
    font-size: 16px;
    color: #64748b;
}

/* Сетка отзывов */
.bb-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.bb-review-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Акцент на центральной карточке */
.bb-review-featured {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    transform: scale(1.05);
    z-index: 2;
}

.bb-review-stars {
    color: #0f172a; /* Темные звезды выглядят дороже */
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.bb-review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    font-style: italic;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.bb-review-author {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

/* Кнопка "View all" */
.bb-reviews-footer {
    text-align: center;
}

.bb-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: gap 0.2s;
}

.bb-btn-text:hover {
    gap: 15px;
    color: #2980B9;
}

/* --- Адаптивность --- */

@media (max-width: 1024px) {
    .bb-reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .bb-review-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .bb-reviews-section {
        padding: 70px 0;
    }
    .bb-review-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   BLOCK: Check Availability (Updated)
   ========================================================================== */

.bb-check-section {
    position: relative;
    padding: 100px 0;
    background-color: #2980B9;
    color: #fff;
    overflow: hidden;
}

/* Сетка для десктопа */
.bb-check-content {
    position: relative;
    z-index: 10;
    display: grid;
    /* Две колонки: левая подстраивается, правая (календарь) фиксирована */
    grid-template-columns: 1fr 400px; 
    grid-template-areas: 
        "text calendar"
        "btns calendar"
        "trust calendar";
    gap: 20px 60px; /* Отступы между элементами */
    align-items: center;
}

/* 1. ЗАГОЛОВКИ И ТЕКСТ */
.bb-check-text-group {
    grid-area: text;
    /* --- МЕНЯТЬ ТУТ: Сдвинуть текст правее от края экрана --- */
    padding-left: 40px; 
}

.bb-check-h2 {
    font-size: clamp(28px, calc(22px + 1.7vw), 42px);
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.bb-check-sub {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

/* 2. КНОПКИ */
.bb-check-actions-group {
    grid-area: btns;
    display: flex;
    gap: 20px;
    /* --- МЕНЯТЬ ТУТ: Сдвинуть кнопки так же как текст --- */
    padding-left: 40px; 
}

/* Кнопка Book Now (С обводкой) */
.bb-check-btn-book {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Стили: */
    border: 2px solid #fff; /* ОБВОДКА */
    background: transparent; /* Без заливки */
    color: #fff;
}

.bb-check-btn-book:hover {
    background: #fff;
    color: #2980B9;
}

/* Кнопка WhatsApp (Без всего) */
.bb-check-btn-wa {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    text-decoration: underline; /* Подчеркивание для видимости */
    color: #fff;
    background: transparent;
    border: none;
    padding: 14px 0;
}

.bb-check-btn-wa:hover {
    opacity: 0.8;
}

/* 3. ТЕКСТ ПОД КНОПКАМИ */
.bb-check-trust {
    grid-area: trust;
    font-size: 13px;
    opacity: 0.7;
    /* --- МЕНЯТЬ ТУТ: Сдвинуть текст так же как все остальное --- */
    padding-left: 40px; 
}

/* 4. КАЛЕНДАРЬ */
.bb-check-calendar-wrapper {
    grid-area: calendar;
    background: #fff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    /* --- МЕНЯТЬ ТУТ: Ширина бокса с календарем --- */
    width: 360px; 
    justify-self: center;
}

/* --- АДАПТИВ (Мобильные устройства) --- */
@media (max-width: 991px) {
    .bb-check-content {
        display: flex;
        flex-direction: column; /* Элементы в один столбец */
        text-align: center;
        gap: 30px;
    }

    .bb-check-text-group, 
    .bb-check-actions-group,
    .bb-check-trust {
        padding-left: 0; /* Убираем отступы на мобилке */
    }

    /* МЕНЯЕМ ПОРЯДОК: Текст -> Календарь -> Кнопки -> Доверие */
    .bb-check-text-group     { order: 1; }
    .bb-check-calendar-wrapper { order: 2; width: 100%; max-width: 340px; }
    .bb-check-actions-group  { order: 3; flex-direction: column; gap: 10px; width: 100%; align-items: center; }
    .bb-check-trust          { order: 4; }

    .bb-check-btn-book { width: 100%; max-width: 280px; }
    /* .bb-check-h2 font-size handled by clamp() above */
}

/* Фоновые элементы из вашего исходника */
.bb-check-bg { position: absolute; inset: 0; z-index: 1; opacity: 0.1; background: repeating-linear-gradient(45deg, #fff 0, #fff 2px, transparent 2px, transparent 12px); }
.bb-check-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(41,128,185,0.9) 0%, rgba(41,128,185,0.7) 100%); }


/* ======================================================================
   FIXES (2026-01-14): HERO full-screen + Check Availability layout polish
   These rules are appended to override earlier ones.
   ====================================================================== */

/* HERO: cover full screen */
.bb-hero{
  min-height: calc(100svh + 20px); /* modern mobile-safe viewport + 20px */
}
@supports not (height: 100svh){
  .bb-hero{ min-height: calc(100vh + 20px); }
}

/* =========================
   Check Availability: bring calendar closer + align cleanly
   ========================= */

/* Desktop grid tuning */
@media (min-width: 992px){
  .bb-check-content{
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 16px 18px;          /* much tighter than 60px */
    align-items: start;      /* top-align columns */
  }

  /* Keep text in place (same left padding), but tighten internal spacing */
  .bb-check-text-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 80px;
  }

  .bb-check-h2{
    margin: 0;              /* avoid "separate words" feel */
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .bb-check-sub{
    margin: 0;
    max-width: 520px;
    line-height: 1.55;
  }

  /* Buttons grouped and aligned */
  .bb-check-actions-group{
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px;
    padding-left: 80px;
  }

  .bb-check-trust{
    margin-top: 2px;
    max-width: 520px;
    line-height: 1.45;
    padding-left: 80px;
  }

  /* Calendar column: move LEFT (no centering) */
  .bb-check-calendar-wrapper{
    width: 340px;
    justify-self: start;
    align-self: start;
    padding: 18px;
    display: flex;
    justify-content: center; /* center calendar inside the white box */
    align-items: center;
  }
}

/* Mobile: make the white box + calendar perfectly centered and not skewed */
@media (max-width: 991px){
  .bb-check-calendar-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    margin: 0 auto;
    align-self: center;
  }
}

/* Slightly soften WhatsApp link style so it looks like a grouped control */
.bb-check-btn-wa{
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ======================================================================
   Check Availability: marketing layout (no inline calendar)
   ====================================================================== */

.bb-check-content{
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "text"
    "btns"
    "trust";
  justify-items: center;
  text-align: center;
}

.bb-check-text-group,
.bb-check-actions-group,
.bb-check-trust{
  padding-left: 0;
  max-width: 640px;
  width: 100%;
}

.bb-check-actions-group{
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bb-check-calendar-wrapper{
  display: none;
}

@media (min-width: 992px){
  .bb-check-actions-group{
    justify-content: center;
  }
}

/* ======================================================================
   Check Availability: hero image layout
   ====================================================================== */

.bb-check-section--hero .bb-check-content {
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  grid-template-areas:
    "text media"
    "btns media"
    "trust media";
  justify-items: start;
  text-align: left;
}

.bb-check-section--hero .bb-check-text-group,
.bb-check-section--hero .bb-check-actions-group,
.bb-check-section--hero .bb-check-trust {
  max-width: 540px;
  width: 100%;
}

.bb-check-section--hero .bb-check-actions-group {
  justify-content: flex-start;
}

.bb-check-media {
  grid-area: media;
  position: relative;
  justify-self: end;
  align-self: center;
}

.bb-check-media-shape {
  width: min(420px, 38vw);
  aspect-ratio: 4 / 5;
  border-radius: 60% 40% 46% 54% / 48% 50% 50% 52%;
  overflow: hidden;
  box-shadow: 0 28px 50px rgba(15, 23, 42, 0.35);
  transform: rotate(-3deg);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.bb-check-media-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
}

@media (max-width: 991px){
  .bb-check-section--hero .bb-check-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "text"
      "btns"
      "trust";
    text-align: center;
    justify-items: center;
  }

  .bb-check-section--hero .bb-check-actions-group {
    justify-content: center;
  }

  .bb-check-media {
    display: none;
  }
}

/* Desktop: keep hero text + buttons left-aligned.
   Specificity (0,2,0) overrides the later @media (min-width:992px) block
   that resets text-align:center / justify-items:center for non-hero layouts. */
@media (min-width: 992px) {
  .bb-check-section--hero .bb-check-text-group,
  .bb-check-section--hero .bb-check-actions-group,
  .bb-check-section--hero .bb-check-trust {
    text-align: left;
    padding-left: 0;
  }

  .bb-check-section--hero .bb-check-actions-group {
    justify-content: flex-start;
    align-items: center;
  }
}

/* ======================================================================
   Inside the Cottage: Lightbox gallery
   ====================================================================== */

.bb-gallery-item {
  cursor: pointer;
}

.bb-gallery-item:focus-visible {
  outline: 3px solid rgba(15, 23, 42, 0.4);
  outline-offset: 4px;
}

.bb-gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.bb-gallery-lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.bb-gallery-lightbox__panel {
  position: relative;
  max-width: min(980px, 92vw);
  width: 100%;
  background: #0f172a;
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.4);
}

.bb-gallery-lightbox__image {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.bb-gallery-lightbox__caption {
  margin-top: 12px;
  color: #e2e8f0;
  font-size: 14px;
  text-align: center;
}

.bb-gallery-lightbox__close,
.bb-gallery-lightbox__nav {
  position: absolute;
  top: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bb-gallery-lightbox__close {
  right: 16px;
}

.bb-gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.bb-gallery-lightbox__nav--prev {
  left: -10px;
}

.bb-gallery-lightbox__nav--next {
  right: -10px;
}

@media (max-width: 768px) {
  .bb-gallery-lightbox__panel {
    padding: 12px;
  }

  .bb-gallery-lightbox__nav--prev {
    left: 8px;
  }

  .bb-gallery-lightbox__nav--next {
    right: 8px;
  }
}

/* -------- Beachside Bliss footer -------- */
.site-footer {
  background: linear-gradient(180deg, rgba(11, 18, 28, 0.98) 0%, rgba(8, 12, 18, 1) 100%);
  color: rgba(255, 255, 255, 0.86);
  padding: 48px 0 64px;
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-inner {
  position: relative;
  padding: 24px 0 56px;
  overflow: hidden;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-brand {
  gap: 12px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.footer-heading {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.footer-heading-tight {
  margin-top: 8px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  line-height: 1.6;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-link:hover {
  opacity: 0.85;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.footer-follow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer-dot {
  opacity: 0.45;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-legal-link:hover {
  opacity: 0.85;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.65);
}

.footer-bigword {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  font-size: clamp(96px, 18vw, 220px);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-align: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  line-height: 0.75;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transition: letter-spacing 0.4s ease, opacity 0.4s ease;
}

.site-footer:hover .footer-bigword,
.footer-inner:hover .footer-bigword {
  letter-spacing: 0.36em;
  opacity: 0.1;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .footer-follow {
    letter-spacing: 0.08em;
  }

  .footer-bigword {
    bottom: -34px;
    font-size: clamp(84px, 20vw, 180px);
    letter-spacing: 0.24em;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 36px 0 52px;
  }

  .footer-shell {
    padding: 0 20px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-follow {
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: 0.05em;
  }

  .footer-dot {
    display: none;
  }

  .footer-bigword {
    bottom: -18px;
    font-size: clamp(68px, 24vw, 140px);
    letter-spacing: 0.16em;
    text-align: left;
  }
}

/* ==========================================================================
   ABOUT PAGE: EDITORIAL SPLIT HERO
   ========================================================================== */

.bb-about-creative {
    background: #f8fafc;
    overflow: hidden;
}

.bb-about-hero2 {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    margin-top: calc(var(--bb-header-height) * -1);
    padding: calc(var(--bb-header-height) * 2) 0 clamp(32px, 6vw, 72px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 15% 20%, rgba(226, 232, 240, 0.8), rgba(248, 250, 252, 0.7) 45%, rgba(255, 255, 255, 0.8) 100%);
}

.bb-about-hero2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(248, 250, 252, 0.95) 20%, rgba(241, 245, 249, 0.7) 55%, rgba(226, 232, 240, 0.4) 100%);
    z-index: 0;
}

.bb-about-hero2__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
}

.bb-about-hero2__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bb-about-hero2__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #0f172a;
}

.bb-about-hero2__title {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.bb-about-hero2__lead {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    max-width: 38ch;
    margin: 0;
}

.bb-about-hero2__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bb-about-hero2__actions .bb-btn {
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 16px;
}

.bb-about-hero2__actions .bb-link {
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    padding-bottom: 2px;
}

.bb-about-hero2__actions .bb-link:hover {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.45);
}

.bb-about-hero2__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
}

.bb-about-hero2__media {
    position: relative;
}

.bb-about-hero2__frame {
    position: relative;
    padding: clamp(16px, 2vw, 22px);
    height: clamp(240px, 38vw, 480px);
    border-radius: 26px 26px 140px 26px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bb-about-hero2__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0) 60%);
    pointer-events: none;
}

.bb-about-hero2__frame:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 45px 90px rgba(15, 23, 42, 0.16);
}

.bb-about-hero2__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 110px 20px;
    position: relative;
    z-index: 1;
}


@media (max-width: 1023px) {
    .bb-about-hero2__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 32px;
    }

    .bb-about-hero2__title {
        font-size: clamp(30px, 4.2vw, 48px);
    }

    .bb-about-hero2__image {
        height: clamp(240px, 42vw, 420px);
    }
}

@media (max-width: 599px) {
    .bb-about-hero2 {
        min-height: unset;
        padding-top: calc((var(--bb-header-height) * 2) + 12px);
        padding-bottom: clamp(20px, 4vw, 36px);
        align-items: flex-start;
    }

    .bb-about-hero2__inner {
        grid-template-columns: 1fr;
    }

    .bb-about-hero2__media {
        order: 0;
    }

    .bb-about-hero2__frame {
        height: clamp(200px, 60vw, 320px);
    }

    .bb-about-hero2__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .bb-about-hero2__actions .bb-btn,
    .bb-about-hero2__actions .bb-link {
        width: 100%;
    }

}

/* ==========================================================================
   ABOUT PAGE: BLOCK 2 (AT A GLANCE)
   ========================================================================== */

.bb-about-glance {
    padding: 56px 0;
    background: #2980B9;
    border-top: none;
}

.bb-glance-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.bb-glance-h2 {
    font-size: clamp(26px, calc(23px + 0.8vw), 32px);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.bb-glance-intro {
    font-size: 16px;
    color: #64748b;
}

/* Сетка фактов */
.bb-glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 0;
}

/* Для 5 элементов делаем красивое распределение на десктопе */
@media (min-width: 1200px) {
    .bb-glance-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.bb-glance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.bb-glance-icon {
    color: #2980B9; /* Акцентный цвет из Hero */
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-glance-content strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bb-glance-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Футер блока с микро-фактами */
.bb-glance-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

.bb-micro-facts {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.bb-dot {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .bb-about-glance {
        padding: 44px 0;
    }
    .bb-glance-grid {
        grid-template-columns: 1fr 1fr; /* 2 колонки по ТЗ */
        gap: 20px;
    }
    /* .bb-glance-h2 font-size handled by clamp() above */
}

@media (max-width: 480px) {
    .bb-glance-grid {
        grid-template-columns: 1fr; /* 1 колонка на совсем маленьких экранах */
    }
}

/* ==========================================================================
   ABOUT PAGE: CINEMATIC CATALOG
   ========================================================================== */

.bb-catalog-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.bb-catalog-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.bb-catalog-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.bb-catalog-header p {
    color: #64748b;
    font-size: 18px;
}

/* --- ТИП 1: ШИРОКАЯ СПЛИТ-КАРТОЧКА (Wide Split) --- */
.bb-split-card {
    display: flex;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    border: 1px solid #f1f5f9;
}

.bb-split-card.bb-reversed {
    flex-direction: row-reverse;
}

.bb-split-gallery {
    flex: 1.3;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Слайдер внутри карточки */
.bb-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Скрыть скроллбар */
    height: 100%;
}
.bb-gallery-track::-webkit-scrollbar { display: none; }

.bb-gallery-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    scroll-snap-align: center;
}

/* Кнопки навигации слайдера */
.bb-gallery-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.bb-nav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bb-nav-btn:hover { background: #fff; transform: scale(1.1); }

/* Контент сплит-карточки */
.bb-split-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bb-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2980B9;
    margin-bottom: 16px;
}

.bb-split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
}

.bb-split-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Список удобств */
.bb-amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bb-amenity-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.bb-amenity-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2980B9;
    font-weight: 800;
}

/* --- ТИП 2: ДВОЙНАЯ СЕТКА (Dual Grid) --- */
.bb-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.bb-vertical-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.bb-card-image {
    height: 300px;
    position: relative;
}
.bb-card-image img { width: 100%; height: 100%; object-fit: cover; }

.bb-img-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.bb-card-text { padding: 30px; }
.bb-amenity-list.small { grid-template-columns: 1fr; }

/* --- ТИП 3: ТРОЙНАЯ СЕТКА (Compact) --- */
.bb-triple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.bb-compact-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
}

@media (min-width: 992px) {
    .bb-compact-card {
        height: 280px;
    }
}

.bb-compact-card img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s;
}
.bb-compact-card:hover img { transform: scale(1.1); }

.bb-compact-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}

.bb-compact-info h4 { margin: 0 0 5px 0; font-size: 18px; color:#fff; }
.bb-compact-info span { font-size: 13px; opacity: 0.9; }

/* --- АДАПТИВ --- */
@media (max-width: 991px) {
    .bb-split-card, .bb-split-card.bb-reversed {
        flex-direction: column;
        height: auto;
    }
    .bb-split-gallery { height: 300px; flex: none; }
    .bb-split-content { padding: 30px; }
    
    .bb-dual-grid, .bb-triple-grid {
        grid-template-columns: 1fr; /* Одна колонка */
    }
    
    .bb-amenity-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ABOUT PAGE: BLOCK 4 (AMENITIES OVERVIEW)
   ========================================================================== */

.bb-amenities-section {
    padding: 60px 0;
    background: #ffffff;
}

.bb-amenities-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.bb-amenities-h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.bb-amenities-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
}

/* Список топ-10 */
.bb-top-amenities {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.bb-top-amenities li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

.bb-icon-box {
    width: 24px;
    height: 24px;
    color: #2980B9; /* Акцентный цвет */
    flex-shrink: 0;
}

/* Кнопка (about amenities trigger only) */
#open-amenities.bb-btn-outline {
    background: transparent;
    border: 2px solid #2980B9;
    color: #2980B9;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

#open-amenities.bb-btn-outline:hover {
    background: #2980B9;
    color: #fff;
}

/* Картинка справа */
.bb-amenities-visual img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* --- MODAL STYLES (about page amenities modal only) --- */
#amenities-modal.bb-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#amenities-modal.bb-modal.active { display: flex; }

#amenities-modal .bb-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

#amenities-modal .bb-modal-container {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 32px;
    overflow: hidden;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

#amenities-modal .bb-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: #f1f5f9;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
}

#amenities-modal .bb-modal-body {
    padding: 60px;
    overflow-y: auto;
}

#amenities-modal .bb-modal-h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
}

#amenities-modal .bb-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

#amenities-modal .bb-modal-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2980B9;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

#amenities-modal .bb-modal-col ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

#amenities-modal .bb-modal-col li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #475569;
}

/* --- ADAPTIVE --- */
@media (max-width: 1024px) {
    .bb-amenities-layout { grid-template-columns: 1fr; gap: 40px; }
    .bb-amenities-visual { order: -1; }
    .bb-top-amenities { grid-template-columns: 1fr; }
    #amenities-modal .bb-modal-body { padding: 40px 30px; }
    #amenities-modal .bb-modal-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   ABOUT PAGE: BLOCK 5 (SYNCED BOOKING)
   ========================================================================== */

.bb-about-booking {
    padding: 100px 0;
    background: #f8fafc;
}

.bb-booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bb-booking-header {
    margin-bottom: 40px;
}

.bb-booking-h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.bb-booking-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.bb-booking-subtitle span {
    font-size: 14px;
    color: #94a3b8;
}

/* Кнопки действий */
.bb-booking-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.bb-btn-primary {
    background: #2980B9;
    color: #fff;
    padding: 16px 42px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(41, 128, 185, 0.25);
}

.bb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(41, 128, 185, 0.35);
    background: #2471a3;
}

.bb-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
    font-size: 16px;
}

.bb-btn-whatsapp:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 768px) {
    .bb-about-booking { padding: 60px 0; }
    .bb-booking-actions { flex-direction: column; gap: 20px; }
    .bb-btn-primary { width: 100%; max-width: 300px; }
}

/* ==========================================================================
   ABOUT PAGE: BLOCK 6 (HOUSE RULES & SAFETY)
   ========================================================================== */

.bb-rules-section {
    padding: 60px 0;
    background: #fdfdfd;
    border-top: 1px solid #f1f5f9;
}

.bb-rules-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.bb-rules-intro h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.bb-rules-intro p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.bb-rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.bb-rules-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    /* Очень легкая тень, чтобы не перегружать */
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}

.bb-rules-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0f172a;
    display: flex;
    align-items: center;
}

.bb-rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bb-rules-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.bb-rule-icon {
    width: 22px;
    height: 22px;
    color: #64748b; /* Нейтральный цвет */
    flex-shrink: 0;
    margin-top: 2px;
}

.bb-rule-text {
    font-size: 15px;
    line-height: 1.5;
    color: #334155;
}

.bb-rule-text strong {
    color: #0f172a;
}

.bb-security-note {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
    font-style: italic;
}

/* Стили для бейджей внизу */
.bb-rules-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bb-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

/* Адаптив */
@media (max-width: 991px) {
    .bb-rules-grid {
        grid-template-columns: 1fr;
    }
    .bb-rules-card {
        padding: 30px;
    }
}
/* ==========================================================================
   ABOUT PAGE: BLOCK 7 (MEET YOUR HOST)
   ========================================================================== */

.bb-host-section {
    padding: 60px 0;
    background: #ffffff;
}

.bb-host-card {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Фото хоста */
.bb-host-image-wrapper {
    flex: 0 0 400px;
    position: relative;
}

.bb-host-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(15, 23, 42, 0.1);
}

/* Контентная часть */
.bb-host-content {
    flex: 1;
}

.bb-host-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2980B9;
    margin-bottom: 12px;
}

.bb-lightbox-target {
    cursor: zoom-in;
}

.bb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    padding: 24px;
}

.bb-lightbox.is-open {
    display: flex;
}

.bb-lightbox__dialog {
    position: relative;
    width: min(92vw, 1100px);
    max-height: 90vh;
    max-height: 90svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    max-height: 90svh;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

.bb-lightbox__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.bb-lightbox__btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.bb-lightbox__btn--prev {
    left: -10px;
}

.bb-lightbox__btn--next {
    right: -10px;
}

.bb-lightbox__close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #0f172a;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.bb-lightbox__caption {
    position: absolute;
    bottom: -36px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #e2e8f0;
}

@media (max-width: 600px) {
    .bb-lightbox {
        padding: 16px;
    }

    .bb-lightbox__btn--prev,
    .bb-lightbox__btn--next {
        width: 38px;
        height: 38px;
    }

    .bb-lightbox__close {
        top: 6px;
        right: 6px;
    }

    .bb-lightbox__caption {
        bottom: -28px;
        font-size: 12px;
    }
}

.bb-host-h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0f172a;
}

.bb-intro-greeting {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px !important;
}

.bb-host-text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Сигналы доверия */
.bb-host-trust-signals {
    display: flex;
    gap: 25px;
    margin: 35px 0;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.bb-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.bb-trust-item svg {
    width: 18px;
    height: 18px;
    color: #2980B9;
}

/* Кнопка контакта */
.bb-btn-host-contact {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #0f172a;
    color: #0f172a;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.bb-btn-host-contact:hover {
    background: #0f172a;
    color: #ffffff;
}

/* --- АДАПТИВ --- */
@media (max-width: 1024px) {
    .bb-host-card {
        gap: 40px;
    }
    .bb-host-image-wrapper {
        flex: 0 0 320px;
    }
    .bb-host-photo {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .bb-host-card {
        flex-direction: column;
        text-align: center;
    }
    .bb-host-image-wrapper {
        flex: none;
        width: 72%;
        max-width: 260px;
        margin: 0 auto;
    }
    .bb-host-photo {
        height: auto;
        aspect-ratio: 4 / 5;
        border-radius: 28px;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    }
    .bb-host-trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Meet Your Host — mobile refinements */
@media (max-width: 767px) {
    .bb-host-section {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .bb-host-h2 {
        font-size: 34px;
        line-height: 1.05;
        letter-spacing: -0.03em;
        margin-top: 28px;
        margin-bottom: 16px;
    }

    .bb-intro-greeting {
        font-size: 15px;
        font-weight: 700;
        color: #4b5b73;
        margin-bottom: 14px !important;
    }

    .bb-host-text p:not(.bb-intro-greeting) {
        font-size: 16px;
        line-height: 1.7;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .bb-host-trust-signals {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
        margin-top: 20px;
    }

    .bb-trust-item {
        padding: 11px 14px;
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.035);
        border: 1px solid rgba(15, 23, 42, 0.06);
        justify-content: flex-start;
        width: 100%;
    }

    .bb-host-cta {
        margin-top: 0;
    }

    .bb-btn-host-contact {
        margin-top: 28px;
        min-height: 52px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* About page — reduce inter-section gaps on mobile.
   Desktop uses 60px section padding which creates 120px+ dead space
   between stacked sections on narrow screens. */
@media (max-width: 767px) {
    .bb-catalog-section     { padding-top: 36px; padding-bottom: 36px; }
    .bb-split-card          { margin-bottom: 32px; }
    .bb-amenities-section   { padding-top: 36px; padding-bottom: 36px; }
    .bb-rules-section       { padding-top: 36px; padding-bottom: 36px; }
    .bb-about-glance        { padding-top: 36px; padding-bottom: 36px; }
}

/* ==========================================================================
   ABOUT PAGE: BLOCK 8 (LOCATION & MAP)
   ========================================================================== */

.bb-location-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.bb-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.bb-location-h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.bb-location-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.bb-location-text strong {
    color: #0f172a;
}

/* Список преимуществ */
.bb-location-highlights {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.bb-location-highlights li {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bb-location-highlights li span {
    color: #2980B9;
    font-weight: 900;
}

/* Micro-CTA */
.bb-location-cta {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.bb-location-cta p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 10px !important;
}

.bb-link-arrow {
    font-weight: 700;
    color: #2980B9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.bb-link-arrow:hover {
    gap: 12px;
}

/* Контейнер карты */
.bb-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: #e5e7eb; /* Цвет-заглушка до загрузки */
}

/* Адаптивность */
@media (max-width: 1024px) {
    .bb-location-grid {
        gap: 50px;
        grid-template-columns: 1fr;
    }
    .bb-location-content {
        order: 1;
    }
    .bb-location-map-container {
        order: 2;
    }
    .bb-map-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .bb-location-section {
        padding: 60px 0;
    }
    .bb-location-h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   ABOUT PAGE: BLOCK 9 (FINAL CTA)
   ========================================================================== */

.bb-final-cta-section {
    padding: 120px 0;
    /* Мягкий coastal градиент */
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Опционально: легкий паттерн на фоне */
.bb-final-cta-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#2980b9 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

.bb-final-cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 2;
}

.bb-final-h2 {
    font-size: clamp(28px, calc(24px + 1vw), 36px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.bb-final-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Календарь */
.bb-final-calendar-wrapper {
    margin-bottom: 40px;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

/* Кнопки */
.bb-final-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.bb-btn-wa-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: 2px solid #25D366;
    border-radius: 100px;
    color: #128C7E;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.bb-btn-wa-outline:hover {
    background: #25D366;
    color: #fff;
}

@media (max-width: 768px) {
    .bb-final-cta-section { padding: 80px 0; }
    .bb-final-cta-card { padding: 40px 20px; }
    /* .bb-final-h2 font-size handled by clamp() above */
    .bb-final-actions { flex-direction: column; }
    .bb-btn-wa-outline { width: 100%; justify-content: center; }
}

/* ==========================================================================
   EXPLORE PAGE STYLES
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

.bb-explore-page { background: #f8fafc; }

.bb-explore-hero {
    margin-top: calc(var(--bb-header-height) * -1);
    padding: calc(110px + var(--bb-header-height)) 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 0.8) 100%), url('../img/explore/hero-explore.webp');
    background-size: cover;
    background-position: center;
}

.bb-explore-hero::before,
.bb-explore-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    z-index: 0;
}

.bb-explore-hero::before {
    background: radial-gradient(circle, #e0f2fe 0%, rgba(224, 242, 254, 0) 70%);
    top: -220px;
    left: -120px;
}

.bb-explore-hero::after {
    background: radial-gradient(circle, #fef3c7 0%, rgba(254, 243, 199, 0) 70%);
    bottom: -240px;
    right: -160px;
}

.bb-explore-hero .bb-container {
    position: relative;
    z-index: 1;
}

.bb-explore-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.bb-explore-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #475569;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.bb-explore-h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.bb-explore-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 32px;
}

/* Сетка статей */
.bb-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 36px;
    padding-bottom: 60px;
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}

.bb-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.bb-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bb-skeleton-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 16px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    border: 1px solid #e2e8f0;
}

.bb-skeleton-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: bb-shimmer 1.8s infinite;
}

.bb-skeleton-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    background: #e2e8f0;
}

.bb-skeleton-lines {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.bb-skeleton-lines span {
    height: 12px;
    border-radius: 999px;
    background: #e2e8f0;
}

.bb-skeleton-lines span:nth-child(2) {
    width: 80%;
}

.bb-skeleton-lines span:nth-child(3) {
    width: 60%;
}

@keyframes bb-shimmer {
    100% {
        transform: translateX(100%);
    }
}

.bb-article-card {
    background: #ffffff;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    overflow: visible;
    will-change: transform;
}

.bb-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

.bb-card-thumb {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    margin: 12px;
    border-radius: 20px;
    overflow: hidden;
}

.bb-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
    will-change: transform;
}

.bb-article-card:hover .bb-card-thumb img { transform: scale(1.05); }

.bb-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

/* Цвета тегов */
.tag-blue { background: #2980B9; }
.tag-orange { background: #E67E22; }
.tag-green { background: #27AE60; }
.tag-purple { background: #8E44AD; }
.tag-teal { background: #0E7490; }
.tag-sand { background: #CA8A04; }
.tag-slate { background: #64748B; }
.tag-default { background: #334155; }

.bb-card-tag.tag-blue,
.bb-card-tag.tag-orange,
.bb-card-tag.tag-green,
.bb-card-tag.tag-purple,
.bb-card-tag.tag-teal,
.bb-card-tag.tag-sand,
.bb-card-tag.tag-slate,
.bb-card-tag.tag-default {
    background: rgba(255, 255, 255, 0.75);
    color: #0f172a;
}

.bb-card-body { padding: 16px 22px 24px; }

.bb-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.bb-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #0f172a;
    background: rgba(148, 163, 184, 0.15);
}

.bb-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 999px;
    background: transparent;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bb-card-button:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.7);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.bb-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.35;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bb-card-body h3 a { color: #0f172a; text-decoration: none; }
.bb-card-body p { color: #64748b; font-size: 0.95rem; line-height: 1.6; }

.bb-card-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.bb-card-meta {
    color: #94a3b8;
}

.bb-card-meta-dot {
    font-size: 0.8rem;
}

.bb-featured-section {
    padding: 0 0 80px;
}

.bb-featured-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 24px 28px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.bb-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 10px;
}

.bb-featured-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: #0f172a;
    margin-bottom: 12px;
}

.bb-featured-header p {
    color: #64748b;
}

.bb-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.bb-featured-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: none;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
}

.bb-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.bb-featured-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.bb-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bb-featured-img {
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    transform: scale(1);
    transition: transform 0.5s ease;
}

.bb-featured-media:hover .bb-featured-img {
    transform: scale(1.02);
}

.bb-featured-card:hover .bb-featured-media img {
    transform: scale(1.04);
}

.bb-featured-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}

.bb-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 28px 30px;
    background: #ffffff;
    color: #0f172a;
}

.bb-featured-body h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.bb-featured-body h3 a {
    color: #0f172a;
    text-decoration: none;
}

.bb-featured-body p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.bb-filter-section {
    padding: 32px 0 50px;
}

.bb-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    justify-content: center;
}

.bb-filter-pill {
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.bb-filter-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(14, 116, 144, 0.4);
}

.bb-filter-pill.is-active {
    background: #0f172a;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.bb-load-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.bb-btn-outline {
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid #0f172a;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bb-btn-outline.is-loading {
    color: transparent;
}

.bb-btn-outline.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #0f172a;
    border-top-color: transparent;
    animation: bb-spin 0.8s linear infinite;
}

@keyframes bb-spin {
    to { transform: rotate(360deg); }
}

.bb-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
}

.bb-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(18, 140, 126, 0.3);
}

.bb-btn-outline:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bb-hidden {
    display: none !important;
}

.bb-filter-hidden {
    display: none !important;
}

.bb-explore-empty {
    margin-top: 20px;
    text-align: center;
    color: #64748b;
    display: none;
}

.bb-explore-empty p {
    margin-bottom: 16px;
}

.bb-btn-outline:focus-visible,
.bb-btn-primary:focus-visible,
.bb-btn-wa:focus-visible,
.bb-booking-trigger:focus-visible {
    outline: 3px solid rgba(41, 128, 185, 0.4);
    outline-offset: 3px;
}

.bb-explore-empty.is-visible {
    display: block;
}

.bb-explore-cta {
    padding: 80px 0 100px;
}

.bb-explore-cta .bb-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bb-cta-box {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.12), rgba(37, 211, 102, 0.1));
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(41, 128, 185, 0.2);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.bb-cta-box h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 12px;
    color: #0f172a;
}

.bb-cta-box p {
    color: #475569;
    margin-bottom: 24px;
}

.bb-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.bb-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bb-modal.active {
    display: flex;
}

.bb-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
}

.bb-modal-container {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.bb-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
}

/* Креативный заголовок статьи */
.bb-single-article {
    background: #ffffff;
}

.bb-article-header {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.bb-article-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.bb-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2980B9;
    font-weight: 700;
    text-decoration: none;
}

.bb-read-info {
    color: #64748b;
    font-weight: 600;
}

.bb-article-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.bb-article-info {
    z-index: 2;
}

.bb-article-title {
    font-size: clamp(36px, 6vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 20px 0;
    color: #0f172a;
}

.bb-article-excerpt,
.bb-article-subtitle {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
}

.bb-article-subtitle {
    margin: 0;
    font-weight: 600;
}

.bb-article-image-wrapper {
    position: relative;
}

.bb-floating-img {
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.bb-floating-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.bb-category-badge a {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(41, 128, 185, 0.1);
    color: #2980B9;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.bb-category-badge .bb-card-tag {
    position: static;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #0f172a;
    text-transform: uppercase;
}

.bb-article-body {
    padding: 0 0 80px;
    background: #ffffff;
}

.bb-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    align-items: start;
}

.bb-article-main {
    min-width: 0;
}

.bb-narrow-content {
    max-width: 720px;
    margin: -80px auto 0;
    background: #fff;
    padding: 60px;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.bb-narrow-content .prose {
    line-height: 1.7;
    color: #334155;
    font-size: 1.125rem;
}

.bb-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 3px;
    background: rgba(15, 23, 42, 0.08);
}

.bb-reading-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: #2980B9;
    transition: width 0.2s ease-out;
}

.bb-toc {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #e2e8f0;
    display: none;
}

.bb-toc.is-visible {
    display: block;
}

.bb-toc-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.bb-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.bb-toc-list a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
}

.bb-toc-list a.is-active,
.bb-toc-list a:hover {
    color: #2980B9;
}

.prose p {
    margin-bottom: 1.35em;
}

.prose > p:first-of-type::first-letter {
    float: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin-right: 0;
    color: inherit;
}

.prose h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 1.65em 0 0.7em;
    position: relative;
    color: #0f172a;
}

.prose h3 {
    font-size: 24px;
    line-height: 1.25;
    margin: 1.4em 0 0.55em;
    color: #0f172a;
}

.prose h2 .bb-anchor-link {
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
    opacity: 0;
    color: #2980B9;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.prose h2:hover .bb-anchor-link {
    opacity: 1;
}

.prose blockquote {
    border-left: 4px solid #38bdf8;
    background: #f8fafc;
    padding: 28px 32px;
    margin: 2em 0;
    position: relative;
    border-radius: 16px;
    color: #1e293b;
    font-style: normal;
}

.prose blockquote::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 3rem;
    color: rgba(56, 189, 248, 0.3);
}

.prose figure {
    margin: 2.5em auto;
}

.prose figcaption {
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}

.prose ul {
    list-style: none;
    padding-left: 0;
}

.prose ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 0.75em;
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2980B9;
}

.prose .alignwide,
.prose figure.wp-block-image.alignwide,
.prose .wp-block-gallery.alignwide {
    width: min(1000px, 100%);
    margin-left: calc(50% - min(500px, 50%));
}

.bb-tip {
    background: #ecfeff;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 24px 24px 24px 54px;
    position: relative;
    margin: 2em 0;
}

.bb-tip::before {
    content: "💡";
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 1.4rem;
}

.bb-share-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.bb-share-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.bb-share-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #0f172a;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bb-share-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.bb-article-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
    display: grid;
    gap: 16px;
}

.bb-stay-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 14px;
}

.bb-stay-thumb img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.bb-stay-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.bb-stay-body h3 {
    margin: 6px 0 16px;
    font-size: 1.1rem;
}


.bb-stay-book-btn {
    width: fit-content;
    margin: 0 auto;
    display: inline-flex;
    padding: 8px 14px;
    font-size: 0.85rem;
    min-height: 38px;
    border-radius: 10px;
}

.bb-stay-body {
    display: grid;
    justify-items: center;
    text-align: center;
}
.bb-sidebar-actions {
    display: grid;
    gap: 10px;
}

.bb-sidebar-btn {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #0f172a;
    cursor: pointer;
    text-align: center;
}

.bb-sidebar-btn:hover {
    background: #f8fafc;
}

.bb-mobile-booking {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 999;
}

.bb-mobile-booking.is-visible {
    display: flex;
}

.bb-mobile-booking .bb-btn-primary,
.bb-mobile-booking .bb-btn-wa {
    flex: 1;
}

.prose h3 {
    font-size: 24px;
    line-height: 1.25;
    margin: 1.4em 0 0.55em;
    color: #0f172a;
}

.prose h2 .bb-anchor-link {
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
    opacity: 0;
    color: #2980B9;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.prose h2:hover .bb-anchor-link {
    opacity: 1;
}

.prose blockquote {
    border-left: 4px solid #38bdf8;
    background: #f8fafc;
    padding: 28px 32px;
    margin: 2em 0;
    position: relative;
    border-radius: 16px;
    color: #1e293b;
    font-style: normal;
}

.prose blockquote::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 3rem;
    color: rgba(56, 189, 248, 0.3);
}

.prose figure {
    margin: 2.5em auto;
}

.prose figcaption {
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}

.prose ul {
    list-style: none;
    padding-left: 0;
}

.prose ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 0.75em;
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2980B9;
}

.prose .alignwide,
.prose figure.wp-block-image.alignwide,
.prose .wp-block-gallery.alignwide {
    width: min(1000px, 100%);
    margin-left: calc(50% - min(500px, 50%));
}

.bb-tip {
    background: #ecfeff;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 24px 24px 24px 54px;
    position: relative;
    margin: 2em 0;
}

.bb-tip::before {
    content: "💡";
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 1.4rem;
}

.bb-share-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.bb-share-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.bb-share-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #0f172a;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bb-share-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.bb-article-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
    display: grid;
    gap: 16px;
}

.bb-stay-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 14px;
}

.bb-stay-thumb img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.bb-stay-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.bb-stay-body h3 {
    margin: 6px 0 16px;
    font-size: 1.1rem;
}

.bb-sidebar-actions {
    display: grid;
    gap: 10px;
}

.bb-sidebar-btn {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #0f172a;
    cursor: pointer;
    text-align: center;
}

.bb-sidebar-btn:hover {
    background: #f8fafc;
}

.bb-mobile-booking {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 999;
}

.bb-mobile-booking.is-visible {
    display: flex;
}

.bb-mobile-booking .bb-btn-primary,
.bb-mobile-booking .bb-btn-wa {
    flex: 1;
}


.bb-inline-cta {
    margin-top: 40px;
    padding: 24px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.bb-inline-actions {
    display: flex;
    gap: 12px;
}

.bb-related-section {
    padding: 40px 0 60px;
    background: #f8fafc;
}

.bb-related-header {
    text-align: center;
    margin-bottom: 32px;
}

.bb-related-header h2 {
    font-size: clamp(24px, 4vw, 34px);
    margin-bottom: 8px;
}

.bb-related-header p {
    color: #64748b;
}

.bb-related-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 320px));
    justify-content: center;
}

.bb-related-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.bb-related-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin: 12px;
    border-radius: 20px;
}

.bb-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bb-related-card h3 {
    padding: 8px 20px 20px;
    font-size: 1rem;
}

.bb-related-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.bb-related-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}

.bb-article-nav {
    padding: 30px 0 60px;
}

.bb-article-nav-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
}

.bb-article-nav-link {
    text-align: center;
    color: #2980B9;
    font-weight: 600;
    text-decoration: none;
}

.bb-article-nav-link:first-child {
    text-align: left;
}

.bb-article-nav-link:last-child {
    text-align: right;
}

@media (max-width: 900px) {
    .bb-filter-bar {
        grid-template-columns: 1fr;
    }

    .bb-inline-actions {
        width: 100%;
        flex-direction: column;
    }

    .bb-inline-actions a {
        width: 100%;
        text-align: center;
    }

    .bb-article-nav-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bb-article-nav-link {
        text-align: center !important;
    }
}

@media (max-width: 1024px) {
    .bb-article-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .bb-article-title { font-size: 2.5rem; }
    .bb-floating-img { transform: none; }
    .bb-article-layout { grid-template-columns: 1fr; }
    .bb-article-sidebar { display: none; }
    .bb-narrow-content { margin-top: 40px; padding: 24px; box-shadow: none; }
    .bb-article-meta-top { flex-direction: column; }
}

@media (max-width: 640px) {
    .bb-articles-grid {
        grid-template-columns: 1fr;
    }

    .bb-explore-hero {
        padding: calc(80px + var(--bb-header-height)) 0 40px;
    }

    .bb-filter-bar {
        justify-content: center;
    }

    .bb-featured-grid {
        grid-template-columns: 1fr;
    }

    .bb-narrow-content {
        padding: 20px;
    }

}

@media (min-width: 1025px) {
    .bb-mobile-booking {
        display: none !important;
    }
}


/* -------- Reviews page -------- */
.bb-reviews-page {
  background: #fcfdfe;
  overflow: hidden;
}

.bb-reviews-hero {
  margin-top: calc(var(--bb-header-height) * -1);
  padding: calc(120px + var(--bb-header-height)) 0 80px;
}

.bb-reviews-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.bb-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748b;
}

.bb-reviews-h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  font-weight: 800;
  color: #0f172a;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.bb-reviews-subtitle {
  font-size: 1.1rem;
  color: #475569;
  max-width: 520px;
}

.bb-overall-stat {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.bb-stat-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, #1d4ed8 0%, #1a3c5e 100%);
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
}

.bb-stat-badge__line1 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}

.bb-stat-badge__line2 {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.bb-hero-stack {
  position: relative;
  min-height: 380px;
}

.bb-hero-card {
  position: absolute;
  inset: auto;
  top: 0;
  left: 0;
  transform: translate(var(--offset-x), var(--offset-y)) rotate(var(--rotation));
  transition: transform 0.4s ease;
}

.bb-hero-card-inner {
  width: min(320px, 75vw);
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.bb-hero-card-inner p {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.bb-hero-card-inner span {
  font-size: 0.85rem;
  color: #475569;
}

.bb-filter-container {
  position: sticky;
  top: 90px;
  z-index: 20;
  padding: 18px 0 24px;
  background: rgba(252, 253, 254, 0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.bb-filter-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.bb-filter-header h2 {
  font-size: 1.6rem;
  color: #0f172a;
}

.bb-filter-header p {
  color: #64748b;
}

.bb-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bb-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
}

.bb-pill:hover,
.bb-pill.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.bb-reviews-grid-section {
  padding: 60px 0 20px;
}

.bb-reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 260px);
  gap: 32px;
  align-items: start;
}

.bb-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: 24px;
}

.bb-review-card {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bb-review-card.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.bb-card--featured {
  grid-column: span 2;
}

.bb-card--compact .bb-card-inner {
  padding: 24px;
}

.bb-card-inner {
  height: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  position: relative;
}

.bb-review-card.is-expandable:hover .bb-card-inner {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

.bb-review-card .bb-card-inner {
  cursor: default;
}

.bb-review-card.is-expandable .bb-card-inner {
  cursor: pointer;
}

.bb-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bb-trip-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 600;
}

.bb-card-action {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.bb-review-card.is-expandable:hover .bb-card-action {
  color: #0f172a;
}

.bb-stars-row {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.bb-review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  font-style: normal;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.bb-card--featured .bb-review-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  -webkit-line-clamp: 4;
}

.bb-review-highlight {
  font-size: 0.9rem;
  color: #1d4ed8;
  font-weight: 600;
}

.bb-card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bb-guest-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f172a;
}

.bb-guest-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-guest-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  color: #475569;
}

.bb-verified {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
}

.bb-review-source {
  margin-left: auto;
  font-size: 0.75rem;
  background: #f8fafc;
  padding: 6px 10px;
  border-radius: 999px;
  color: #475569;
}

.bb-review-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.bb-review-modal.is-open {
  display: block;
}

.bb-review-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.bb-review-modal__dialog {
  position: relative;
  margin: 6vh auto;
  width: min(760px, calc(100% - 32px));
  max-height: 88vh;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  overflow-y: auto;
  box-shadow: 0 32px 70px rgba(2, 6, 23, 0.22);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.bb-review-modal.is-open .bb-review-modal__overlay {
  opacity: 1;
}

.bb-review-modal.is-open .bb-review-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.bb-review-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1.6rem;
  cursor: pointer;
}

.bb-review-modal__header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.bb-review-modal__avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 700;
}

.bb-review-modal__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-review-modal__title {
  margin: 0;
  color: #0f172a;
}

.bb-review-modal__meta,
.bb-review-modal__source {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.bb-review-modal__rating {
  margin-top: 10px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.bb-review-modal__tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bb-review-modal__tags span {
  border-radius: 999px;
  background: #e0f2fe;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.bb-review-modal__body blockquote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #1e293b;
}

body.bb-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .bb-review-modal__dialog {
    width: calc(100% - 18px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    border-radius: 18px;
    padding: 20px 16px;
  }

  .bb-review-modal__close {
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }
}

.bb-review-sidebar {
  position: sticky;
  top: 160px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bb-highlight-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.bb-highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.bb-highlight-card li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #0f172a;
}

.bb-tip-card {
  background: #0f172a;
  color: #fff;
}

.bb-tip-card p {
  color: rgba(255, 255, 255, 0.8);
}

.bb-load-more-wrap {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}

.bb-scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bb-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bb-reviews-marquee {
  padding: 40px 0;
  overflow: hidden;
}

.bb-marquee {
  white-space: nowrap;
  overflow: hidden;
}

.bb-marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: bb-marquee 40s linear infinite;
  font-size: 1rem;
  color: #0f172a;
  font-weight: 600;
}

.bb-marquee-track span {
  padding: 8px 18px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

@keyframes bb-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bb-reviews-cta {
  padding: 80px 0 120px;
  background-image: url('../img/living-room.webp');
  background-size: cover;
  background-position: center;
}

.bb-cta-glass {
  background: rgba(15, 23, 42, 0.85);
  padding: 80px 40px;
  border-radius: 48px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3);
}

.bb-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.bb-btn-pulse {
  position: relative;
  animation: bb-pulse 2.4s infinite;
}

@keyframes bb-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@media (max-width: 1024px) {
  .bb-reviews-hero-inner {
    grid-template-columns: 1fr;
  }

  .bb-hero-stack {
    min-height: 320px;
  }

  .bb-reviews-layout {
    grid-template-columns: 1fr;
  }

  .bb-review-sidebar {
    position: static;
    order: 2;
  }
}

@media (max-width: 768px) {
  .bb-card--featured {
    grid-column: span 1;
  }

  .bb-cta-glass {
    padding: 56px 24px;
  }
}

/* ==========================================================================
   CONTACT PAGE: Ocean Breeze & Soft Glass
   ========================================================================== */
.bb-contact-page {
  position: relative;
  padding: 80px 0 0;
  background: #f8fafc;
  overflow: hidden;
}

.bb-contact-parallax {
  position: absolute;
  inset: -10% 0 auto;
  height: 520px;
  background-image: url('../img/outdoor.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: saturate(0.7);
  transform: translateY(0);
  transition: transform 0.1s linear;
  pointer-events: none;
  z-index: 0;
}

.bb-contact-bg-blob {
  position: absolute;
  top: -8%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(41, 128, 185, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.bb-contact-hero {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.bb-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 64px;
  align-items: start;
}

.bb-contact-intro {
  margin-bottom: 32px;
}

.bb-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2980B9;
}

.bb-contact-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.bb-contact-h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin: 16px 0 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.bb-verified-host {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-host-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f172a;
}

.bb-host-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.bb-contact-lead {
  margin-top: 18px;
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
}

.bb-contact-form-shell {
  position: relative;
}

.bb-glass-form {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 48px;
  border-radius: 36px;
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.bb-form-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bb-form-success {
  position: absolute;
  inset: 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bb-glass-form.bb-form-sent .bb-form-body {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.bb-glass-form.bb-form-sent .bb-form-success {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bb-form-success .bb-btn-outline {
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
}

.bb-success-animation {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(41, 128, 185, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bb-success-orb {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(41, 128, 185, 0.3);
  animation: bb-success-pulse 1.6s ease infinite;
}

.bb-success-check {
  font-size: 26px;
  color: #2980B9;
  font-weight: 700;
}

@keyframes bb-success-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }
  70% {
    transform: scale(1);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.bb-input-group {
  position: relative;
}

.bb-input-group input,
.bb-input-group textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e2e8f0;
  font-size: 16px;
  transition: border-color 0.3s ease;
  color: #0f172a;
}

.bb-input-group input:focus,
.bb-input-group textarea:focus {
  outline: none;
  border-bottom-color: #2980B9;
}

.bb-input-group label {
  position: absolute;
  top: 12px;
  left: 0;
  color: #94a3b8;
  pointer-events: none;
  transition: 0.3s ease all;
}

.bb-input-group input:focus ~ label,
.bb-input-group input:not(:placeholder-shown) ~ label,
.bb-input-group textarea:focus ~ label,
.bb-input-group textarea:not(:placeholder-shown) ~ label {
  top: -12px;
  font-size: 12px;
  color: #2980B9;
  font-weight: 600;
}

.bb-input-group.bb-input-error input,
.bb-input-group.bb-input-error textarea {
  border-bottom-color: #ef4444;
}

.bb-input-group.bb-shake {
  animation: bb-shake 0.35s ease;
}

@keyframes bb-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
  75% {
    transform: translateX(-4px);
  }
}

.bb-btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #2980B9 0%, #3498db 100%);
  color: #ffffff;
  border-radius: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(41, 128, 185, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bb-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(41, 128, 185, 0.4);
}

.bb-btn-submit:disabled {
  cursor: progress;
  opacity: 0.9;
}

.bb-btn-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bb-loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #ffffff;
  animation: bb-spin 0.8s linear infinite;
  display: none;
}

.bb-btn-check {
  display: none;
  font-size: 16px;
}

.bb-btn-submit.is-loading .bb-loader {
  display: inline-block;
}

.bb-btn-submit.is-sent .bb-btn-check {
  display: inline-block;
}

@keyframes bb-spin {
  to {
    transform: rotate(360deg);
  }
}

.bb-trust-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

.bb-trust-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2980B9;
}

.bb-trust-card h2 {
  margin: 16px 0 12px;
  font-size: 24px;
  color: #0f172a;
}

.bb-trust-copy {
  color: #475569;
  line-height: 1.6;
}

.bb-fast-lane {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(41, 128, 185, 0.12), rgba(41, 128, 185, 0));
  border-radius: 18px;
  padding: 18px;
  border: 1px dashed rgba(41, 128, 185, 0.3);
}

.bb-fast-lane-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #2980B9;
  margin-bottom: 10px;
}

.bb-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #e6f7ed;
  color: #25d366;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.bb-wa-status {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
  animation: bb-pulse-green 2s infinite;
}

@keyframes bb-pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.bb-trust-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-trust-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #475569;
}

.bb-trust-point strong {
  display: block;
  color: #0f172a;
}

.bb-trust-icon {
  font-size: 20px;
}

.bb-contact-cta {
  padding: 80px 0 100px;
}

.bb-cta-inner {
  background: #0f172a;
  color: #f8fafc;
  padding: 48px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.bb-contact-page .bb-btn-outline {
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
}

.bb-contact-cta .bb-btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #f8fafc;
}

.bb-cta-inner h2 {
  font-size: 28px;
  margin: 0;
}

.bb-cta-inner p {
  color: #cbd5f5;
  margin: 0;
}

.bb-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bb-btn-primary {
  padding: 14px 28px;
  border-radius: 999px;
  background: #2980B9;
  color: #ffffff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(41, 128, 185, 0.4);
}

/* kept intentionally: contact page button differences are scoped above (.bb-contact-page/.bb-contact-cta) */

.bb-stagger {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bb-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .bb-contact-layout {
    grid-template-columns: 1fr;
  }

  .bb-trust-card {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .bb-glass-form {
    padding: 32px;
  }

  .bb-form-success {
    padding: 32px;
  }

  .bb-cta-inner {
    padding: 36px;
  }
}

/* ==========================================================================
   CONTACT PAGE: Scandi Minimal
   ========================================================================== */
.bb-contact-scandi {
  background-color: #f4f6f8;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
  padding-bottom: 80px;
  color: #334155;
}

.bb-contact-header {
  margin-top: calc(var(--bb-header-height) * -1);
  padding: calc(60px + var(--bb-header-height)) 0 40px;
}

.bb-scandi-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bb-scandi-subtitle {
  font-size: 1.125rem;
  color: #64748b;
}

.bb-scandi-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  margin-bottom: 40px;
}

.bb-scandi-form-col {
  padding: 48px;
  border-right: 1px solid #f1f5f9;
}

.bb-form-heading {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: #0f172a;
}

.bb-modern-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #475569;
}

.bb-field-group {
  margin-bottom: 24px;
}

.bb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bb-modern-form input,
.bb-modern-form select,
.bb-modern-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 1rem;
  color: #1e293b;
  transition: all 0.2s ease;
}

.bb-modern-form input::placeholder,
.bb-modern-form textarea::placeholder {
  color: #94a3b8;
}

.bb-modern-form input:focus,
.bb-modern-form select:focus,
.bb-modern-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: #2980B9;
  box-shadow: 0 0 0 4px rgba(41, 128, 185, 0.1);
}

.bb-select-wrapper {
  position: relative;
}

.bb-select-wrapper::after {
  content: "▼";
  font-size: 10px;
  color: #64748b;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.bb-modern-form select {
  appearance: none;
  cursor: pointer;
}

.bb-btn-submit-scandi {
  width: 100%;
  background: #0f172a;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bb-btn-submit-scandi .bb-loader {
  display: inline-block;
}

.bb-btn-submit-scandi:hover {
  background: #334155;
}

.bb-btn-reset {
  background: #e2e8f0;
  color: #334155;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.bb-btn-reset:hover {
  background: #cbd5e1;
}

.bb-scandi-info-col {
  padding: 48px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.bb-info-block h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.bb-info-block p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1e293b;
  margin: 0;
}

.bb-info-block .bb-info-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: #64748b;
  margin-top: 4px;
}

.bb-info-highlight {
  color: #2980B9 !important;
}

.bb-info-block a {
  color: inherit;
  text-decoration: none;
}

.bb-info-block a:hover {
  text-decoration: underline;
}

.bb-direct-actions {
  margin-top: 32px;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
  text-align: center;
}

.bb-divider-text {
  display: block;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: italic;
}

.bb-action-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.bb-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.bb-btn-icon img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bb-btn-icon:hover {
  transform: translateY(-1px);
}

.bb-btn-wa {
  background: #dcfce7;
  color: #166534;
}

.bb-btn-wa:hover {
  background: #bbf7d0;
}

.bb-btn-email {
  background: #e2e8f0;
  color: #334155;
}

.bb-btn-email:hover {
  background: #cbd5e1;
}

.bb-contact-cta-bottom {
  padding: 60px 0 20px;
}

.bb-contact-cta-bottom h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.bb-contact-cta-bottom p {
  color: #64748b;
  margin-bottom: 20px;
}

.bb-form-success {
  text-align: center;
  padding: 40px 0;
}

.bb-success-icon {
  width: 60px;
  height: 60px;
  background: #dcfce7;
  color: #166534;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.bb-booking-success-msg {
  text-align: center;
  padding: 48px 24px;
}

.bb-booking-success-msg h3 {
  font-size: 1.4rem;
  color: #166534;
  margin: 0 0 12px;
}

.bb-booking-success-msg p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .bb-scandi-card {
    grid-template-columns: 1fr;
  }

  .bb-scandi-info-col {
    border-top: 1px solid #e2e8f0;
  }

  .bb-field-row {
    grid-template-columns: 1fr;
  }
}

/* Убеждаемся, что календарь виден поверх модального окна */
.litepicker {
  z-index: 1000000 !important;
}

.litepicker .day-item.is-locked,
.litepicker .day-item.is-disabled,
.litepicker .day-item.is-locked:hover,
.litepicker .day-item.is-disabled:hover {
  color: #94a3b8;
  background: #f1f5f9;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #64748b;
  cursor: not-allowed;
  opacity: 0.55;
  position: relative;
}

.litepicker .day-item.is-locked::after,
.litepicker .day-item.is-disabled::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-top: 2px solid rgba(100, 116, 139, 0.65);
  transform: rotate(-12deg);
}

/* Фикс для мобильных: чтобы календарь не улетал */
@media (max-width: 768px) {
  .litepicker {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
}

/* ======================================================================
   Stage 4 polish: targeted visual + responsive improvements
   ====================================================================== */

/* Header balance + predictable nav interaction states */
.bb-header-inner {
  min-height: 68px;
  align-items: center;
  gap: 14px;
}

.bb-header .bb-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
}

.bb-header .bb-nav a {
  line-height: 1.2;
  padding: 7px 12px;
}

.bb-header .bb-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.bb-header .bb-nav li.current-menu-item > a,
.bb-header .bb-nav li.current_page_item > a,
.bb-header .bb-nav li.current-menu-ancestor > a {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 991px) {
  .bb-header-shell {
    padding: 0 16px;
  }
}

@media (max-width: 767px) {
  .bb-header-inner {
    min-height: 62px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  #bb-primary-nav .bb-nav-list a {
    min-height: 42px;
    border-radius: 12px;
  }
}

/* Article typography + rhythm */
.bb-narrow-content {
  max-width: 760px;
  line-height: 1.75;
}

.bb-narrow-content .prose {
  font-size: clamp(1.02rem, 0.98rem + 0.22vw, 1.14rem);
  color: #334155;
}

.bb-narrow-content .prose p {
  margin: 0 0 1.2em;
}

.bb-narrow-content .prose h2 {
  line-height: 1.25;
  margin-top: 1.8em;
  margin-bottom: 0.62em;
}

.bb-narrow-content .prose h3 {
  line-height: 1.3;
  margin-top: 1.45em;
  margin-bottom: 0.52em;
}

.bb-article-meta-top {
  margin-bottom: 8px;
}

.bb-inline-cta {
  margin-top: 44px;
}

/* Related/recommendation cards: stable width when one card only */
.bb-related-grid {
  justify-content: flex-start;
}

.bb-related-grid > .bb-related-card:only-child {
  max-width: 320px;
}

/* Explore / Reviews card consistency */
.bb-article-card,
.bb-featured-card,
.bb-review-card,
.bb-bento-card {
  border-radius: 20px;
}

.bb-featured-body,
.bb-article-card .bb-card-content {
  padding-bottom: 22px;
}

/* Secondary / outline button consistency */
.bb-btn-outline {
  border-radius: 12px;
  padding: 10px 18px;
  min-height: 42px;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bb-btn-outline:hover {
  transform: translateY(-1px);
}

.bb-btn-outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.22);
}

/* Section spacing rhythm (content pages only) */
.bb-single-article .bb-related-section,
.bb-explore-page .bb-featured-section,
.bb-explore-page .bb-explore-articles,
.bb-reviews-page .bb-reviews-grid-section,
.bb-about-creative .bb-about-glance,
.bb-about-creative .bb-about-booking {
  padding-top: clamp(52px, 7vw, 84px);
}

@media (max-width: 767px) {
  .bb-article-header {
    padding: 44px 0 68px;
  }

  .bb-narrow-content {
    margin-top: 26px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .bb-related-section {
    padding: 34px 0 44px;
  }

  .bb-inline-cta {
    gap: 14px;
    padding: 18px;
  }
}

/* ===== Stage 5: Conversion UX polish ===== */
.bb-header a.bb-booknow {
  font-weight: 700;
  gap: 6px;
  background: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.72) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.bb-header a.bb-booknow:hover,
.bb-header.bb-header--scrolled a.bb-booknow {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

.bb-hero__btn.bb-booking-trigger {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.3) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease !important;
}

.bb-hero__btn.bb-booking-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.34) !important;
  filter: brightness(1.03);
}

.bb-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.bb-hero__trust span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

/* ── No-fees badge row in hero ───────────────────────────────────────── */
.bb-hero__fees {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.bb-hero__fees span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(26, 60, 94, 0.12);
  border: 1px solid rgba(26, 60, 94, 0.35);
  font-size: 11px;
  font-weight: 700;
  color: #1a3c5e;
}

.bb-hero__fees span svg {
  color: #1a3c5e;
  flex-shrink: 0;
}

/* ── No-fees note in booking form ────────────────────────────────────── */
.bb-no-fees-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 6px;
}

.bb-no-fees-note svg {
  flex-shrink: 0;
  color: #16a34a;
}

#bb-booking-modal .bb-modal-wrap {
  border: 1px solid #e2e8f0;
}

#bb-booking-modal .bb-modal-header h2 {
  margin-bottom: 6px;
}

#bb-booking-modal .bb-modal-header p {
  color: #475569;
  font-size: 14px;
  margin-bottom: 18px;
}

#bb-booking-modal .bb-date-input,
#bb-booking-modal .bb-guest-trigger,
#bb-booking-modal .bb-field input {
  min-height: 52px;
  border-radius: 14px;
}

#bb-booking-modal .bb-date-input:focus-within,
#bb-booking-modal .bb-guest-trigger:focus-within,
#bb-booking-modal .bb-field input:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

#bb-booking-modal .bb-submit-btn {
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#bb-booking-modal .bb-submit-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.38);
}

.bb-inline-cta-kicker,
.bb-related-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.bb-inline-cta h3 {
  margin: 0;
}

.bb-inline-cta p {
  margin: 6px 0 0;
}

.bb-related-card {
  cursor: pointer;
}

.bb-related-image img {
  transition: transform 0.3s ease;
}

.bb-related-card:hover .bb-related-image img {
  transform: scale(1.04);
}


.bb-review-text {
  line-height: 1.65;
}

.bb-global-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  border: none;
  border-radius: 999px;
  padding: 14px 16px;
  z-index: 1000;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.32);
  transform: translateY(120%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bb-global-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .bb-global-sticky-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  body:not(.single) .site-footer {
    padding-bottom: 86px;
  }
}


/* =============================================================
   3.  FORMER custom.css  (patch layer — loaded after overrides.css)
   Selectors here intentionally repeat or narrow overrides.css rules.
   Now that both live in one file the !important flags that were
   fighting overrides.css can be cleaned up in future iterations;
   for safety they are kept as-is during the merge.
   ============================================================= */
/* ======================================================================
   Beachside Custom Overrides (latest)
   ====================================================================== */

:root {
  --bb-header-height: 72px;
  --bb-glass-bg: rgba(234, 244, 252, 0.78);
  --bb-glass-border: rgba(190, 215, 236, 0.55);
  --bb-ink: #0b2239;
  --bb-ink-strong: #062844;
  --bb-ice: #7fb6d9;
  --bb-teal: #0f7c8a;
}

/* =========================
   Header / Nav (Glass)
   ========================= */
.bb-header.bb-header--scrolled {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.bb-nav a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  padding: 4px 10px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.bb-nav a:hover {
  color: #7fb6d9 !important;             /* brand ice blue — strong signal on dark panel */
  background: rgba(127, 182, 217, 0.15); /* soft tinted pill */
  box-shadow: none;
}

.bb-nav li.current-menu-item > a,
.bb-nav li.current_page_item > a,
.bb-nav li.current-menu-ancestor > a {
  color: #ffffff !important;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.bb-header a.bb-booknow,
.bb-header a[href*="book-now"] {
  background: rgba(127, 182, 217, 0.9) !important;
  color: var(--bb-ink-strong) !important;
  border: none !important;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
  text-shadow: none;
  padding: 6px 14px;
  min-height: 34px;
}

.bb-header a.bb-booknow:hover,
.bb-header a[href*="book-now"]:hover {
  background: rgba(127, 182, 217, 1) !important;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

.bb-burger {
  background: transparent;
  border: none;
  box-shadow: none;
  width: 44px;
  height: 44px;  /* W3C minimum touch target 44×44px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-burger-lines {
  gap: 4px;
}

.bb-burger-line {
  width: 16px;
  height: 1.5px;
}

/* ── Single primary nav: desktop centred, mobile dropdown panel ── */

/* Desktop ≥768px: centred within .bb-header-shell via transform */
@media (min-width: 768px) {
  /* Shell is the positioning context for the absolutely centred nav */
  .bb-header-shell {
    position: relative;
  }

  #bb-primary-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 3;
    /* Reset any mobile hidden state */
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  #bb-primary-nav .bb-nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* Burger is mobile-only */
  .bb-burger {
    display: none !important;
  }
}

/* Mobile <768px: absolute dropdown — overlays page, never pushes content down */
@media (max-width: 767px) {
  /* Shell is the positioning context for the dropdown */
  .bb-header-shell {
    position: relative;
  }

  #bb-primary-nav {
    position: absolute;
    top: 100%;        /* flush below the header bar */
    left: 0;
    right: 0;
    z-index: 200;

    /* Dark glass — matches header panel */
    background: rgba(11, 18, 28, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 0 0 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    padding: 4px 0 12px;

    /* Animated: hidden by default */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0ms 180ms;
    pointer-events: none;
  }

  #bb-primary-nav.bb-nav--open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0ms 0ms;
    pointer-events: auto;
  }

  #bb-primary-nav .bb-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #bb-primary-nav .bb-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  #bb-primary-nav .bb-nav-list li:last-child {
    border-bottom: none;
  }

  #bb-primary-nav .bb-nav-list a {
    display: block;
    padding: 15px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: background 140ms ease, color 140ms ease;
  }

  #bb-primary-nav .bb-nav-list a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
  }

  #bb-primary-nav .bb-nav-list li.current-menu-item > a,
  #bb-primary-nav .bb-nav-list li.current_page_item > a {
    color: #7fb6d9 !important;
  }
}

/* =========================
   Hero: full screen + header offset
   ========================= */
.bb-hero {
  height: 102svh !important;
  min-height: 102svh !important;
  margin-top: calc(var(--bb-header-height) * -1);
  padding-top: var(--bb-header-height);
}

@supports not (height: 100svh) {
  .bb-hero {
    height: 100vh !important;
    min-height: 100vh !important;
  }
}

.bb-hero__bg {
  background-position: center center !important;
  background-size: cover !important;
  transform: scale(1.05);
  transform-origin: center;
}

.bb-hero__content {
  height: 100%;
  padding-top: var(--bb-header-height);
}

.bb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bb-hero-container {
  padding-top: calc(var(--bb-header-height) + 16px) !important;
}

@media (min-width: 1024px) {
  .bb-hero-container {
    padding-top: calc(var(--bb-header-height) + 40px) !important;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
  }
}

/* =========================
   Why Guests Choose: mobile spacing
   ========================= */
@media (max-width: 768px) {
  .bb-header {
    top: 0;
  }

  .bb-experience-inner {
    padding: 0 20px;
  }

  .bb-experience-intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .bb-experience-h2,
  .bb-experience-lead {
    margin: 0;
  }

  .bb-experience-list {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .bb-experience-inner {
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  .bb-experience-inner {
    padding: 0 14px;
  }
}

/* =========================
   Check Availability: centered + clean calendar
   ========================= */
.bb-check-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 24px 40px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: start;
}

.bb-check-text-group,
.bb-check-actions-group,
.bb-check-trust {
  padding-left: 0;
  max-width: 520px;
}

.bb-check-text-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bb-check-h2 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bb-check-sub {
  margin: 0;
  line-height: 1.55;
}

.bb-check-actions-group {
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.bb-check-trust {
  margin: 0;
  line-height: 1.5;
}

.bb-check-calendar-wrapper {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
  width: 100%;
  max-width: 420px;
  justify-self: center;
  align-self: start;
}

/* Wrapper: можно оставить подложку, чтобы календарь не ломался визуально */
.bb-check-calendar-wrapper {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);

  width: 100%;
  max-width: 420px;
  justify-self: center;
  align-self: start;
}

.bb-check-calendar-wrapper .dayContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .bb-check-content {
    max-width: 1200px;
    padding: 0 20px;
  }

  .bb-check-text-group,
  .bb-check-actions-group,
  .bb-check-trust {
    justify-self: start;
    text-align: left;
  }

  .bb-check-actions-group {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .bb-check-calendar-wrapper {
    justify-self: end;
  }
}

@media (max-width: 991px) {
  .bb-check-content {
    padding: 0 20px;
    text-align: center;
    gap: 26px;
  }

  .bb-check-actions-group {
    width: 100%;
    justify-content: center;
  }

  .bb-check-calendar-wrapper {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .bb-check-content {
    padding: 0 16px;
  }

  .bb-check-calendar-wrapper {
    max-width: 340px;
  }
}

@media (max-width: 360px) {
  .bb-check-calendar-wrapper {
    max-width: 320px;
  }
}

/* =========================
   Responsive header height
   ========================= */
@media (max-width: 767px) {
  :root {
    --bb-header-height: 64px;
  }
}

/* =========================
   Booking CTA + Hero Fixes
   ========================= */
.bb-hero {
  min-height: 100svh;
  padding-bottom: 24px;
}

.bb-booking-cta {
  padding: 80px 0;
  background: #f8fafc;
}

.bb-booking-cta-card {
  margin: 0 auto;
  max-width: 860px;
  padding: 36px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.bb-booking-cta-card h2 {
  margin: 0 0 12px;
  font-size: 32px;
  color: #0f172a;
}

.bb-booking-cta-card p {
  margin: 0 0 24px;
  color: #475569;
  font-size: 16px;
}

.bb-booking-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 640px) {
  .bb-booking-cta {
    padding: 60px 0;
  }

  .bb-booking-cta-card {
    padding: 28px 20px;
  }

  .bb-booking-cta-card h2 {
    font-size: 24px;
  }
}

/* =========================
   Modal fixes (global)
   ========================= */
.bb-modal {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  align-items: center !important;
  justify-content: center !important;
  overflow-y: auto;
}

.bb-modal.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.bb-modal .bb-modal-overlay {
  position: absolute !important;
  inset: 0;
  display: block !important;
}

.bb-modal .bb-modal-wrap {
  position: relative;
  z-index: 1;
}

.bb-modal-container {
  position: relative;
  background: #fff;
  width: 95%;
  max-width: 500px;
  margin: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .bb-modal-container {
    width: 307px !important;
  }
}

/* =========================
   Inner pages: header strip fix
   ========================= */
body:not(.home) .bb-header-shell {
  max-width: 100%;
  padding: 0;
}

/* Выносим календарь на самый передний план */
.litepicker {
  z-index: 999999 !important;
}

/* =========================
   Fix: белая полоса вокруг хедера
   ========================= */
.bb-header-shell {
  background: transparent !important;
  max-width: 1200px !important;
  padding: 0 20px !important;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .bb-header-shell {
    padding: 0 !important;
  }

  .bb-header-panel {
    margin: 0 0 8px !important;
    border-radius: 0 0 28px 28px !important;
  }

  .bb-header-inner {
    padding: 8px 16px !important;
  }
}

.bb-compact-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

.bb-compact-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.bb-compact-info {
  padding: 16px;
}

/* =========================
   Brand logos: header + footer
   ========================= */
.bb-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  text-decoration: none;
}

.bb-brand-logo {
  width: clamp(28px, 3vw, 40px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex: 0 0 auto;
}

.bb-brand-text {
  display: inline-block;
  white-space: nowrap;
  margin-left: 4px;
}

.footer-brand-logo {
  display: block;
  width: min(100%, 120px);
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .bb-brand-link {
    max-width: min(72vw, 360px);
  }

  .bb-brand-text {
    font-size: clamp(14px, 2.7vw, 16px);
    white-space: normal;
    line-height: 1.2;
  }
}

@media (max-width: 520px) {
  .bb-header-inner {
    gap: 10px;
  }

  .bb-brand-link {
    max-width: min(58vw, 250px);
    gap: 8px;
  }

  .bb-brand-logo {
    width: 28px;
  }

  .bb-brand-text {
    margin-left: 0;
    font-size: clamp(13px, 3.2vw, 15px);
    line-height: 1.15;
  }

  .footer-brand-logo {
    width: min(100%, 84px);
  }
}


/* On mobile the header CTA is hidden — floating .bb-global-sticky-cta covers this. */
@media (max-width: 767px) {
  .bb-header .bb-booknow {
    display: none !important;
  }
}

/* =============================================================
   SINGLE ARTICLE PAGE — suppress sticky CTAs
   On article pages (single.php) both the mobile booking bar and
   the global sticky CTA are hidden on all screen sizes — the
   inline CTA inside the article body and the sidebar card are
   sufficient and less intrusive.
   WordPress adds .single to <body> on all single post pages.
   ============================================================= */

.single .bb-mobile-booking,
.single .bb-mobile-booking.is-visible {
  display: none !important;
}

.single .bb-global-sticky-cta,
.single .bb-global-sticky-cta.is-visible {
  display: none !important;
}

/* Mobile menu CTA block — rendered in header.php inside #bb-primary-nav */
.bb-mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 16px 16px;
  margin: 0 8px 4px;
}

/* Primary CTA — "Check Availability" */
.bb-mobile-menu-cta__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: #7fb6d9;
  color: #062844 !important;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(127, 182, 217, 0.45);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.bb-mobile-menu-cta__primary:hover {
  background: #6aaece;
  box-shadow: 0 6px 18px rgba(127, 182, 217, 0.55);
  color: #062844 !important;
}

/* Secondary CTA — WhatsApp */
.bb-mobile-menu-cta__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 160ms ease, border-color 160ms ease;
}

.bb-mobile-menu-cta__wa:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
}

/* bb-nav-list layout rules are now inside #bb-primary-nav @media blocks above */

/* =============================================================
   Mobile menu open: square the panel's bottom corners so they
   connect flush with the dropdown — no white corner gaps.
   ============================================================= */
@media (max-width: 767px) {
  .bb-header-shell:has(.bb-nav--open) .bb-header-panel {
    border-radius: 0 !important;
    transition: border-radius 180ms ease;
  }

  .bb-header-panel {
    transition: border-radius 180ms ease;
  }
}

/* =============================================================
   SEO FOOTER BLOCK  (Home page — .bb-seo-block)
   ============================================================= */

.bb-seo-block {
  padding: 64px 0 72px;
  background: #ffffff;
}

.bb-seo-block__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 52px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  text-align: center;
}

/* Short accent line above heading */
.bb-seo-block__divider {
  width: 40px;
  height: 2px;
  background: #7fb6d9;
  border-radius: 2px;
  margin: 0 auto 24px;
}

.bb-seo-block__heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, calc(16px + 1vw), 26px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 18px;
}

.bb-seo-block__body {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.bb-seo-block__body:last-of-type {
  margin-bottom: 20px;
}

.bb-seo-block__highlight {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  color: #64748b;
  margin: 0;
  letter-spacing: 0.01em;
}

/* Mobile */
@media (max-width: 768px) {
  .bb-seo-block {
    padding: 48px 0 56px;
  }

  .bb-seo-block__inner {
    padding: 28px 24px;
    border-radius: 12px;
  }

  .bb-seo-block__heading {
    font-size: 20px;
  }

  .bb-seo-block__body {
    font-size: 15px;
  }
}

/* =============================================================
   EXPLORE PAGE — SEO intro section (above filter bar)
   Background matches Quick Facts block (#2980B9)
   ============================================================= */

.bb-explore-intro-section {
  background-color: #2980B9;
  padding: 36px 0;
}

.bb-explore-seo-intro {
  max-width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  text-align: center;
}

@media (max-width: 640px) {
  .bb-explore-intro-section {
    padding: 28px 0;
  }
  .bb-explore-seo-intro {
    font-size: 14.5px;
  }
}

/* =============================================================
   FOOTER — Group wrappers (base, all screen sizes)
   Keep desktop appearance identical after social/contact split.
   ============================================================= */

/* CTA button: hidden on desktop, shown only on mobile */
.footer-mobile-cta {
  display: none;
}

/* Social and contact groups: internal grid gap matches parent footer-col */
.footer-social-group,
.footer-contact-group {
  display: grid;
  gap: 10px;
}

/* Replaces footer-heading-tight margin that was on the Contact heading */
.footer-contact-group {
  margin-top: 8px;
}

/* =============================================================
   FOOTER — Mobile redesign (≤ 600px)
   All rules scoped to this breakpoint — desktop layout untouched.
   ============================================================= */

@media (max-width: 600px) {

  /* --- Outer padding --- */
  .site-footer       { padding: 36px 0 52px; }
  .footer-inner      { padding: 16px 0 48px; }
  .footer-top        { gap: 0; }          /* replaced by per-section borders below */

  /* --- Section dividers --- */
  .footer-col + .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 20px;
  }

  /* --- CTA button in brand section --- */
  .footer-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 8px;
  }
  .footer-mobile-cta:hover {
    background: rgba(255, 255, 255, 0.17);
  }

  /* --- Quick links: hide Reviews, single column --- */
  .footer-link--mobile-hide { display: none; }
  .footer-links { grid-template-columns: 1fr; gap: 10px; }

  /* --- footer-right: Contact first, Social second --- */
  .footer-col.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer-contact-group {
    order: 1;
    margin-top: 0;           /* reset base margin; spacing comes from border below */
  }
  .footer-social-group {
    order: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-top: 16px;
  }

  /* --- Social: inline row, dots visible --- */
  .footer-follow {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
  }
  .footer-dot { display: inline !important; }

  /* --- Footer bottom: legal inline first, copyright below --- */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
  }
  .footer-copy  { order: 2; font-size: 12px; }
  .footer-legal { order: 1; flex-wrap: wrap; gap: 8px 12px; }
  .footer-legal-link { font-size: 12px; }
}

/* =============================================================
   TABLET FIXES (2026-05)
   Scoped to tablets (600–1023 px). Mobile (≤600px) and desktop
   (≥1024px) layouts are NOT affected.
   ============================================================= */

/* ── 1. Check Availability — centralize on tablets & fix desktop
   The ≥992px block applies a 2-col grid (1fr 340px) even though
   there is no calendar in the current marketing layout. This
   pushes the content into the left 1fr column and leaves a dead
   340px gap. Override it back to a single centered column.
   ──────────────────────────────────────────────────────────── */
@media (min-width: 992px) {
  .bb-check-content {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    align-items: center;
    gap: 16px;
  }
  .bb-check-text-group,
  .bb-check-actions-group,
  .bb-check-trust {
    padding-left: 0;
    max-width: 580px;
    width: 100%;
    text-align: center;
  }
}

/* Flex column centering on tablets (600–991px) */
@media (min-width: 600px) and (max-width: 991px) {
  .bb-check-content {
    align-items: center;
  }
  .bb-check-text-group,
  .bb-check-actions-group,
  .bb-check-trust {
    max-width: 560px;
    width: 100%;
  }
  /* Reduce section vertical padding on tablets */
  .bb-check-section {
    padding: 72px 0;
  }
}

/* ======================================================================
   Check Availability — Typography & Hierarchy Refinement
   Specificity (0,2,0): two-class selectors override all earlier
   single-class rules regardless of source order.
   ====================================================================== */

.bb-check-section .bb-check-eyebrow {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.85;
  margin-bottom: 0;
}

.bb-check-section .bb-check-h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0;
  max-width: 520px;
}

.bb-check-section .bb-check-sub {
  font-size: 18px;
  line-height: 1.45;
  opacity: 0.88;
  margin: 0;
  max-width: 520px;
}

.bb-check-section .bb-check-trust {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.6;
  letter-spacing: 0.01em;
}

.bb-check-section .bb-check-text-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bb-check-section .bb-check-actions-group {
  gap: 16px;
  margin-top: 4px;
}

@media (min-width: 992px) {
  .bb-check-section .bb-check-h2 {
    font-size: clamp(64px, 5vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }

  .bb-check-section .bb-check-sub {
    font-size: 20px;
    opacity: 0.92;
  }
}

@media (max-width: 599px) {
  .bb-check-section .bb-check-h2 {
    font-size: 44px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    max-width: 100%;
  }

  .bb-check-section .bb-check-sub {
    font-size: 17px;
  }

  .bb-check-section .bb-check-eyebrow {
    font-size: 14px;
  }
}

/* ── 2. Footer — match mobile layout at 601–767px
   At this range the 900px breakpoint already stacks columns
   (1-col grid) and centres the brand. Apply the remaining
   mobile-style polish: single-col links, section dividers,
   reordered contact/social, CTA button.
   ──────────────────────────────────────────────────────────── */
@media (min-width: 601px) and (max-width: 767px) {

  .site-footer       { padding: 36px 0 52px; }
  .footer-inner      { padding: 16px 0 48px; }
  .footer-top        { gap: 0; }

  .footer-col + .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 20px;
  }

  /* Show CTA button in brand section */
  .footer-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 8px;
  }
  .footer-mobile-cta:hover { background: rgba(255, 255, 255, 0.17); }

  /* Single-column links, hide Reviews */
  .footer-link--mobile-hide { display: none; }
  .footer-links { grid-template-columns: 1fr; gap: 10px; }

  /* footer-right: Contact first, then Social with divider */
  .footer-col.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer-contact-group { order: 1; margin-top: 0; }
  .footer-social-group  {
    order: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-top: 16px;
  }

  /* Social: keep inline row */
  .footer-follow       { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .footer-dot          { display: inline; }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
  }
  .footer-copy        { order: 2; font-size: 12px; }
  .footer-legal       { order: 1; flex-wrap: wrap; gap: 8px 12px; }
  .footer-legal-link  { font-size: 12px; }
}

/* ── 3. About hero — remove full-viewport lock on tablets
   min-height: 100svh forces the hero to fill the whole screen
   even when content is shorter, creating large empty areas on
   600–1023px viewports. Switching to auto removes that gap.
   ──────────────────────────────────────────────────────────── */
@media (min-width: 600px) and (max-width: 1023px) {
  .bb-about-hero2 {
    min-height: auto;
    padding-top: calc(var(--bb-header-height) + 40px);
    padding-bottom: 48px;
    align-items: flex-start;
  }
}

/* ── 4. Section vertical padding — trim on tablets (600–1023px)
   Sections with 100–120px top/bottom padding have no tablet
   override; on mid-size viewports this creates disproportionate
   whitespace. Bring them in line with nearby sections.
   ──────────────────────────────────────────────────────────── */
@media (min-width: 600px) and (max-width: 1023px) {
  .bb-reviews-section   { padding: 64px 0; }
  .bb-location-section  { padding: 64px 0; }
  .bb-final-cta-section { padding: 72px 0; }
  .bb-reviews-cta       { padding: 56px 0 72px; }
  .bb-glance-header     { margin-bottom: 40px; }
}

/* ======================================================================
   Header CTA — Frosted Ocean Glass
   Targets <button class="bb-booknow"> (not <a>) so must use
   .bb-header .bb-booknow (no element type) to match both cases.
   These rules sit at end-of-file to win the source-order cascade
   without !important wars on layout-critical properties.
   ====================================================================== */

.bb-header .bb-booknow {
  position: relative;
  overflow: hidden;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 22px !important;
  border-radius: 999px !important;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.05) 100%
  ) !important;

  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);

  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;

  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;

  transition:
    background 0.35s cubic-bezier(.22, .61, .36, 1),
    border-color 0.35s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.35s cubic-bezier(.22, .61, .36, 1),
    transform 0.35s cubic-bezier(.22, .61, .36, 1) !important;
}

/* Sheen — slow light sweep across the glass surface */
.bb-header .bb-booknow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.10) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  background-position: -100% 0;
  pointer-events: none;
  transition: background-position 0.65s ease;
}

.bb-header .bb-booknow:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.19) 0%,
    rgba(255, 255, 255, 0.08) 100%
  ) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
}

.bb-header .bb-booknow:hover::before {
  background-position: 200% 0;
}

/* Mobile — button is hidden by an existing rule; keep that intact */
@media (max-width: 767px) {
  .bb-header .bb-booknow {
    display: none !important;
  }
}

/* ── Landscape mobile: prevent modal from being cut off ─────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .bb-modal-wrap {
    max-height: 95dvh;
    padding: 16px;
    border-radius: 16px;
  }
  .bb-modal-header {
    padding-bottom: 4px;
  }
}
