/* ============================================================
   NABUGABO HOLIDAY CENTER — BRIDGE CSS
   Maps HTML class names to the design system.
   The HTML uses simplified classes, the design system uses BEM.
   This file bridges them so nothing in the HTML needs to change.
   ============================================================ */

/* ═══════════════════════════════════════════════════════════
   1. BUTTON VARIANT BRIDGES
   HTML: btn-primary  →  Design System: btn--primary
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  background: var(--color-lake-mid);
  color: white;
  border-color: var(--color-lake-mid);
  box-shadow: 0 2px 12px rgba(74,29,138,0.30);
}
.btn-primary:hover {
  background: var(--color-lake-deep);
  border-color: var(--color-lake-deep);
  box-shadow: 0 4px 20px rgba(74,29,138,0.40);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-lake-mid);
  border-color: var(--color-lake-mid);
}
.btn-outline:hover {
  background: var(--color-lake-mid);
  color: white;
}

.btn-danger {
  background: var(--color-error);
  color: white;
  border-color: var(--color-error);
}

/* ── Size bridges ── */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}
.btn-full, .btn-block {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   2. EYEBROW / SECTION LABEL BRIDGE
   HTML: class="eyebrow"  →  DS: section-eyebrow
   ═══════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-lake-bright);
  margin-bottom: var(--space-3);
  padding: var(--space-1) var(--space-4);
  background: rgba(107,50,184,0.10);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(107,50,184,0.20);
}

/* ═══════════════════════════════════════════════════════════
   3. NAV BRIDGES
   HTML: is-active  →  DS: active
   ═══════════════════════════════════════════════════════════ */
.nav-link.is-active {
  color: white;
  background: rgba(255,255,255,0.10);
}
.nav-link.is-active::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════
   4. LOGO TEXT BRIDGE
   HTML uses inline <span class="logo-text">
   ═══════════════════════════════════════════════════════════ */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--text-inverse);
  letter-spacing: -0.01em;
}
.logo-text em {
  font-size: 0.7em;
  font-weight: var(--weight-regular);
  opacity: 0.75;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   5. HERO SECTION
   Complete styling for the homepage hero
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-lake-deep);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(72px + var(--space-16));
  padding-bottom: var(--space-16);
  max-width: 900px;
}

.hero .eyebrow {
  color: var(--color-sand-warm);
  background: rgba(200,168,232,0.12);
  border-color: rgba(200,168,232,0.25);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--weight-bold);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: var(--space-5);
}

.hero-title em {
  font-style: italic;
  color: var(--color-sand-warm);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 600px;
}

/* ── Hero Badges ── */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
  list-style: none;
  padding: 0;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  padding: var(--space-2) var(--space-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

/* ── Hero Scroll Cue ── */
.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-circle);
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
  transition: color var(--duration-fast), background var(--duration-fast);
}

.hero-scroll-cue:hover {
  color: white;
  background: rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════════════════════════════
   6. BOOKING WIDGET (in hero)
   ═══════════════════════════════════════════════════════════ */
/* Override components.css — hero widget must be transparent */
.booking-widget {
  margin-top: var(--space-8);
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.booking-widget-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: var(--space-4);
  align-items: end;
}

.bw-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bw-field label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.bw-field input,
.bw-field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-surface);
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.bw-field input:focus,
.bw-field select:focus {
  outline: none;
  border-color: var(--color-lake-mid);
  box-shadow: 0 0 0 3px rgba(107,50,184,0.15);
}

.bw-submit {
  align-self: end;
  white-space: nowrap;
  min-width: max-content;
}

