/* ===================================================================
   THE WHITE HOUSE OF VICTORIA FALLS — DESIGN SYSTEM
   Light Editorial Luxury theme. Tailwind (via CDN in index.html) handles
   generic layout utilities; everything brand-specific — the bento grid,
   cards, ledger, modal, FAB, typography — lives here.
=================================================================== */

:root {
  /* ===== 2026 HARMONIZED IMAGE COLOR PALETTE ===== */
  --bg: #FBFBF9;            /* premium warm bone-white */
  --bg-alt: #F4F4F0;        /* secondary container tint */
  --bg-card: #FFFFFF;       /* pure white for elevated cards */
  --text: #1C1B19;          /* rich deep charcoal */
  --muted: rgba(28, 27, 25, 0.72);
  --muted-dim: rgba(28, 27, 25, 0.48);
  --line: rgba(28, 27, 25, 0.09);
  --line-soft: rgba(28, 27, 25, 0.06);

  /* Extracted directly from property visuals */
  --sand: #C2410C;          /* Sophisticated Terracotta / Sofa Orange */
  --sand-dark: #9A3412;     /* Deeper Terracotta for precise text hover states */
  --gold: #D97706;          /* Warm Amber gold accent */
  --pool-blue: #0284C7;     /* Immersive swimming pool blue highlight */

  --shadow-sm: 0 8px 24px rgba(28,27,25,0.04);
  --shadow-md: 0 20px 48px rgba(28,27,25,0.07);
  --shadow-lg: 0 30px 80px -20px rgba(28,27,25,0.12);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { width: 100%; max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
::selection { background: var(--sand); color: #fff; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.radius-lg { border-radius: var(--radius-lg); }
.radius-xl { border-radius: var(--radius-xl); }

/* ===== SCROLL PROGRESS ===== */
#scrollBar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--sand);
  z-index: 1000; transition: width 0.1s ease-out;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.24em; color: var(--sand); margin-bottom: 20px; display: inline-block;
}

.hero-h1, .section-title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.accent-word { font-style: italic; font-weight: 400; color: var(--sand); }

.section-title { font-size: 2.2rem; line-height: 1.18; margin-bottom: 22px; }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-lead {
  font-size: 1.04rem; line-height: 1.8; color: var(--muted); max-width: 600px; margin-bottom: 18px;
}

.section-head { max-width: 640px; margin-bottom: 56px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.83rem; font-weight: 500; letter-spacing: 0.03em;
  text-transform: uppercase; padding: 14px 30px; border: 1px solid transparent;
  cursor: pointer; border-radius: 999px;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: var(--sand); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--line); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--text); transform: translateY(-3px); background: var(--bg-card); }
.btn-sm { padding: 10px 20px; font-size: 0.74rem; }
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }

/* ===== HIGH-END USER INTERACTION HIGHLIGHTS ===== */
.pool-highlight { color: var(--pool-blue); font-style: italic; }

/* ===== NAV (Glassmorphism, light) ===== */
.glass-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(251, 251, 249, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.glass-nav.scrolled { background: rgba(251, 251, 249, 0.92); box-shadow: var(--shadow-sm); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; transition: height 0.3s ease; }
.glass-nav.scrolled .nav-inner { height: 66px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 7px;
  background: linear-gradient(135deg, var(--sand), var(--text));
}
.logo-text { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -0.01em; white-space: nowrap; }

.nav-links { display: none; gap: 36px; font-size: 0.82rem; letter-spacing: 0.03em; color: var(--muted); }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { position: relative; padding-bottom: 4px; transition: color 0.3s ease; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0%; height: 1px;
  background: var(--sand); transition: width 0.35s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.burger { display: flex; flex-direction: column; gap: 5px; width: 28px; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .burger { display: none; } }
.burger span { height: 1px; width: 100%; background: var(--text); transition: all 0.3s ease; }
.burger span:nth-child(3) { width: 65%; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { width: 100%; transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  background: rgba(251,251,249,0.98); backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-soft); padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; letter-spacing: 0.02em; }
.mobile-menu .btn { margin-top: 8px; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--bg-alt); color: var(--muted); overflow: hidden; white-space: nowrap;
  padding: 11px 0; margin-top: 82px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.ticker {
  display: inline-flex; font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; animation: tickerScroll 30s linear infinite;
}
.ticker span { margin: 0 26px; }
.ticker span:nth-child(2n) { color: var(--sand); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== HERO SETUP (FULL MOBILITY STRETCH) ===== */
.hero { position: relative; padding: 40px 0 100px; overflow: hidden; }

.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(20px); }
.hero-glow-1 { top: -220px; right: -160px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(194,65,12,0.08) 0%, rgba(194,65,12,0) 70%); }
.hero-glow-2 { bottom: -200px; left: -180px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(2,132,199,0.06) 0%, rgba(2,132,199,0) 70%); }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; padding: 32px 0 0; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; padding: 76px 0 0; } }

