/* ============================================
   Blue Bell Guesthouse — Single Page Styles
   Inspired by Tzaneen Paving design system
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colours */
  --midnight: #243038;
  --bell-blue: #5b7f95;
  --copper: #c4824f;
  --copper-dark: #b3743f;
  --sage: #7a8f6f;
  --linen: #f6f2ec;
  --ivory: #faf8f4;
  --mist: #ddd6cb;
  --text: #2e3538;
  --text-muted: #7a7168;
  --whatsapp: #1a9e4b;
  --whatsapp-dark: #168a40;
  --white: #ffffff;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(36, 48, 56, 0.08);
  --shadow-md: 0 4px 12px rgba(36, 48, 56, 0.1);
  --shadow-xl: 0 16px 50px rgba(36, 48, 56, 0.15);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: var(--bell-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--midnight); }

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--bell-blue);
  outline-offset: 2px;
}

.btn:focus-visible { outline-offset: 3px; }
.header-cta:focus-visible { outline-color: var(--whatsapp); }
.float-btn:focus-visible { outline-color: var(--white); }
.site-header a:focus-visible { outline-color: var(--bell-blue); }
.mobile-nav a:focus-visible { outline-color: var(--white); }
.room-gallery-nav:focus-visible { outline-color: var(--white); outline-offset: -2px; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 400;
  line-height: 1.2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.sr-only:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--midnight);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
  text-decoration: none;
}

/* --- Kicker (section label) — with accent underline --- */
.kicker {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bell-blue);
  margin-bottom: 0.75rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bell-blue);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 1.75rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: var(--white); }

.btn-copper {
  background: var(--bell-blue);
  color: var(--white);
}
.btn-copper:hover { background: var(--midnight); color: var(--white); }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); color: var(--white); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   1. HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--midnight);
}

.header-logo svg { width: 32px; height: 32px; }

.header-logo span {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--midnight);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Nav link hover underline animation (from TP) */
.header-nav a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(36, 48, 56, 0.65);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  padding-bottom: 4px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--bell-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.header-nav a:hover { color: var(--midnight); }
.header-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.55rem 1.1rem;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.header-cta svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  width: 24px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav — slide-in panel */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 104;
  background: rgba(36, 48, 56, 0.5);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 105;
  width: 80%;
  max-width: 320px;
  background: var(--midnight);
  flex-direction: column;
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  will-change: transform;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 3.5rem;
}

.mobile-nav-links a {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.6rem 0;
  transition: color var(--transition);
}

.mobile-nav-links a:hover { color: var(--white); }

.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav-cta .btn-outline-light {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

@supports not (min-height: 100svh) {
  .hero { min-height: 100vh; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(36, 48, 56, 0.92) 0%,
    rgba(36, 48, 56, 0.65) 40%,
    rgba(36, 48, 56, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-content .kicker {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(91, 127, 149, 0.5);
}

.hero h1 {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.4);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   4. ROOMS
   ============================================ */
.rooms-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.rooms-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.rooms-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
}

.room {
  display: grid;
  grid-template-columns: 55% 45%;
  contain: content;
}

.room:nth-child(even) {
  grid-template-columns: 45% 55%;
}

.room:nth-child(even) .room-gallery { order: 2; }
.room:nth-child(even) .room-content { order: 1; }

.room:nth-child(odd) { background: var(--linen); }
.room:nth-child(even) { background: var(--ivory); }

/* Room gallery carousel */
.room-gallery {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
  aspect-ratio: 3/2;
}

@supports not (aspect-ratio: 1) {
  .room-gallery {
    aspect-ratio: auto;
    padding-bottom: 66.67%;
    height: 0;
  }
}

.room-gallery-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.room-gallery-track::-webkit-scrollbar { display: none; }

.room-gallery-track .room-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-gallery-track .room-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.room-gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(36, 48, 56, 0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 5;
}

.room-gallery-nav:hover {
  background: rgba(36, 48, 56, 0.8);
  transform: translateY(-50%) scale(1.08);
}

.room-gallery-prev { left: 12px; }
.room-gallery-next { right: 12px; }

.room-gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(36, 48, 56, 0.6);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-lg);
  z-index: 5;
  backdrop-filter: blur(4px);
}

/* Room content */
.room-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
}