@media (max-width: 768px) {
  .booking-widget-inner {
    grid-template-columns: 1fr 1fr;
  }
  .bw-submit {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .booking-widget-inner {
    grid-template-columns: 1fr;
  }
  .bw-submit {
    grid-column: span 1;
  }
}

/* ── Mobile: collapsible booking widget ── */

/* Toggle pill — visible only on mobile */
.bw-toggle-pill {
  display: none; /* hidden on desktop */
}

/* Form body — always visible on desktop */
.bw-form-body {
  position: relative;
}

/* Close button — hidden on desktop */
.bw-close {
  display: none;
}

@media (max-width: 768px) {
  /* Show the toggle pill */
  .bw-toggle-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.30);
    border-radius: var(--radius-pill);
    color: white;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .bw-toggle-pill:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.45);
  }

  /* Chevron animation */
  .bw-chevron {
    transition: transform 0.3s ease;
  }
  .booking-widget.bw-expanded .bw-chevron {
    transform: rotate(180deg);
  }

  /* Collapse the form body by default on mobile */
  .booking-widget:not(.bw-expanded):not(.bw-desktop) .bw-form-body {
    display: none;
  }

  /* When expanded: show the form */
  .booking-widget.bw-expanded .bw-form-body {
    display: block;
    /* slide down animation */
    animation: bwSlideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
    background: rgba(20, 10, 45, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-4) var(--space-4);
    margin-top: var(--space-3);
  }

  /* Close button */
  .booking-widget.bw-expanded .bw-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: var(--radius-circle);
    color: rgba(255,255,255,0.80);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
  }
  .bw-close:hover {
    background: rgba(255,255,255,0.20);
    color: white;
  }

  /* Stack to single column on mobile */
  .booking-widget.bw-expanded .booking-widget-inner {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .booking-widget.bw-expanded .bw-field label {
    color: rgba(255,255,255,0.70);
  }
  .booking-widget.bw-expanded .bw-field input,
  .booking-widget.bw-expanded .bw-field select {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.25);
    color: white;
  }
  .booking-widget.bw-expanded .bw-field input::placeholder {
    color: rgba(255,255,255,0.45);
  }
  .booking-widget.bw-expanded .bw-field select option {
    background: #1a0a3a;
    color: white;
  }
  .booking-widget.bw-expanded .bw-submit {
    width: 100%;
    margin-top: var(--space-2);
  }
}

@keyframes bwSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mobile: hide booking widget on scroll down, show on scroll up ── */
@media (max-width: 768px) {
  .booking-widget.bw-sticky {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    border-radius: 0;
    margin: 0;
    padding: var(--space-4) var(--space-5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .booking-widget.bw-sticky.bw-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   7. ROOMS PREVIEW SECTION
   ═══════════════════════════════════════════════════════════ */
.rooms-preview {
  background: var(--bg-page);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-8);
}

/* ── Room Cards ── */
.room-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base) var(--ease-standard);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.room-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-standard);
}
.room-card:hover .room-card-img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: rgba(45,41,38,0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-card-body {
  padding: var(--space-6);
}

.room-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.room-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.room-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: var(--border-hairline);
}

.room-card-guests {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.room-card-price {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.room-card-price strong {
  font-family: var(--font-display);
  font-size: var(--text-md);
  color: var(--color-lake-mid);
  font-weight: var(--weight-semibold);
}

/* ── Section CTA ── */
.section-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ── Skeleton Cards ── */
.skeleton-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(90deg, var(--color-pale) 25%, var(--color-light) 50%, var(--color-pale) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-lines {
  padding: var(--space-6);
}

.skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, var(--color-pale) 25%, var(--color-light) 50%, var(--color-pale) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}

.skeleton-line.short {
  width: 60%;
}

/* ═══════════════════════════════════════════════════════════
   8. EXPERIENCE SECTION
   ═══════════════════════════════════════════════════════════ */
.experience-section {
  background: var(--bg-surface);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.experience-text .section-title {
  margin-bottom: var(--space-6);
}

.experience-text > p {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107,50,184,0.08);
  border-radius: var(--radius-lg);
}

.feature-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.feature-list li p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ── Experience Images ── */
.experience-images {
  position: relative;
}

.exp-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.exp-img--large {
  grid-column: span 2;
  aspect-ratio: 16/10;
}

.exp-img:not(.exp-img--large) {
  aspect-ratio: 1/1;
}

@media (max-width: 900px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* ═══════════════════════════════════════════════════════════
   9. STATS SECTION
   ═══════════════════════════════════════════════════════════ */
.stats-section {
  background: var(--gradient-lake);
  padding-block: var(--space-16);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(200,168,232,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--weight-bold);
  color: white;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.80);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.stat-detail {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.50);
  font-style: italic;
  margin-top: var(--space-1);
  line-height: var(--leading-snug);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

/* ═══════════════════════════════════════════════════════════
   10. DINING SECTION
   ═══════════════════════════════════════════════════════════ */
.dining-section {
  background: var(--bg-page);
  position: relative;
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}

/* ── Menu Preview Card ── */
.menu-preview-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base);
}
.menu-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-preview-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.menu-preview-body {
  padding: var(--space-5);
}

.menu-preview-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.menu-preview-body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.badge-daily {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-terracotta);
  background: rgba(192,82,42,0.10);
  padding: 2px var(--space-3);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.menu-preview-price {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-lake-mid);
}