.hero-h1 { font-size: 2.5rem; margin-bottom: 24px; }
@media (min-width: 640px) { .hero-h1 { font-size: 3.2rem; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 4.2rem; } }

.lead { font-size: 1.08rem; color: var(--muted); max-width: 440px; line-height: 1.8; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px 32px; padding-top: 28px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-dim);
}

/* OVERWRITE MOBILE MAX-WIDTH RESTRAINTS TO EMULATE 2026 FULL-BLEED DESIGN INTERFACES */
.hero-img-wrap { width: 100vw; margin-left: -24px; position: relative; }
@media (min-width: 1024px) { .hero-img-wrap { width: 100%; margin-left: 0; } }

.hero-img {
  aspect-ratio: 16/10; width: 100%; overflow: hidden;
  box-shadow: var(--shadow-lg); border-radius: 0px;
}
@media (min-width: 640px) { .hero-img { aspect-ratio: 4/3; border-radius: var(--radius-xl); } }
@media (min-width: 1024px) { .hero-img { aspect-ratio: 4/5; border-radius: var(--radius-xl); } }

.hero-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.hero-img-wrap:hover .hero-img img { transform: scale(1.05); }

.hero-tag {
  position: absolute; bottom: 20px; left: 24px;
  background: rgba(255, 255, 255, 0.9); border: 1px solid var(--line);
  backdrop-filter: blur(8px); border-radius: var(--radius-lg);
  padding: 12px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md); z-index: 10;
}
@media (min-width: 1024px) { .hero-tag { left: -18px; bottom: 22px; background: var(--bg-card); } }
.hero-tag-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--sand); line-height: 1; }
.hero-tag-text { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); line-height: 1.4; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 140px 0; } }
.section-alt { background: var(--bg-alt); }

/* ===== PHOTO CONTAINER EDITS ===== */
.photo { position: relative; overflow: hidden; background: var(--bg-alt); border: 1px solid var(--line-soft); }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(.16,1,.3,1); }
.photo:hover img { transform: scale(1.06); }

.photo .cap {
  position: absolute; left: 12px; bottom: 12px;
  padding: 8px 16px;
  background: rgba(251,251,249,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text); font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 1; transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ===== STORY (STRETCH INTEGRITY) ===== */
.story-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 0.85fr 1.15fr; gap: 70px; } }

.story-img-container { width: 100vw; margin-left: -24px; }
@media (min-width: 1024px) { .story-img-container { width: 100%; margin-left: 0; } }

.story-img { aspect-ratio: 4/3; width: 100%; box-shadow: var(--shadow-lg); border-radius: 0px; }
@media (min-width: 640px) { .story-img { aspect-ratio: 16/10; border-radius: var(--radius-xl); } }
@media (min-width: 1024px) { .story-img { aspect-ratio: 3/4; border-radius: var(--radius-xl); } }

.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 30px; border-top: 1px solid var(--line); margin-top: 30px; }
.story-stats .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--sand); }
.story-stats .lbl { font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase; color: var(--muted-dim); margin-top: 6px; }