.room-name {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.room-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(91, 127, 149, 0.12);
  color: var(--bell-blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.room-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 380px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.75rem;
  list-style: none;
}

.room-amenities li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.room-amenities li svg {
  width: 15px;
  height: 15px;
  color: var(--bell-blue);
  flex-shrink: 0;
}

.room-price {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.room-price small {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================
   5. PHOTO STRIP (Gallery)
   ============================================ */
.photo-strip {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--white);
  overflow: hidden;
  contain: layout paint;
  border-top: 1px solid var(--mist);
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

.photo-strip-header {
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.photo-strip-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
}

.photo-strip-track::-webkit-scrollbar { display: none; }

.photo-strip-track picture {
  flex-shrink: 0;
  height: 280px;
  display: block;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.photo-strip-track img {
  height: 100%;
  width: auto;
  display: block;
}

/* ============================================
   6. ABOUT
   ============================================ */
.about-section {
  background: var(--ivory);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 3vw, 2.5rem);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* About section — reason cards */
.about-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.about-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.reason-card svg {
  width: 32px;
  height: 32px;
  color: var(--bell-blue);
  margin-bottom: var(--space-sm);
}

.reason-card h3 {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.reason-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-closer {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   7. REVIEWS
   ============================================ */
.reviews-section {
  background: var(--midnight);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.reviews-section .kicker {
  color: var(--bell-blue);
  border-bottom-color: rgba(91, 127, 149, 0.4);
}

.reviews-section h2 {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.reviews-trust {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}

/* Rating badge */
.reviews-rating {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.reviews-score {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.reviews-rating-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reviews-rating .review-stars {
  color: var(--copper);
  font-size: 1rem;
  letter-spacing: 1px;
}

.reviews-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* Review cards — horizontal scroll */
.reviews-cards {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--space-sm);
}

.reviews-cards::-webkit-scrollbar { display: none; }

.reviews-cards::after {
  content: '';
  flex-shrink: 0;
  width: 1px;
}

/* Scroll fade hint — shows more content exists */
.reviews-cards-wrap {
  position: relative;
}

.reviews-cards-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--midnight));
  pointer-events: none;
  z-index: 2;
}

.review-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: background var(--transition), border-color var(--transition);
  scroll-snap-align: start;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.review-card-stars {
  color: var(--copper);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.review-card blockquote {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-lg);
}

.review-card-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.review-card-source {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   7b. FAQ
   ============================================ */
.faq-section {
  background: var(--ivory);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 3vw, 2.5rem);
}

.faq-inner {
  max-width: 740px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--mist);
}

.faq-item:first-child {
  border-top: 1px solid var(--mist);
}

.faq-item summary {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Remove default marker on all browsers */
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary::after {
  content: '+';
  font-family: var(--ff-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--bell-blue);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '\d7';
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 0 1.25rem;
  margin: 0;
}

/* ============================================
   8. LOCATION & CONTACT
   ============================================ */
.contact-section {
  position: relative;
  min-height: 500px;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.contact-map {
  position: relative;
  width: 100%;
  height: 500px;
  background: var(--midnight);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) contrast(0.9);
}

.contact-map-link {
  display: none;
}

.contact-card {
  position: absolute;
  bottom: 2rem;
  left: clamp(1rem, 3vw, 2.5rem);
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  width: calc(100% - 2rem);
  z-index: 5;
}

.contact-card h2 {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--bell-blue);
  margin-top: 2px;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--bell-blue); }

.contact-hint {
  color: var(--text-muted);
}

.contact-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   9. FOOTER
   ============================================ */
.site-footer {
  background: var(--midnight);
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}

.footer-logo svg { width: 22px; height: 22px; }

.footer-logo span {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.footer-info {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

.footer-info a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-info a:hover { color: var(--white); }

.footer-tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   10. PERSISTENT CTAs
   ============================================ */

.desktop-cta-float {
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 900;
  flex-direction: column;
  gap: 16px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.float-btn {
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
  transition: transform var(--transition);
  position: relative;
}

.float-btn svg {
  width: 34px;
  height: 34px;
}

.float-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: float-pulse 3s ease-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes float-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.float-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.float-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.08);
}

.float-call {
  background: var(--copper);
  color: var(--white);
}

.float-call:hover {
  background: var(--copper-dark);
  transform: scale(1.08);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav-overlay { display: block; }

  .site-header { height: 56px; }

  .room {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .room:nth-child(even) { grid-template-columns: 1fr; }
  .room:nth-child(even) .room-gallery { order: 0; }
  .room:nth-child(even) .room-content { order: 0; }

  .room-gallery {
    height: auto;
    aspect-ratio: 4/3;
  }

  .about-reasons { grid-template-columns: 1fr 1fr; }

  .contact-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--mist);
  }

  .contact-map {
    height: 200px;
  }

  .contact-map iframe {
    display: none;
  }

  .contact-map-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
  }

  .contact-map-link:hover {
    color: var(--white);
  }

  .contact-map-link svg {
    width: 36px;
    height: 36px;
    stroke: var(--bell-blue);
  }

  .contact-map-link span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .room-gallery { aspect-ratio: 4/3; }

  .photo-strip-track picture { height: 200px; }

  .review-card { flex: 0 0 280px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

}

@media (max-width: 480px) {
  .about-reasons { grid-template-columns: 1fr; }
}

@media (max-width: 414px) {
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .room-content { padding: var(--space-lg); }
  .room-name { font-size: 1.5rem; }

  .contact-card { padding: var(--space-lg); }
}

@media (min-width: 1024px) {
  .desktop-cta-float {
    bottom: 32px;
    right: 28px;
    gap: 14px;
  }

  .float-btn {
    width: 75px;
    height: 75px;
  }
}