/* ═══════════════════════════════════════════════════════════
   11. REVIEWS SECTION
   ═══════════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--bg-surface);
}

.reviews-carousel {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.review-slide {
  display: none;
  animation: carouselFade var(--duration-slow) var(--ease-out) both;
}

.review-slide.is-active {
  display: block;
}

.review-card {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  padding: var(--space-10) var(--space-8);
  background: var(--bg-page);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: none;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-lake-pale);
  pointer-events: none;
}

.review-stars {
  font-size: var(--text-xl);
  color: var(--color-sand-mid);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.review-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.review-body {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-style: italic;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.review-footer {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.review-footer strong {
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
}

/* ── Carousel Controls ── */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.carousel-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  border: 1.5px solid var(--color-light);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: var(--text-xl);
  cursor: pointer;
  transition: border-color var(--duration-fast), background var(--duration-fast), color var(--duration-fast);
}
.carousel-btn:hover {
  border-color: var(--color-lake-mid);
  color: var(--color-lake-mid);
  background: rgba(107,50,184,0.08);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  background: var(--color-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-fast), width var(--duration-fast);
}

.carousel-dots .dot.is-active {
  background: var(--color-lake-mid);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ═══════════════════════════════════════════════════════════
   12. CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding-block: var(--space-24);
  background: var(--gradient-forest);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(107,50,184,0.20) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(160,79,186,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--weight-semibold);
  color: white;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-8);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   13. FOOTER BRIDGE
   Match HTML structure to footer CSS styling
   ═══════════════════════════════════════════════════════════ */
.site-footer .footer-grid {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

/* Footer uses <h3> but CSS targets <h4> — bridge them */
.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-6);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
}

.footer-col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--duration-fast), transform var(--duration-fast);
  display: inline-block;
  text-decoration: none;
}

.footer-col ul a:hover {
  color: var(--color-sand-warm);
  transform: translateX(4px);
}

/* Footer contact section with <address> */
.footer-contact address {
  font-style: normal;
}
.footer-contact address p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-3);
  line-height: var(--leading-relaxed);
}
.footer-contact address a {
  color: rgba(255,255,255,0.6);
  transition: color var(--duration-fast);
  text-decoration: none;
}
.footer-contact address a:hover {
  color: var(--color-sand-warm);
}

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-5);
}
.footer-logo span {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: white;
  line-height: 1.15;
}
.footer-logo em {
  font-size: 0.75em;
  opacity: 0.7;
}

/* Footer brand paragraph */
.footer-brand > p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: var(--space-6);
}

/* Social links in footer */
.social-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  transition: background var(--duration-fast), color var(--duration-fast), transform var(--duration-fast);
  text-decoration: none;
}
.social-links a:hover {
  background: rgba(107,50,184,0.30);
  color: var(--color-lake-pale);
  transform: translateY(-2px);
}

/* Newsletter form in footer */
.newsletter-inner {
  display: flex;
  gap: var(--space-3);
}

.newsletter-form {
  margin-top: var(--space-6);
}

.form-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  margin-top: var(--space-2);
}

.newsletter-form #nl-email {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: white;
  min-width: 0;
}
.newsletter-form #nl-email::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form #nl-email:focus {
  outline: none;
  border-color: var(--color-lake-bright);
  background: rgba(255,255,255,0.12);
}

/* Footer bottom */
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom nav {
  display: flex;
  gap: var(--space-6);
}
.footer-bottom nav a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.footer-bottom nav a:hover {
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════════
   14. FOOTER RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}

/* ═══════════════════════════════════════════════════════════
   15. AUTH PAGE BRIDGE
   HTML: auth-split, auth-brand, auth-form-panel, auth-tab is-active
   ═══════════════════════════════════════════════════════════ */
.auth-body {
  background: var(--bg-page);
  min-height: 100dvh;
}