/* ===== 3D CAROUSEL GALLERY (FORCE NO-BLUR ENGINE LOOK) ===== */
.carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  display: flex;
  align-items: center;
  touch-action: pan-y;
}
@media (min-width: 1024px) {
  .carousel-viewport {
    width: 100%;
    margin-left: 0;
  }
}

.carousel-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 400px;
  position: relative;
}

.carousel-track {
  display: flex;
  position: absolute;
  top: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Base State: Force complete sharpness on all slides by default */
.carousel-slide {
  min-width: 290px;
  max-width: 290px;
  height: 360px;
  margin: 0 16px; 
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  
  /* Strictly No Blur allowed on base level */
  filter: none !important; 
  -webkit-filter: none !important;
  opacity: 100; 
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, box-shadow 0.4s ease;
}
@media (min-width: 640px) {
  .carousel-slide {
    min-width: 380px;
    max-width: 380px;
    height: 390px;
  }
}

/* Active Slide Element Target Override */
.carousel-slide.active-focus,
.carousel-slide.active-focus img,
.carousel-track .carousel-slide.active-focus {
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 0.90!important;
  transform: scale(1.04) !important;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

/* Force inner graphic layer to stay sharp */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: none !important;
  -webkit-filter: none !important;
}



.carousel-slide .cap {
  position: absolute; 
  left: 16px; 
  bottom: 16px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text); 
  font-family: var(--font-mono); 
  font-size: 0.65rem; 
  letter-spacing: 0.08em; 
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}
.arrow-btn {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.arrow-btn:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== FIXING ROOM CARDS BLANK SPACE UTILITIES ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}

.room-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.room-description {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.desc-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--sand);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 16px;
  text-align: left;
  letter-spacing: 0.06em;
  width: fit-content;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
/* ===== LOCATION LEDGER ===== */
.loc-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
@media (min-width: 1024px) { .loc-grid { grid-template-columns: 0.75fr 1.25fr; } }
.loc-img { aspect-ratio: 4/3; box-shadow: var(--shadow-lg); margin-top: 30px; }

.ledger { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ledger-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding-left 0.3s ease;
}
.ledger-row:hover { padding-left: 8px; }
.ledger-row:last-child { border-bottom: none; }
.ledger-row .place { color: var(--muted); }
.ledger-row .dist { font-family: var(--font-display); font-size: 1.25rem; color: var(--sand-dark); white-space: nowrap; }
.loc-note { font-style: italic; color: var(--muted-dim); margin-top: 26px; font-size: 0.92rem; }

/* ===== DINING (2026 LUXURY LAYOUT UPGRADE) ===== */
.dining-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 40px; 
  align-items: center; 
}
@media (min-width: 1024px) { 
  .dining-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 70px; 
  } 
}

/* Enforce fluid edge-to-edge breakthrough on mobile viewports */
.dining-img-container { 
  width: 100vw; 
  margin-left: -24px; 
}
@media (min-width: 1024px) { 
  .dining-img-container { 
    width: 100%; 
    margin-left: 0; 
  } 
}

.dining-img { 
  aspect-ratio: 16/10; 
  width: 100%; 
  box-shadow: var(--shadow-lg); 
  border-radius: 0px; 
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
@media (min-width: 640px) { 
  .dining-img { 
    aspect-ratio: 4/3; 
    border-radius: var(--radius-xl); 
  } 
}
@media (min-width: 1024px) { 
  .dining-img { 
    aspect-ratio: 4/5; 
    border-radius: var(--radius-xl); 
  } 
}

/* Micro-interaction for luxury boutique depth */
.dining-img-container:hover .dining-img { 
  transform: scale(1.04); 
}

/* ===== 2026 SOPHISTICATED LUXURY TRUST-BRIDGE SECTIONS (Location + Testimonials) ===== */
.section-dark {
  --d-bg: #0A0907; /* Sleek, deeper obsidian velvet background */
  --d-bg-card: rgba(255, 252, 245, 0.035); /* Pure translucent warm glass */
  --d-line: rgba(255, 252, 245, 0.08); /* Sophisticated hairline border */
  --d-text: #F9F6F0; /* Soft anti-glare high-end typographic white */
  --d-muted: rgba(249, 246, 240, 0.6);
  
  background: var(--d-bg);
  /* 2026 Luxury Ambient Lighting: Adds an elegant subtle warm radial glow behind the bento grid */
  background-image: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(194, 65, 12, 0.04) 0%, transparent 60%);
  color: var(--d-text);
  position: relative;
  overflow: hidden;
}

.section-dark .section-title { 
  color: var(--d-text);
  letter-spacing: -0.02em;
}
.section-dark .section-lead { color: var(--d-muted); }

/* --- 2026 Elevated Bento Grid Layout --- */
.loc-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 155px;
  gap: 24px; /* Slightly wider spacing for modern breathing room */
  margin-top: 48px;
}
.loc-bento-tile { 
  border-radius: 20px; /* Sophisticated smoother radius */
}

.loc-tile-hero {
  grid-column: 1 / 3; 
  grid-row: 1 / 3;
  position: relative; 
  overflow: hidden; 
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.loc-tile-hero img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  filter: saturate(0.9) brightness(0.85); /* Premium cinematic image tone */
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease; 
}
.loc-tile-hero:hover img { 
  transform: scale(1.04);
  filter: saturate(1) brightness(0.9);
}
.loc-tile-overlay {
  position: absolute; 
  inset: 0; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end;
  padding: 32px; 
  background: linear-gradient(180deg, rgba(10,9,7,0) 40%, rgba(10,9,7,0.95) 100%);
}

/* Luxury Micro-Badge */
.loc-badge {
  display: inline-block; 
  width: fit-content; 
  font-family: var(--font-mono); 
  font-size: 0.62rem;
  text-transform: uppercase; 
  letter-spacing: 0.08em; 
  padding: 6px 14px; 
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.12); 
  border: 1px solid rgba(217, 119, 6, 0.35); 
  color: #FBBF24; /* Elevated bright gold accent */
  margin-bottom: 16px; 
  backdrop-filter: blur(8px);
}
.loc-tile-hero h3 { 
  font-family: var(--font-display); 
  color: #fff; 
  font-size: 1.5rem; 
  letter-spacing: -0.01em; 
  line-height: 1.3; 
}

/* Advanced Glassmorphism Microcard */
.loc-tile-stat {
  background: var(--d-bg-card); 
  border: 1px solid var(--d-line); 
  backdrop-filter: blur(20px) saturate(120%); 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  padding: 28px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}
.loc-tile-stat:hover { 
  transform: translateY(-6px); 
  border-color: rgba(217, 119, 6, 0.45); 
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.loc-tile-stat:nth-of-type(2) { grid-column: 3; grid-row: 1; }
.loc-tile-stat:nth-of-type(3) { grid-column: 4; grid-row: 1; }
.loc-tile-wide { 
  grid-column: 3 / 5; 
  grid-row: 2; 
  flex-direction: row; 
  align-items: center; 
  gap: 22px; 
}

.loc-stat-num { 
  font-family: var(--font-display); 
  font-size: 2.6rem; 
  color: var(--sand); 
  line-height: 1; 
  font-weight: 300;
}
.loc-tile-wide .loc-stat-num { font-size: 2rem; }
.loc-stat-unit { 
  font-family: var(--font-mono); 
  font-size: 0.58rem; 
  letter-spacing: 0.14em; 
  text-transform: uppercase; 
  color: #FBBF24; 
  margin-top: 8px; 
}
.loc-tile-wide .loc-stat-unit { margin-top: 0; }
.loc-stat-label { font-size: 0.92rem; color: var(--d-text); margin-top: 6px; font-weight: 400; }

@media (max-width: 768px) {
  .loc-bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
  .loc-tile-hero { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }
  .loc-tile-stat:nth-of-type(2), .loc-tile-stat:nth-of-type(3), .loc-tile-wide {
    grid-column: 1; grid-row: auto; padding: 24px;
  }
}

/* --- 2026 Trust & Testimonials Layout --- */
.trust-head { 
  display: flex; 
  flex-wrap: wrap; 
  align-items: flex-end; 
  justify-content: space-between; 
  gap: 32px; 
  margin-bottom: 56px; 
}
.trust-rating-badge {
  background: rgba(255, 252, 245, 0.02);
  border: 1px solid var(--d-line); 
  border-radius: 20px;
  backdrop-filter: blur(20px); 
  padding: 24px 32px; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  min-width: 180px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.trust-rating-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); font-weight: 400; }