.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
}

.auth-brand {
  position: relative;
  overflow: hidden;
  background: var(--gradient-lake);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-12);
}

.auth-brand-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.auth-brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,41,38,0.3) 0%, rgba(45,41,38,0.88) 100%);
}

.auth-brand-content {
  position: relative;
  z-index: 1;
  color: white;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-10);
}
.auth-logo span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: white;
  line-height: 1.15;
}
.auth-logo em {
  font-size: 0.75em;
  font-weight: var(--weight-regular);
  opacity: 0.7;
}

.auth-quote {
  margin-bottom: var(--space-8);
  border: none;
  padding: 0;
}
.auth-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--weight-light);
  line-height: 1.3;
  font-style: italic;
  margin-bottom: var(--space-4);
}
.auth-quote footer {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.auth-perks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.auth-perks li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Auth form panel */
.auth-form-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-8);
  background: var(--bg-page);
  overflow-y: auto;
}

.auth-form-inner {
  width: 100%;
  max-width: 420px;
}

.auth-back-link {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--color-lake-mid);
  text-decoration: none;
  margin-bottom: var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  transition: color var(--duration-fast);
}
.auth-back-link:hover {
  color: var(--color-lake-deep);
}

/* Auth tabs */
.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: var(--space-8);
  background: var(--color-pale);
  border-radius: var(--radius-pill);
  padding: var(--space-1);
}

.auth-tab {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  font-family: var(--font-body);
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast), box-shadow var(--duration-fast);
}

.auth-tab.is-active {
  background: var(--bg-surface);
  color: var(--color-lake-mid);
  box-shadow: var(--shadow-sm);
}

/* Auth panels */
.auth-panel:not(.is-active) {
  display: none;
}

.auth-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.auth-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

/* Auth form inputs */
.auth-form .form-group {
  margin-bottom: var(--space-5);
}

.auth-form .form-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form input[type="tel"] {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-surface);
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--color-lake-mid);
  box-shadow: 0 0 0 3px rgba(74,29,138,0.12);
}

.auth-form input::placeholder { color: var(--text-muted); }

.forgot-link {
  font-size: var(--text-xs);
  color: var(--color-lake-mid);
  font-weight: var(--weight-medium);
  text-decoration: none;
}
.forgot-link:hover {
  color: var(--color-lake-deep);
}

/* Password field with toggle */
.input-password {
  position: relative;
}
.input-password input {
  padding-right: 44px;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: var(--space-3);
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: var(--space-1);
  display: flex;
  transition: color var(--duration-fast);
}
.toggle-password:hover {
  color: var(--text-primary);
}

/* Checkbox row */
.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--color-muted);
  border-radius: 4px;
  background: var(--bg-surface);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--duration-fast), background var(--duration-fast);
}
.form-check input[type="checkbox"]:hover {
  border-color: var(--color-lake-mid);
}
.form-check input[type="checkbox"]:checked {
  background: var(--color-lake-mid);
  border-color: var(--color-lake-mid);
}
.form-check input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-lake-bright);
  outline-offset: 2px;
}
.form-check label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  cursor: pointer;
  margin-bottom: 0 !important;
}

/* Form error/success */
.field-error:empty { display: none; }
.field-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
}
.form-error:empty { display: none; }
.form-error {
  font-size: var(--text-sm);
  color: var(--color-error);
  background: rgba(192,57,43,0.08);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
}
.form-success:empty { display: none; }
.form-success {
  font-size: var(--text-sm);
  color: var(--color-forest-light);
  background: rgba(160,130,80,0.08);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
}

/* Password strength */
.pwd-strength {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.pwd-strength-bar {
  flex: 1;
  height: 4px;
  background: var(--color-pale);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.pwd-strength-bar span {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  transition: width var(--duration-base), background var(--duration-base);
}
.pwd-strength-weak { background: var(--color-error); }
.pwd-strength-fair { background: var(--status-pending); }
.pwd-strength-good { background: var(--color-sand-mid); }
.pwd-strength-strong { background: var(--color-forest-light); }
#pwd-strength-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
  min-width: 40px;
}

/* ── Auth form submit button ── */
.auth-form .btn.btn-primary.btn-full,
.auth-form .btn-primary.btn-full {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  margin-top: var(--space-3);
  box-shadow: 0 4px 16px rgba(107,50,184,0.30);
  transition: 
    background var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-spring),
    box-shadow var(--duration-fast) var(--ease-standard);
}
.auth-form .btn.btn-primary.btn-full:hover,
.auth-form .btn-primary.btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107,50,184,0.40);
}
.auth-form .btn.btn-primary.btn-full:active,
.auth-form .btn-primary.btn-full:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(107,50,184,0.25);
}