.trust-rating-num span { font-size: 1.1rem; color: var(--d-muted); font-family: var(--font-body); }
.trust-rating-stars { color: #FBBF24; letter-spacing: 3px; margin: 8px 0; font-size: 0.85rem; }
.trust-rating-label { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--d-muted); }

.trust-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 860px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  background: var(--d-bg-card); 
  border: 1px solid var(--d-line); 
  border-radius: 24px;
  backdrop-filter: blur(24px) saturate(140%); 
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15), inset 0 1px 1px rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}
.trust-card:hover { 
  transform: translateY(-8px); 
  border-color: rgba(217, 119, 6, 0.45); 
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.trust-stars { color: #FBBF24; letter-spacing: 3px; margin-bottom: 20px; font-size: 0.85rem; }
.trust-quote { 
  font-family: var(--font-display); 
  font-style: italic; 
  font-size: 1.1rem; 
  line-height: 1.7; 
  color: #ECE7DF; /* Slightly crispier high-contrast white reading text */
  margin-bottom: 28px; 
}
.trust-author { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
  padding-top: 18px; 
  border-top: 1px solid rgba(255, 252, 245, 0.06); 
}
.trust-name { font-weight: 600; font-size: 0.95rem; color: var(--d-text); letter-spacing: 0.01em; }
.trust-loc { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--d-muted); }

@media (max-width: 480px) {
  .trust-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .trust-rating-badge { align-self: stretch; }
}



/* ===== FINAL CTA ===== */
.cta-final { text-align: center; }
.cta-final .container { max-width: 720px; }
.cta-title { margin: 0 auto 22px; }
.cta-lead { margin: 0 auto 40px; }

/* ===== PREMIUM LUXURY FOOTER SECTION ===== */
footer { 
  background: #111111; /* Sleek Dark Minimal Background */
  color: #f7f7f7; 
  padding-top: 100px; 
  padding-bottom: 50px; 
  border-top: none; /* Removed hard lines for clean finish */
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 48px; 
  margin-bottom: 80px; 
}
@media (min-width: 768px) { 
  .footer-grid { 
    grid-template-columns: 1.8fr 1fr 1fr 1fr; 
    gap: 64px; 
  } 
}

/* Brand Section Spacing */
.footer-brand { 
  display: flex; 
  flex-direction: column;
  align-items: flex-start; 
  gap: 18px; 
}
.footer-brand .logo {
  display: flex !important;
  align-items: center;
  gap: 14px;
}
.footer-brand .logo-text {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.footer-brand span:last-child { 
  display: none !important; 
}

.footer-desc { 
  color: #a0a0a0; 
  font-size: 0.85rem; 
  line-height: 1.75; 
  max-width: 300px;
}

/* Minimalist column headers */
.footer-col-title { 
  font-family: var(--font-mono); 
  font-size: 0.7rem; 
  text-transform: uppercase; 
  letter-spacing: 0.15em; 
  color: #c5a880; /* Soft warm luxury sand tint */
  margin-bottom: 24px; 
  font-weight: 600;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-col ul li { 
  margin-bottom: 16px; 
  font-size: 0.88rem; 
}
.footer-col ul li a { 
  color: #b0b0b0; 
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s ease;
  display: inline-block;
}
.footer-col ul li a:hover { 
  color: #ffffff; 
  transform: translateX(4px); /* Interactive premium slide indicator */
}

/* Clean Bottom Segment */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Minimal soft hairline divider */
  padding-top: 40px; 
  display: flex; 
  flex-direction: column;
  gap: 20px; 
  align-items: center; 
  justify-content: space-between; 
  font-size: 0.74rem; 
  color: #808080;
}
@media (min-width: 768px) { 
  .footer-bottom { flex-direction: row; } 
}

.footer-bottom-links { 
  display: flex; 
  gap: 32px; 
}
.footer-bottom-links a {
  color: #808080;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover { 
  color: #ffffff; 
}

/* ===================================================================
   FLOATING ACTION BUTTON (frosted glass, light)
=================================================================== */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 500;
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  background: rgba(251,251,249,0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  color: var(--text); font-family: var(--font-mono); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 999px; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px) scale(0.9); pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}
.fab.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab:hover { background: rgba(251,251,249,0.95); }
.fab-icon { font-size: 1rem; color: var(--sand-dark); }

/* ===================================================================
   BOOKING MODAL — crisp frosted glass over the bone background
=================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(28, 27, 25, 0.28);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-panel {
  position: relative;
  width: 100%; max-width: 520px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  padding: 44px 36px 32px;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), opacity 0.4s ease;
  max-height: 92vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); opacity: 1; }

.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(28,27,25,0.05); border: 1px solid var(--line);
  color: var(--text); font-size: 1.2rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.modal-close:hover { background: rgba(28,27,25,0.1); transform: rotate(90deg); }

.modal-steps { display: flex; gap: 8px; margin-bottom: 24px; }
.step-dot { width: 30px; height: 3px; background: var(--line); border-radius: 2px; transition: background 0.3s ease; }
.step-dot.active { background: var(--sand-dark); }
.step-dot.done { background: var(--text); }

.modal-title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 26px; color: var(--text); }

.modal-step { display: none; }
.modal-step.active { display: block; animation: stepIn 0.4s cubic-bezier(.16,1,.3,1); }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 420px) { .field-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-dim); }
.field input, .field select {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px; outline: none; transition: border-color 0.3s ease, background 0.3s ease;
}
.field input:focus, .field select:focus { border-color: var(--sand-dark); background: #fff; }

.field-error { color: #A34E2A; font-size: 0.8rem; margin: -6px 0 14px; min-height: 1em; }

.booking-summary {
  margin-top: 8px; padding: 18px; background: rgba(255,255,255,0.6);
  border: 1px solid var(--line); border-radius: 14px; font-size: 0.86rem; color: var(--muted); line-height: 1.9;
}
.booking-summary strong { color: var(--sand-dark); font-weight: 600; }

.success-block { text-align: center; padding: 20px 0 10px; }
.success-icon {
  width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--text);
  color: var(--bg); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.success-block h4 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 12px; color: var(--text); }
.success-block p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

.modal-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.modal-actions .btn { flex: 1; }
#modalBack[hidden] { display: none; }

/* ===================================================================
   BOOKING FLOW PAGE — room/rate selection, extras, checkout
=================================================================== */
.booking-page { background: var(--bg); }

.bk-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: 76px;
  display: flex; align-items: center;
  background: rgba(251,251,249,0.92); backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.bk-header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bk-back-link {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); transition: color 0.3s ease;
}
.bk-back-link:hover { color: var(--text); }

.bk-stepper { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.bk-step-dot { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bk-step-dot .dot { width: 26px; height: 3px; border-radius: 2px; background: var(--line); transition: background 0.3s ease; }
.bk-step-dot.active .dot { background: var(--sand-dark); }
.bk-step-dot.done .dot { background: var(--text); }
.bk-step-dot .lbl { display: none; font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-dim); white-space: nowrap; }
.bk-step-dot.active .lbl { color: var(--sand-dark); }
@media (min-width: 768px) { .bk-step-dot .lbl { display: block; } }

.bk-shell { display: grid; grid-template-columns: 1fr; gap: 36px; padding: 116px 0 100px; align-items: start; }
@media (min-width: 1024px) { .bk-shell { grid-template-columns: 1.55fr 1fr; gap: 56px; } }

.bk-panel { display: none; min-width: 0; }
.bk-panel.active { display: block; animation: stepIn 0.4s cubic-bezier(.16,1,.3,1); }

.bk-eyebrow { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sand); margin-bottom: 14px; display: block; }
.bk-panel-title { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: -0.01em; margin-bottom: 10px; }
@media (min-width: 768px) { .bk-panel-title { font-size: 2.1rem; } }
.bk-panel-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 560px; margin-bottom: 36px; }

/* --- Room cards --- */
.bk-room-card { background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 28px; }
.bk-room-media { aspect-ratio: 16/9; }
.bk-room-body { padding: 22px 20px 26px; }
@media (min-width: 640px) { .bk-room-body { padding: 28px 30px 32px; } }
.bk-room-body h3 { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -0.01em; margin-bottom: 16px; }