/* Loading button state */
.btn.is-loading {
  pointer-events: none;
  position: relative;
}
.btn.is-loading .btn-text {
  visibility: hidden;
}
.btn-spinner {
  display: none;
}
.btn.is-loading .btn-spinner {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@media (max-width: 768px) {
  .auth-split {
    grid-template-columns: 1fr;
  }
  .auth-brand {
    display: none;
  }
  .auth-form-panel {
    padding: var(--space-8) var(--space-5);
  }
}

/* ═══════════════════════════════════════════════════════════
   16. HOMEPAGE RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-content {
    padding-top: calc(72px + var(--space-8));
    padding-bottom: var(--space-10);
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   17. HERO POSTER FALLBACK
   When video can't play, show the poster image as bg
   ═══════════════════════════════════════════════════════════ */
.hero-media video {
  background-image: url('../images/hero-poster.jpg');
  background-size: cover;
  background-position: center;
}

/* ═══════════════════════════════════════════════════════════
   18. PLACEHOLDER IMAGE FOR ITEMS LOADED VIA JS
   ═══════════════════════════════════════════════════════════ */
.room-card-img[src=""],
.room-card-img:not([src]),
.menu-preview-card img[src=""],
.menu-preview-card img:not([src]) {
  background: linear-gradient(135deg, var(--color-lake-pale) 0%, var(--color-forest-pale) 100%);
}

/* ═══════════════════════════════════════════════════════════
   19. PAGE HERO BRIDGE (accommodations, menu, etc.)
   HTML uses:    page-hero-overlay, page-hero-content, page-hero-title
   Acc CSS uses: page-hero__overlay, page-hero__content, page-hero__title
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 72px;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-color: var(--color-lake-deep);
}

.page-hero--short {
  min-height: 260px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,41,38,0.4) 0%, rgba(45,41,38,0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-12) 0 var(--space-10);
  color: white;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: var(--weight-semibold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
  color: white;
}

.page-hero-content > p:not(.eyebrow) {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
}

/* ═══════════════════════════════════════════════════════════
   20. BOOKING BAR BRIDGE (accommodations page filter bar)
   ═══════════════════════════════════════════════════════════ */
.booking-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-hairline);
  padding: var(--space-5) 0;
  position: sticky;
  top: 64px;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.booking-bar-inner {
  display: flex;
  align-items: flex-end;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.bb-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
  min-width: 140px;
}

.bb-field label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.bb-field input,
.bb-field select {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  background: var(--bg-page);
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.bb-field input:focus,
.bb-field select:focus {
  outline: none;
  border-color: var(--color-lake-mid);
  box-shadow: 0 0 0 3px rgba(74,29,138,0.12);
}

/* ── Toggle pill: hidden on desktop, shown on mobile ── */
.bb-toggle-wrap {
  display: none;
}

/* ── Collapsible body: always visible on desktop ── */
.bb-body {
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity    0.3s ease;
  max-height: 400px; /* large enough for expanded state */
  opacity: 1;
}

@media (max-width: 768px) {
  /* Show toggle pill on mobile */
  .bb-toggle-wrap {
    display: flex;
    align-items: center;
    padding: var(--space-2) 0;
  }

  .bb-toggle-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: none;
    border: 1.5px solid var(--color-lake-mid);
    border-radius: var(--radius-pill);
    color: var(--color-lake-mid);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .bb-toggle-pill:hover {
    background: rgba(107,50,184,0.07);
  }

  .bb-chevron {
    transition: transform 0.3s ease;
  }
  .booking-bar.bb-collapsed .bb-chevron {
    transform: rotate(-90deg);
  }

  /* START collapsed on mobile by default */
  .bb-body {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  /* Expanded state */
  .booking-bar.bb-expanded .bb-body {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
  }
  .booking-bar.bb-expanded .bb-chevron {
    transform: rotate(180deg);
  }

  /* Stack fields vertically */
  .booking-bar-inner {
    flex-direction: column;
    padding-bottom: var(--space-3);
  }
  .bb-field {
    min-width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════
   21. CATEGORY PILLS BRIDGE (filter tabs)
   ═══════════════════════════════════════════════════════════ */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  padding-top: var(--space-4);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.pill:hover {
  border-color: var(--color-lake-mid);
  color: var(--color-lake-mid);
  background: rgba(74,29,138,0.04);
}

.pill.is-active {
  background: var(--color-lake-mid);
  color: white;
  border-color: var(--color-lake-mid);
}

/* ═══════════════════════════════════════════════════════════
   22. ACCOMMODATION CARD BRIDGE
   HTML uses: acc-card, acc-card-gallery, acc-card-img, etc.
   CSS uses:  accom-card, accom-card__img-wrap, etc.
   ═══════════════════════════════════════════════════════════ */
.accommodations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-8);
}

.acc-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base) var(--ease-standard);
  display: flex;
  flex-direction: column;
}

.acc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.acc-card-gallery {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.acc-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.acc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-standard);
}

.acc-card:hover .acc-card-img {
  transform: scale(1.06);
}

.acc-card-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.badge-category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: rgba(45,41,38,0.85);
  backdrop-filter: blur(8px);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
}

.badge-featured {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-forest-dark);
  background: var(--color-sand-warm);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.acc-card-body {
  padding: var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.acc-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.acc-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  line-height: var(--leading-snug);
}

.acc-card-title a {
  color: inherit;
  text-decoration: none;
}

.acc-card-title a:hover {
  color: var(--color-lake-mid);
}

.acc-card-price {
  text-align: right;
  flex-shrink: 0;
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-lake-mid);
  display: block;
}

.price-unit {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.acc-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  flex: 1;
}

.acc-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  list-style: none;
  padding: 0;
}

.acc-card-amenities li {
  font-size: var(--text-xs);
  color: var(--text-muted);
  background: var(--color-pale);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
}

.acc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-light);
  gap: var(--space-3);
  flex-wrap: wrap;
}

.acc-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.acc-card-actions {
  display: flex;
  gap: var(--space-2);
}

/* ── Results count ── */
.results-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════
   23. EMPTY STATE / ERROR
   ═══════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  color: var(--text-muted);
  font-size: var(--text-md);
}

.error-text {
  color: var(--color-error);
}

.loading-text {
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-8);
}

/* ═══════════════════════════════════════════════════════════
   24. MODAL BRIDGE
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,41,38,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity var(--duration-base);
}

.modal-overlay[aria-hidden="true"] {
  display: none;
}

.modal {
  background: var(--bg-surface);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  max-width: 560px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: var(--space-8);
  position: relative;
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: var(--text-xl);
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  transition: background var(--duration-fast), color var(--duration-fast);
}

.modal-close:hover {
  background: var(--color-pale);
  color: var(--text-primary);
}

.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.modal-actions {
  margin-top: var(--space-6);
}

/* ── Price breakdown table ── */
.price-breakdown-table {
  width: 100%;
  font-size: var(--text-sm);
  border-collapse: collapse;
  margin-top: var(--space-4);
}

.price-breakdown-table th,
.price-breakdown-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-light);
}

.price-breakdown-table thead th {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--color-pale);
}

.price-breakdown-table tfoot td {
  font-weight: var(--weight-semibold);
}

.total-row td {
  font-size: var(--text-base);
  color: var(--color-lake-deep);
  border-top: 2px solid var(--color-lake-mid);
}

.price-summary {
  margin-bottom: var(--space-4);
}

.season-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  background: rgba(196,154,53,0.12);
  color: var(--color-sand-dark);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  margin-top: var(--space-2);
}

/* ═══════════════════════════════════════════════════════════
   25. ACCOMMODATIONS PAGE RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .accommodations-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 280px;
    padding-top: 64px;
  }
  .page-hero-content {
    padding: var(--space-8) var(--space-5) var(--space-8);
  }
  .page-hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .page-hero-content > p:not(.eyebrow) {
    font-size: var(--text-sm);
  }
}

/* ═══════════════════════════════════════════════════════════
   26. CHECKED-IN NOTICE BRIDGE (menu page)
   ═══════════════════════════════════════════════════════════ */