.bk-amenities { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line-soft); }
.bk-amenities li { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--muted); min-width: 0; }
.bk-amenities li::before { content: '✓'; color: var(--sand-dark); font-weight: 700; flex-shrink: 0; }

.bk-rate-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .bk-rate-grid { grid-template-columns: 1fr 1fr; } }

.bk-rate-plan {
  position: relative; border: 1.5px solid var(--line); border-radius: 16px; padding: 18px;
  cursor: pointer; background: rgba(255,255,255,0.5); min-width: 0;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.bk-rate-plan:hover { border-color: var(--sand); transform: translateY(-2px); }
.bk-rate-plan.selected { border-color: var(--sand-dark); background: rgba(194,65,12,0.05); box-shadow: var(--shadow-sm); }
.bk-rate-plan input { position: absolute; opacity: 0; pointer-events: none; }

.bk-rate-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.bk-rate-badge.meals { background: rgba(2,132,199,0.1); color: var(--pool-blue); }
.bk-rate-badge.no-meals { background: rgba(28,27,25,0.06); color: var(--muted); }

.bk-rate-name { font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; line-height: 1.4; padding-right: 26px; }
.bk-rate-price { font-family: var(--font-display); font-size: 1.35rem; color: var(--sand-dark); margin-bottom: 10px; }
.bk-rate-price span { font-family: var(--font-body); font-size: 0.7rem; color: var(--muted-dim); font-weight: 400; }
.bk-rate-terms { font-size: 0.76rem; color: var(--muted); line-height: 1.55; }

.bk-rate-check {
  display: none; position: absolute; top: 16px; right: 16px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sand-dark); color: #fff; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0;
}
.bk-rate-plan.selected .bk-rate-check { display: flex; }

/* --- Extras --- */
.bk-extra-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 20px; background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: 16px; margin-bottom: 14px;
}
.bk-extra-info { min-width: 0; flex: 1 1 200px; }
.bk-extra-info h4 { font-size: 0.96rem; margin-bottom: 4px; }
.bk-extra-info p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.bk-extra-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.bk-extra-price { font-family: var(--font-mono); font-size: 0.82rem; color: var(--sand-dark); white-space: nowrap; }
.bk-toggle-btn {
  font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: transparent;
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
}
.bk-toggle-btn:hover { border-color: var(--text); }
.bk-toggle-btn.added { background: var(--text); color: var(--bg); border-color: var(--text); }
@media (max-width: 420px) { .bk-extra-item { flex-direction: column; align-items: flex-start; } .bk-extra-actions { width: 100%; justify-content: space-between; margin-left: 0; } }

/* --- Summary sidebar --- */
.bk-summary {
  background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--radius-xl);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
@media (min-width: 1024px) { .bk-summary { position: sticky; top: 96px; } }
.bk-summary h4 { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-dim); margin-bottom: 18px; }
.bk-summary-empty { font-size: 0.85rem; color: var(--muted-dim); font-style: italic; }
.bk-summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.84rem; padding: 9px 0; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
.bk-summary-row span:first-child { min-width: 0; }
.bk-summary-row span:last-child { flex-shrink: 0; font-family: var(--font-mono); color: var(--text); }
.bk-summary-row.head { color: var(--text); font-weight: 600; font-size: 0.88rem; border-bottom: none; padding-bottom: 2px; }
.bk-summary-row.total { border-bottom: none; padding-top: 16px; margin-top: 6px; border-top: 1px solid var(--line); align-items: center; }
.bk-summary-row.total span:first-child { font-family: var(--font-body); font-weight: 600; color: var(--text); font-size: 0.95rem; }
.bk-total-amt { font-family: var(--font-display) !important; color: var(--sand-dark) !important; font-size: 1.5rem !important; }

/* --- Checkout form --- */
.bk-phone-group { display: flex; gap: 8px; }
.bk-phone-group select { flex: 0 0 108px; min-width: 0; }
.bk-phone-group input { flex: 1; min-width: 0; }

.bk-checkbox-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 0.84rem; color: var(--muted); line-height: 1.55; }
.bk-checkbox-row input { margin-top: 4px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--sand-dark); }
.bk-checkbox-row strong { color: var(--text); font-weight: 600; }

.bk-billing { margin-top: 30px; padding: 22px 20px; border-radius: 16px; background: rgba(28,27,25,0.03); border: 1px solid var(--line); }
@media (min-width: 640px) { .bk-billing { padding: 26px; } }
.bk-billing-head { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-dim); }
.bk-discount-row { display: flex; gap: 10px; margin-bottom: 18px; }
.bk-discount-row input { flex: 1; min-width: 0; }
.bk-discount-row button { flex-shrink: 0; }
.bk-discount-msg { font-size: 0.78rem; margin: -10px 0 16px; min-height: 1em; }
.bk-discount-msg.ok { color: #0284C7; }
.bk-discount-msg.err { color: #A34E2A; }
.bk-billing-note { font-size: 0.76rem; color: var(--muted-dim); margin-top: 16px; line-height: 1.65; }

.bk-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.bk-actions .btn { flex: 1 1 140px; }
.bk-error { color: #A34E2A; font-size: 0.82rem; margin: -8px 0 16px; min-height: 1em; }

/* --- Confirmation --- */
.bk-confirm-ledger { background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: 16px; padding: 22px; font-size: 0.85rem; color: var(--muted); line-height: 1.9; white-space: pre-wrap; word-break: break-word; margin-top: 22px; }
.bk-confirm-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.bk-confirm-actions .btn { flex: 1 1 220px; }

@media (max-width: 640px) {
  .bk-header-inner .logo-text { display: none; }
}

/* --- Single-price suite card (fixed B&B default) --- */
.bk-rate-plan-single { display: block; cursor: pointer; }
.bk-rate-plan-single .bk-rate-name { padding-right: 0; margin-bottom: 10px; font-size: 1rem; }
.bk-rate-plan-single .bk-rate-price { font-size: 1.6rem; }
.bk-rate-plan-single .bk-rate-check { top: 18px; right: 18px; }

/* --- Dual-action matrix (Step 4 checkout card) --- */
.bk-action-matrix { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
@media (min-width: 640px) { .bk-action-matrix { flex-direction: row; } }

.bk-action-matrix .btn { flex: 1; flex-direction: column; gap: 4px; padding: 18px 22px; white-space: normal; text-align: center; line-height: 1.3; }
.bk-action-sub { display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0.01em; font-size: 0.72rem; opacity: 0.75; font-weight: 400; margin-top: 2px; }

.bk-action-primary { background: var(--text); color: var(--bg); border-color: var(--text); box-shadow: var(--shadow-sm); }
.bk-action-primary:hover { background: var(--sand-dark); border-color: var(--sand-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.bk-action-glass {
  background: rgba(255,255,255,0.55); border: 1.5px solid var(--line);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--text);
}
.bk-action-glass:hover { border-color: var(--sand-dark); background: rgba(255,255,255,0.8); transform: translateY(-3px); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .ticker, .photo img, .hero-img img { animation: none !important; transition: none !important; }
}