.checked-in-notice,
.not-checked-in-notice {
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
}

.checked-in-notice {
  background: rgba(160,130,80,0.08);
  border-bottom: 1px solid rgba(160,130,80,0.15);
  color: var(--color-forest-light);
}

.not-checked-in-notice {
  background: rgba(196,154,53,0.08);
  border-bottom: 1px solid rgba(196,154,53,0.15);
  color: var(--color-sand-dark);
}

.not-checked-in-notice a {
  color: var(--color-lake-mid);
  font-weight: var(--weight-semibold);
}

/* ═══════════════════════════════════════════════════════════
   27. MENU PAGE BRIDGE
   JS renders flat class names, CSS file uses BEM.
   ═══════════════════════════════════════════════════════════ */

/* ── Category nav container ── */
.menu-categories {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-categories::-webkit-scrollbar { display: none; }

/* ── Category buttons: .is-active bridge ── */
.menu-cat-btn.is-active {
  background: var(--color-forest-mid);
  color: white;
  border-color: var(--color-forest-mid);
}

/* ── Category skeleton ── */
.menu-cat-skeleton {
  width: 90px;
  height: 36px;
  background: linear-gradient(90deg, var(--color-pale) 25%, var(--color-light) 50%, var(--color-pale) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-pill);
  list-style: none;
}

/* ── Menu section ── */
.menu-section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.menu-section-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  max-width: 600px;
}

/* ── Menu items grid ── */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

/* ── Menu item card ── */
.menu-item {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base);
  border: 1px solid rgba(0,0,0,0.04);
}
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.menu-item-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow);
}
.menu-item:hover .menu-item-img {
  transform: scale(1.05);
}

.menu-item-body {
  padding: var(--space-5) var(--space-5) var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  line-height: var(--leading-snug);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-forest-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.item-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: var(--weight-semibold);
}
.tag-veg    { background: rgba(160,130,80,0.12); color: var(--color-forest-mid); }
.tag-vegan  { background: rgba(160,130,80,0.20); color: var(--color-forest-dark); }
.tag-gf     { background: rgba(196,154,53,0.12); color: var(--color-sand-dark); }
.tag-special{ background: rgba(192,82,42,0.10); color: var(--color-terracotta); }

.spice-level {
  font-size: var(--text-xs);
  margin-left: var(--space-2);
}

.menu-item-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
  flex: 1;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-light);
  margin-top: auto;
}

.prep-time {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.empty-text {
  color: var(--text-muted);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-8);
  grid-column: 1 / -1;
}

/* ── Menu layout override ── */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding-top: var(--space-8);
  padding-bottom: var(--space-16);
}

/* ── Menu content area ── */
.menu-content {
  min-height: 300px;
}

/* ═══════════════════════════════════════════════════════════
   28. CART SIDEBAR BRIDGE (slide-out overlay)
   ═══════════════════════════════════════════════════════════ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100dvh;
  background: var(--bg-surface);
  box-shadow: var(--shadow-xl);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right var(--duration-base) var(--ease-spring);
}
.cart-sidebar.is-open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: var(--gradient-forest);
  color: white;
}
.cart-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5);
}

.cart-empty {
  color: var(--text-muted);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.cart-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-footer {
  border-top: 1px solid var(--color-light);
  padding: var(--space-5) var(--space-6);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-4);
}

.cart-special-instructions {
  margin-bottom: var(--space-4);
}
.cart-special-instructions label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.cart-special-instructions textarea {
  width: 100%;
  padding: var(--space-3);
  background: var(--bg-page);
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-primary);
  resize: vertical;
  transition: border-color var(--duration-fast);
}
.cart-special-instructions textarea:focus {
  outline: none;
  border-color: var(--color-lake-mid);
  box-shadow: 0 0 0 3px rgba(74,29,138,0.12);
}

.cart-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-3);
}

/* ── Cart backdrop ── */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(45,41,38,0.5);
  backdrop-filter: blur(3px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base);
}
.cart-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Menu page responsive ── */
@media (max-width: 768px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .menu-layout {
    padding-top: var(--space-5);
  }
}

