/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  height: 100%;
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
/* Mobile and tablet: ensure smooth scroll remains consistent (do not remove in future) */
@media (max-width: 1024px) {
  html.lenis,
  html.lenis body {
    -webkit-overflow-scrolling: touch;
  }
}
/* Lenis smooth scroll */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

@font-face {
  font-family: "Saudagar";
  src: url("/fonts/Saudagar.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SwissNow";
  src: url("/fonts/SwissNowTrial-Bold-BF673ffb8658d21.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  min-height: 100%;
  font-family: "SwissNow", sans-serif;
  font-weight: 400;
  background: var(--color-gallery-white);
  color: var(--text-secondary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Hero copy stays visible — do not gate with opacity (GSAP + CSS race caused blank hero). */

/* ========== BLOB CURSOR (ring + center dot — precise hotspot) ========== */
@keyframes blob-cursor-ring-spin {
  to { transform: rotate(360deg); }
}

.blob-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blob-cursor.is-visible { opacity: 1; }

.blob-cursor__main {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blob-cursor__blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.blob-cursor__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border-radius: 50%;
  border: 2px solid var(--cursor-ring-color, rgba(0, 0, 0, 0.88));
  background: transparent;
  box-shadow: var(--cursor-ring-glow, 0 0 0 1px rgba(0, 0, 0, 0.12)),
    0 2px 10px rgba(0, 0, 0, 0.12);
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  animation: blob-cursor-ring-spin 18s linear infinite;
  transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.blob-cursor__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--cursor-dot-fill, #000000);
  box-shadow: var(--cursor-dot-halo, 0 0 0 2px rgba(255, 255, 255, 0.92)),
    0 1px 4px rgba(0, 0, 0, 0.35);
  z-index: 1;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blob-cursor.is-hover .blob-cursor__ring {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-color: var(--cursor-ring-color-hover, rgba(0, 0, 0, 1));
  box-shadow: var(--cursor-ring-glow-hover, 0 0 0 1px rgba(0, 0, 0, 0.16)),
    0 4px 16px rgba(0, 0, 0, 0.18);
}

.blob-cursor.is-hover-text .blob-cursor__ring {
  border-color: var(--cursor-ring-color-text, rgba(0, 0, 0, 0.72));
}

.blob-cursor.is-hover-text .blob-cursor__dot {
  transform: scale(1.08);
}

/* Keep cursor color fixed across sections */
.blob-cursor.is-over-header .blob-cursor__ring {
  border-color: rgba(0, 0, 0, 0.92);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12), 0 2px 12px rgba(0, 0, 0, 0.25);
}

.blob-cursor.is-over-header.is-hover .blob-cursor__ring {
  border-color: #000000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 4px 18px rgba(0, 0, 0, 0.3);
}

.blob-cursor.is-over-header .blob-cursor__dot {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92), 0 1px 5px rgba(0, 0, 0, 0.35);
}

.blob-cursor.is-over-header.is-hover-text .blob-cursor__ring {
  border-color: rgba(0, 0, 0, 0.88);
}

.blob-cursor.is-over-header.is-hover-text .blob-cursor__dot {
  background: rgba(0, 0, 0, 1);
}

@media (pointer: coarse) {
  .blob-cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .blob-cursor__ring {
    animation: none;
  }
}

/* Hide default arrow when blob cursor is active (desktop only) */
@media (pointer: fine) {
  html.custom-cursor-active,
  html.custom-cursor-active body,
  html.custom-cursor-active body * {
    cursor: none !important;
  }
}

/* Hover lift for interactive elements */
.cursor-target {
  transition: transform 0.18s ease, color 0.18s ease;
  transform: translateY(-1px);
}
.cursor-target.btn,
.cursor-target[role="button"] {
  transform: translateY(-2px);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* ========== URBAN EDITORIAL COLOR SYSTEM ========== */
:root {
  /* Primary — architectural anchors (navbar, footer, strong sections) */
  --color-obsidian: #004643;
  --color-steel-gray: #7a232b;
  /* Light backgrounds — cool, urban */
  --color-gallery-white: #F0EDE5;
  --color-urban-white: #F0EDE5;
  --color-cool-mist: #F0EDE5;
  /* Accent — urban warmth (buttons, links, highlights) */
  --color-burnt-copper: #F0EDE5;
  --color-copper-dark: #e4d37e;
  --color-copper-light: #f6eab0;
  /* Text */
  --text-primary: #004643;
  --text-secondary: #000000;
  --text-muted: #000000;
  --text-on-dark: #F0EDE5;
  /* UI */
  --border-light: rgba(91, 14, 20, 0.12);
  --shadow-soft: rgba(91, 14, 20, 0.16);
  --overlay-dark: rgba(91, 14, 20, 0.28);
  /* Nav: dark background when scrolled */
  --nav-scrolled-bg: #004643;
  /* Blob cursor — ring + dot */
  --cursor-ring-color: rgba(0, 0, 0, 0.88);
  --cursor-ring-color-hover: rgba(0, 0, 0, 1);
  --cursor-ring-color-text: rgba(0, 0, 0, 0.72);
  --cursor-ring-glow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  --cursor-ring-glow-hover: 0 0 0 1px rgba(0, 0, 0, 0.16);
  --cursor-dot-fill: #000000;
  --cursor-dot-halo: 0 0 0 2px rgba(255, 255, 255, 0.92);
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 24px);
  padding-left: max(clamp(1rem, 4vw, 24px), env(safe-area-inset-left));
  padding-right: max(clamp(1rem, 4vw, 24px), env(safe-area-inset-right));
}
.container--wide {
  max-width: 1320px;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4 {
  font-family: "SwissNow", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: "SwissNow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-burnt-copper);
  font-weight: 500;
}

h5,
h6,
p,
li,
label,
input,
textarea,
select,
button,
.nav__links a,
.nav__auth,
.btn,
.review-card__text,
.testimonial__text {
  font-family: "SwissNow", sans-serif;
}

.about-impact__headline,
.about-story__title,
#rooms .section__title,
.gallery-mast__title--hero,
#directions .section__title,
.reviews-showcase__headline,
#terms .section__title {
  font-family: "Saudagar", serif;
}

.saudagar-font {
  font-family: "Saudagar", serif;
}

/* ========== DIVIDER ========== */
.divider {
  width: 48px;
  height: 2px;
  background: var(--color-burnt-copper);
  margin: 12px 0 24px;
}
.section .divider,
.hero .divider {
  margin-left: auto;
  margin-right: auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 14px;
  transition:
    transform 0.25s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.btn--primary {
  background: var(--color-burnt-copper);
  color: var(--color-urban-white);
}
.btn--primary:hover {
  background: var(--color-copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 225, 148, 0.35);
}
.btn--outline {
  border: 1px solid var(--color-burnt-copper);
  color: var(--color-burnt-copper);
}
.btn--outline:hover {
  background: rgba(241, 225, 148, 0.1);
  color: var(--color-copper-dark);
}
.btn--full {
  width: 100%;
}
.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

/* ========== NAVIGATION — transparent over hero, light on scroll, dark text ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0.65rem 0;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
  background: transparent;
}
.nav.scrolled {
  background: var(--nav-scrolled-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  flex-shrink: 0;
  color: var(--text-on-dark);
  transition: color 0.35s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
}
.nav__logo-img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}
.nav__links {
  flex: 1;
  justify-content: center;
  margin: 0 auto;
}
/* Cart sits between Contact (last link) and login: order links, cart, then auth */
.nav__cart {
  flex-shrink: 0;
  order: 2;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  padding-left: 1.5rem;
  flex-shrink: 0;
  order: 3;
}
.nav__logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.nav__logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-top: 0.1rem;
}
.nav.scrolled .nav__logo { color: var(--text-on-dark); }
.nav.scrolled .nav__logo-tagline { color: rgba(255, 255, 255, 0.75); }
.nav__links { display: flex; gap: 2rem; margin: 0; }
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.85);
  position: relative;
  transition: color 0.3s;
}
.nav.scrolled .nav__links a { color: rgba(248, 248, 248, 0.88); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--color-burnt-copper);
  transition: width 0.3s;
}
.nav.scrolled .nav__links a::after { background: var(--color-copper-light); }
.nav__links a:hover { color: var(--text-on-dark); }
.nav.scrolled .nav__links a:hover { color: var(--text-on-dark); }
.nav__links a:hover::after { width: 100%; }
.nav__auth {
  color: var(--text-on-dark);
  border-color: rgba(248, 248, 248, 0.6);
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.nav.scrolled .nav__auth {
  color: var(--text-on-dark);
  border-color: rgba(248, 248, 248, 0.5);
}
.nav__auth:hover {
  background: var(--color-burnt-copper);
  border-color: var(--color-burnt-copper);
  color: var(--text-on-dark);
}
.nav.scrolled .nav__auth:hover {
  background: var(--color-burnt-copper);
  color: var(--text-on-dark);
}

.nav__auth-wrap {
  display: flex;
  align-items: center;
}
.nav__profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.nav__profile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  font-family: inherit;
  padding: 0.2rem;
  background: transparent;
  border: none;
  color: inherit;
}
.nav__profile-trigger:hover {
  opacity: 0.9;
}
body[data-auth-disabled] [data-auth-ui] {
  display: none !important;
}
.nav__profile {
  display: none;
  position: relative;
}
.nav__profile-chevron {
  transition: transform 0.2s ease;
}
.nav__profile-trigger[aria-expanded="true"] .nav__profile-chevron {
  transform: rotate(180deg);
}
.nav__profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: 10rem;
  background: var(--nav-scrolled-bg, rgba(22, 22, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
}
.nav__profile-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__profile-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-align: left;
  color: rgba(248, 248, 248, 0.9);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.nav__profile-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}
.nav__profile-item--logout {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--text-on-dark);
  border-radius: 50%;
  transition: background 0.25s, color 0.25s;
}
.nav__cart:hover {
  background: rgba(248, 248, 248, 0.15);
  color: var(--text-on-dark);
}
.nav.scrolled .nav__cart { color: var(--text-on-dark); }
.nav__cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.nav__cart-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nav__cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--color-burnt-copper);
  color: var(--color-obsidian);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__cart-count[data-count="0"] {
  display: none;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav__toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: background 0.35s;
}
.nav.scrolled .nav__toggle span { background: var(--text-on-dark); }

/* ========== HERO — full-bleed viewport (no bottom rule / no letterboxing) ========== */
.hero {
  width: 100%;
  max-width: none;
  /* One full viewport — no gap above main; stable for image or video */
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--color-obsidian);
  background-size: cover;
  background-position: center;
  border-bottom: none;
  box-sizing: border-box;
}
.hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Video must be taken out of flex flow — otherwise it covers / displaces .hero__content */
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.hero__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  transition:
    opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 5s linear;
  will-change: opacity, transform;
  backface-visibility: hidden;
  filter: saturate(0.95) contrast(1.05);
}
.hero__slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero__slide.is-active {
    transform: scale(1);
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  pointer-events: none;
  z-index: 1;
}
.hero.about-impact::before {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 100%;
  pointer-events: auto;
}
.hero__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-copper-light);
  margin-bottom: 12px;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-style: normal;
  font-weight: 400;
  color: var(--text-on-dark);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.hero__desc {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  color: rgba(240, 244, 246, 0.85);
  font-size: 1rem;
  line-height: 1.75;
}
.hero__cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== MAIN CONTENT WRAPPER ========== */
main {
  position: relative;
  z-index: 2;
  /* No negative overlap — avoids cream section painting over hero bottom */
  margin-top: 0;
  padding: 0 0 4rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 6rem 0;
  text-align: center;
}

/* Main sections: same viewport depth as header.hero (100vh / svh / dvh) */
main > section.section {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(env(safe-area-inset-top, 0px) + clamp(4.25rem, 10vh, 6.25rem));
  padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
  padding-left: 0;
  padding-right: 0;
}
.section--alt {
  background: var(--color-cool-mist);
}
.section__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-burnt-copper);
  margin-bottom: 6px;
}
.section__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-style: normal;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.section__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.section__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.25rem 0 1.5rem;
  flex-wrap: wrap;
}

/* Section reveals: GSAP-driven (animations.js), transform + opacity only */
[data-reveal] { will-change: transform, opacity; backface-visibility: hidden; }

/* ========== ABOUT ========== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: left;
  margin-top: 2rem;
}
.section--split .about__grid {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 0;
}
.about__media {
  position: relative;
  overflow: visible;
}
.about__img-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
}
.about__img-wrap:hover .about__img {
  transform: scale(1.08);
}
.about__img {
  width: 100%;
  padding-bottom: 75%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__content {
  padding: 0 0 0 0.5rem;
}
.about__content .section__subtitle { margin-bottom: 0.5rem; }
.about__content .section__title { margin-bottom: 0.5rem; }
.about__text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Overlapping card: image on top, text below; sits on main image and extends right */
.about__media-card {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  min-width: 260px;
  max-width: 340px;
  background: var(--color-urban-white);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(216, 164, 127, 0.2);
  overflow: hidden;
  z-index: 2;
}
.about__media-card-img {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.about__media-card:hover .about__media-card-img img {
  transform: scale(1.08);
}
.about__media-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__media-card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F0EDE5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--text-primary);
}
.about__media-card-icon svg {
  display: block;
}
.about__media-card-inner {
  padding: 1.1rem 1.35rem 1.35rem;
  background: var(--color-urban-white);
}
.about__media-overline {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-burnt-copper);
  margin-bottom: 0.35rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.about__media-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.4rem;
}
.about__media-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.divider--left { margin-left: 0; margin-right: auto; }
.section__title--left { text-align: left; }
.section__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.about__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.stat {
  border-left: 2px solid var(--color-burnt-copper);
  padding-left: 1.25rem;
}
.stat__num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-burnt-copper);
  line-height: 1.1;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: "Montserrat", sans-serif;
}

/* Hero / full-bleed cinematic (.about-impact on header.hero) */
.hero.about-impact {
  position: relative;
  isolation: isolate;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* Clear fixed nav + safe area so headline is never tucked under the pill */
  padding-top: calc(env(safe-area-inset-top, 0px) + clamp(6.25rem, 14vh, 8.25rem));
  padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  padding-left: 0;
  padding-right: 0;
}
.hero.about-impact .hero__content {
  z-index: 5;
}
.about-impact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about-impact__bg-parallax {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -9%;
  width: 118%;
  height: 124%;
  will-change: transform;
}
.about-impact__bg-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.12) brightness(0.52);
  transform-origin: center center;
}
.about-impact__bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.about-impact__bg-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
}
.about-impact__inner {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
  width: 100%;
}
.about-impact__label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}
.about-impact__headline {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2.15rem, 7.5vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 1.75rem;
  text-wrap: balance;
}
.about-impact__subhead {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.about-impact__subhead--secondary {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.88rem, 2vw, 0.98rem);
}
.about-impact__cta-wrap {
  margin-top: 1.85rem;
}
.about-impact__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.65rem 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lux-lime-text, #000000);
  background: var(--lux-lime, #F0EDE5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(241, 225, 148, 0.35),
    0 0 48px var(--lux-lime-glow, rgba(241, 225, 148, 0.38)),
    0 12px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    background 0.25s ease;
}
.about-impact__cta:hover {
  transform: translateY(-2px);
  background: var(--lux-lime-hover, #e4d37e);
  box-shadow:
    0 0 0 1px rgba(246, 234, 176, 0.45),
    0 0 56px rgba(241, 225, 148, 0.42),
    0 18px 40px rgba(0, 0, 0, 0.4);
}
.about-impact__cta:focus-visible {
  outline: 2px solid var(--lux-lime, #F0EDE5);
  outline-offset: 4px;
}
@media (max-width: 768px) {
  .hero.about-impact {
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    padding-top: calc(env(safe-area-inset-top, 0px) + clamp(5.85rem, 18vw, 7rem));
  }
  .about-impact__headline {
    line-height: 1.05;
  }
}

/* About — compact editorial (.about-story--compact) */
.about-story {
  text-align: left;
}
.about-story--compact.section {
  scroll-margin-top: calc(env(safe-area-inset-top, 0px) + 5rem);
}
/* Use more of the viewport width than default .container */
.about-story--compact .container {
  max-width: min(92vw, 1320px);
}
.about-story__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .about-story__shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(1.75rem, 3.5vw, 2.75rem);
    align-items: center;
  }
}
.about-story__intro {
  max-width: 46rem;
}
.about-story__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.about-story--compact .about-story__title {
  font-family: "Saudagar", serif;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}
.about-story--compact .about-story__dek {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-secondary);
  margin: 0 0 1.4rem;
}
.about-story__photo {
  margin: 0;
}
.about-story__photo-inner {
  border-radius: clamp(14px, 1.8vw, 20px);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: min(52vh, 440px);
}
@media (min-width: 880px) {
  .about-story__photo-inner {
    max-height: min(62vh, 620px);
  }
}
.about-story__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-story__caption {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.about-story__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-burnt-copper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.about-story__link:hover {
  border-bottom-color: var(--color-burnt-copper);
  color: var(--text-primary);
}

/* ========== ROOMS ========== */
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.room-card {
  display: flex;
  flex-direction: column;
  background: var(--color-urban-white);
  padding: 1.1rem 1.1rem 1.5rem;
  text-align: left;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
  min-height: calc(36rem - 1.5cm);
}
.room-card__actions {
  margin-top: 0.8rem;
  padding-top: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  display: block;
  visibility: visible;
  opacity: 1;
}
.room-card__actions .btn {
  display: inline-block;
}
.room-card__actions .btn--outline {
  transition: none;
  border-radius: 999px;
  background: var(--lux-dark, #004643);
  color: #ffffff;
  border-color: var(--lux-dark, #004643);
}
.room-card__actions .btn--outline:hover {
  transform: none;
  background: var(--lux-dark, #004643);
  color: #ffffff;
  border-color: var(--lux-dark, #004643);
}
.room-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.08);
  border-color: var(--border-light);
}
.room-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid var(--border-light);
  aspect-ratio: 5 / 4;
  margin-bottom: 1rem;
  background: var(--color-cool-mist);
}
.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}
.room-card__view-pill {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  pointer-events: none;
}
.room-card__view-icon {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.95;
}
.room-card__overlay {
  position: absolute;
  inset: 0;
  padding: 1.4rem 1.2rem 1.6rem;
  background: #7a9e7a;
  color: #0a0a0a;
  transform-origin: center center;
  transform: scaleY(0);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}
.room-card__overlay-inner {
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
}
.room-card__overlay-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.room-card__overlay-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.6rem;
}
.room-card__overlay-meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.room-card__number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: rgba(255, 158, 109, 0.18);
  line-height: 1;
}
.room-card__name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 10px 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(216, 164, 127, 0.4);
}
.room-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.room-card__price {
  font-size: 0.75rem;
  color: var(--color-burnt-copper);
  letter-spacing: 0.08em;
  margin-top: auto;
  margin-bottom: 0;
}
.room-card__price span {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

/* ========== SECTION BANNER (Experiences style) ========== */
.section__banner {
  width: 100%;
  padding: 2.5rem 1rem;
  text-align: center;
  background: var(--color-burnt-copper);
}
.section__title--light {
  color: #fff;
  margin: 0;
}
.section--experiences .container {
  padding-top: 2.5rem;
}
.gallery__filters--pills {
  margin-bottom: 2rem;
}
.gallery__filters--pills .gallery__filter {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: none;
  border-bottom: none;
  background: transparent;
  color: var(--text-secondary);
}
.gallery__filters--pills .gallery__filter.active {
  background: var(--color-burnt-copper);
  color: #fff;
}
.gallery__filters--pills .gallery__filter:hover:not(.active) {
  background: rgba(255, 158, 109, 0.1);
  color: var(--color-burnt-copper);
}

/* ========== GALLERY ========== */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.gallery__filter {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.gallery__filter.active,
.gallery__filter:hover {
  color: var(--color-burnt-copper);
  border-bottom-color: var(--color-burnt-copper);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery__item {
  aspect-ratio: 4/3;
  background: var(--color-urban-white);
  border-radius: 0.75rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
  box-shadow: 0 6px 20px var(--shadow-soft);
  position: relative;
  cursor: pointer;
}
.gallery__item:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 48px var(--shadow-soft);
}
.gallery__item.hidden {
  display: none;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transform-origin: center center;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.95) contrast(1.06);
}
.gallery__item:hover .gallery__img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.08);
}
.gallery__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.88);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

/* ========== TESTIMONIALS ========== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
  margin-top: 2rem;
}
.testimonial {
  padding: 1.75rem;
  background: var(--color-urban-white);
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px var(--shadow-soft);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.testimonial:hover {
  border-color: var(--color-burnt-copper);
  box-shadow: 0 16px 40px var(--shadow-soft);
}
.testimonial__text {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial__author {
  font-size: 0.78rem;
  color: var(--color-burnt-copper);
  letter-spacing: 0.08em;
}

/* ========== REVIEWS (home page — 3 cards) ========== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.review-card {
  padding: 1.5rem 1.25rem;
  background: #EDE9DC !important;
  border-radius: 1rem;
  border: 1px solid rgba(8, 60, 58, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.review-card__text {
  color: #000 !important;
}
.review-card__author {
  color: #000 !important;
}

.review-card:hover {
  border-color: var(--color-burnt-copper);
  box-shadow: 0 16px 40px var(--shadow-soft);
}

.review-card__text {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.review-card__author {
  font-size: 0.8rem;
  color: var(--color-burnt-copper);
  letter-spacing: 0.06em;
  margin: 0;
}

@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== CONTACT ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
  margin-top: 2rem;
  align-items: start;
}
.contact__info {
  max-width: 280px;
}
.contact__item {
  margin-bottom: 1.5rem;
}
.contact__item h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-burnt-copper);
  margin-bottom: 0.35rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.contact__item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.3s;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--text-muted);
}
.contact__form input:focus,
.contact__form textarea:focus {
  border-bottom-color: var(--color-burnt-copper);
}
.contact__form textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========== TERMS — zen: narrow column, contact pill, accordions ========== */
.section--terms-zen .section__subtitle,
.section--terms-zen .section__title {
  text-align: center;
}
.section--terms-zen .divider {
  margin-left: auto;
  margin-right: auto;
}

.terms-zen__wrap {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.terms-zen__lede {
  margin: 1.5rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.terms-zen__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.25rem;
  margin: calc(1.65rem + 1.2cm) 0 0;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.terms-zen__contact-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.terms-zen__contact-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.35rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.terms-zen__contact-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.terms-zen__contact-break {
  flex-basis: 100%;
  height: 0;
}

.terms-zen__contact-link--full {
  flex-basis: 100%;
  text-align: center;
}

/* Hook for scroll animations (card-grid-reveal) */
.terms-cards.terms-zen__accordions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.65rem;
  text-align: left;
}

.terms-panel {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.terms-panel__summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  padding-right: 2.65rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2.8vw, 1.12rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  position: relative;
  user-select: none;
  transition: background 0.2s ease;
}

.terms-panel__summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.terms-panel__summary::-webkit-details-marker {
  display: none;
}

.terms-panel__summary::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.28rem;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  transition: transform 0.28s ease;
}

.terms-panel[open] .terms-panel__summary::after {
  transform: rotate(-135deg);
  margin-top: 0.02rem;
}

.terms-panel[open] .terms-panel__summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-panel__body {
  padding: 0.35rem 1.2rem 1.2rem;
}

.terms-panel__list {
  margin: 0;
  padding: 0 0 0 1.05rem;
  list-style: disc;
}

.terms-panel__list li {
  font-family: "Montserrat", sans-serif;
  font-size: 0.87rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.55rem;
}

.terms-panel__list li:last-child {
  margin-bottom: 0;
}

.terms-panel__list strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ========== ACTIVITIES — 3 cards ========== */
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.activity-card {
  padding: 1.75rem 1.5rem;
  background: var(--color-cream);
  border-radius: 1rem;
  border: 1px solid rgba(8, 60, 58, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.activity-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}
.activity-card__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin: 0;
}
@media (max-width: 900px) {
  .activities__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DIRECTIONS — text + map (two columns on #directions) ========== */
.directions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 2rem;
}
.directions__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  text-align: left;
  min-width: 0;
}
.directions__heading {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: inherit;
  margin-bottom: 1rem;
  margin-top: 0;
}
.directions__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.directions__text:last-child {
  margin-bottom: 0;
}
.directions__card {
  margin-top: 0;
}
.directions__map-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: min(360px, 52vw);
  height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  background: #0a3d3a;
}
/* Dark green map (legacy / non–light wrap only) */
.directions__map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(1) hue-rotate(180deg) brightness(0.68) contrast(1.08) saturate(1.2) hue-rotate(95deg);
}
.directions__map-wrap--light {
  background: #e8eaed;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.directions__map-iframe--light {
  filter: none;
}
.directions__map-wrap--light::before {
  display: none;
}
/* Green tint overlay – dark green tone (non-light map only) */
.directions__map-wrap:not(.directions__map-wrap--light)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 60, 58, 0.48);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
/* Full-cover overlay: clicking the map opens Google Maps */
.directions__map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.directions__map-link {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  background: rgba(8, 60, 58, 0.9);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}
.directions__map-link:hover {
  background: var(--color-teal);
  color: #fff;
}
.directions__map-link--light {
  background: rgba(26, 26, 26, 0.88);
  color: #fff;
  font-weight: 600;
}
.directions__map-link--light:hover {
  background: var(--color-teal);
  color: #fff;
}
@media (max-width: 900px) {
  .directions__grid {
    grid-template-columns: 1fr;
  }
  .directions__card {
    order: -1;
  }
  .directions__map-wrap {
    min-height: 280px;
  }
}
#directions .directions__map-wrap,
#directions .directions__card {
  max-width: 100%;
}

#directions {
  scroll-margin-top: calc(env(safe-area-inset-top, 0px) + 5rem);
}

main > section#directions {
  justify-content: center;
}

main > section#terms {
  justify-content: flex-start;
}

/* ========== LOCATION CARD ========== */
.location-card {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 48px var(--shadow-soft);
}
.location-card__img {
  width: 100%;
  padding-bottom: 48%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  transform-origin: center center;
}
.location-card:hover .location-card__img {
  transform: scale(1.06);
}
.location-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.35rem;
  color: #fff;
}
.location-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}
.location-card__desc {
  font-size: 0.8rem;
  opacity: 0.95;
  margin-bottom: 0.7rem;
  max-width: 28ch;
}
.location-card__cta {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  align-self: center;
  color: #fff;
}

/* ========== ROOMS FULL-SCREEN MODAL ========== */
.modal--fullscreen .modal__content {
  max-width: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  border-radius: 0;
  padding: 2rem;
  padding-top: max(3rem, env(safe-area-inset-top));
  overflow-y: auto;
}
.modal--fullscreen .modal__close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 10;
}
.rooms-modal__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}
.rooms-modal__grid {
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery full-screen lightbox */
.modal__content--gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 2rem;
}
.gallery-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Room gallery modal — anudinakuteera-style: full-screen image, solid dark background, prominent left/right scroll */
#roomGalleryModal .modal__content {
  position: relative;
  background: #0d0d0d;
  padding: 0.5rem;
  padding-top: max(3rem, env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: center;
}
#roomGalleryModal .gallery-lightbox__img {
  max-height: calc(100vh - 4rem);
  max-width: calc(100vw - 1rem);
  width: auto;
  height: auto;
  object-fit: contain;
}
.room-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #252525;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.room-gallery__nav:hover {
  background: #333;
  border-color: rgba(255, 255, 255, 0.2);
}
.room-gallery__nav--prev {
  left: 1rem;
}
.room-gallery__nav--next {
  right: 1rem;
}
.room-gallery__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  z-index: 2;
}

/* ========== FOOTER — multi-column (legacy) & compact ========== */
.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0 1.5rem;
  padding-left: max(clamp(1rem, 4vw, 24px), env(safe-area-inset-left));
  padding-right: max(clamp(1rem, 4vw, 24px), env(safe-area-inset-right));
  background: var(--color-obsidian);
  color: var(--text-on-dark);
}

.footer--compact {
  padding: calc(1.25rem + 0.5cm) 0;
}

.footer__wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  text-align: left;
  position: relative;
  min-height: 4rem;
}

.footer__wrap--compact {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
  min-height: 0;
}

.footer--compact .footer__wrap--compact {
  position: relative;
}

@media (min-width: 1025px) {
  /* Compact footer: keep Vara left, center Misty Hut block in the footer width */
  .footer--compact .footer__brand-block {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.footer__vara-logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.footer__vara-img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer__vara-logo:hover .footer__vara-img {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer__brand-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.footer__wrap--compact .footer__brand {
  margin-bottom: 0;
}

.footer__wrap--compact .footer__tagline {
  margin: 0;
  font-size: 0.8rem;
}

.footer__wrap--compact .footer__copyright {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  margin-top: 0.25rem;
}

.footer__wrap--grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem 2rem;
  align-items: start;
  min-height: 0;
}
.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer__brand {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}
.footer__logo-img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}
.footer--compact .footer__logo-img {
  width: 52px;
  height: 52px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(248, 248, 248, 0.6);
  margin: 0;
  font-style: italic;
}
.footer__heading {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.7);
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
  color: rgba(248, 248, 248, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--color-coral-light, #f47a7b); }
.footer__copyright {
  font-size: 0.75rem;
  color: rgba(248, 248, 248, 0.5);
  margin: 0;
  text-align: center;
}
.footer__contact {
  margin-bottom: 0;
  margin-left: auto;
  flex-shrink: 0;
  text-align: right;
}
.footer__contact-item {
  margin-bottom: 0.4rem;
}
.footer__contact-item a {
  color: rgba(248, 248, 248, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__contact-item a:hover { text-decoration: underline; }
/* Legacy footer (when not using --grid) */
.footer__vara { display: flex; align-items: center; flex-shrink: 0; }
.footer__vara-img { display: block; width: 3.75rem; height: 3.75rem; object-fit: cover; border-radius: 50%; }
.footer__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; text-align: center; pointer-events: none; }
.footer__center * { pointer-events: auto; }
.footer__logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-on-dark);
  display: block;
  line-height: 1.15;
}
.footer__logo-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-top: 0.1rem;
}
.footer__line {
  width: 1rem;
  height: 1px;
  background: var(--color-burnt-copper);
}
.footer__contact-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.7);
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.footer__contact-item {
  font-size: 0.9rem;
  color: rgba(248, 248, 248, 0.85);
  margin-bottom: 0.3rem;
}
.footer__contact-item a {
  color: var(--color-burnt-copper);
  text-decoration: none;
}
.footer__contact-item a:hover { text-decoration: underline; }

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { flex-shrink: 0; }

/* ========== MODALS ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.active {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: var(--color-urban-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  z-index: 1;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}
.modal__content h3 {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-primary);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}
.modal__close:hover {
  color: var(--text-primary);
}
.btn--google {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid #dadce0;
  border-radius: 14px;
  background: var(--color-urban-white);
  color: #3c4043;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    background 0.2s,
    border-color 0.2s;
  gap: 0.6rem;
}
.btn--google:hover {
  background: #f8f9fa;
  border-color: #bbb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ========== FORMS ========== */
.form__group {
  margin-bottom: 1rem;
}
.form__group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-family: "Montserrat", sans-serif;
}
.form__group input {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--border-light);
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.3s;
}
.form__group input:focus {
  border-bottom-color: var(--color-burnt-copper);
}
.form__error {
  color: var(--color-burnt-copper);
  font-size: 0.8rem;
  min-height: 1.25rem;
  margin-bottom: 0.5rem;
}

.form__availability {
  font-size: 0.9rem;
  min-height: 1.25rem;
  margin-bottom: 0.5rem;
}
.form__availability--ok {
  color: var(--color-forest, #2d5a27);
}
.form__availability--error {
  color: #8b1d2c;
  font-weight: 700;
  background: rgba(139, 29, 44, 0.1);
  border: 1px solid rgba(139, 29, 44, 0.24);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
}
.form__success {
  color: #000;
  font-size: 0.8rem;
  min-height: 1.25rem;
  margin-bottom: 0.5rem;
}
.modal__content--wide {
  max-width: 480px;
}
.modal__content--sm {
  max-width: 340px;
}
#bookRoomModal .modal__content {
  max-width: 420px;
}
.modal__content--room-added {
  display: flex;
  flex-direction: column;
}
.modal__content--room-added .modal__ok {
  margin-top: auto;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  align-self: flex-start;
  min-width: 0;
}
.modal__content--my-bookings {
  max-width: 520px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.my-bookings__list {
  overflow-y: auto;
  margin: 1rem 0 0;
  padding-right: 0.5rem;
}
.my-bookings__item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.5rem 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light, rgba(0,0,0,0.08));
  font-size: 0.85rem;
}
.my-bookings__item:last-child { border-bottom: none; }
.my-bookings__guest { font-weight: 500; color: var(--text-primary, #1a1a1a); }
.my-bookings__rooms { color: var(--text-secondary, #555); }
.my-bookings__dates { grid-column: 1 / -1; color: var(--text-muted, #777); font-size: 0.8rem; }
.my-bookings__total { font-weight: 500; }
.my-bookings__status { text-transform: capitalize; }
.my-bookings__status--confirmed { color: var(--color-ok, #0a7); }
.my-bookings__status--pending { color: var(--color-burnt-copper, #b8860b); }
.my-bookings__status--cancelled { color: var(--text-muted, #999); }
.my-bookings__empty,
.my-bookings__error { margin: 1rem 0 0; color: var(--text-muted); font-size: 0.9rem; }
.modal__title {
  margin-bottom: 0.5rem;
}
.modal__room-name {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.modal__room-info {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.modal__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__row .form__group {
  min-width: 0;
}
.form__row .form__group input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.form__row--split-labels .form__group label {
  min-height: 2.6em;
}
@media (max-width: 480px) {
  .form__row { grid-template-columns: 1fr; }
}
.cart__list {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 1rem;
}
.cart__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  gap: 0.75rem;
}
.cart__item:last-child { border-bottom: none; }
.cart__item-info { flex: 1; min-width: 0; }
.cart__item-name { font-weight: 500; color: var(--text-primary); margin-bottom: 0.2rem; }
.cart__item-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.cart__item-price { font-size: 0.85rem; color: var(--text-muted); }
.cart__item-breakdown {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.cart__item-breakdown__row { margin-bottom: 0.2rem; }
.cart__item-breakdown__row:last-child { margin-bottom: 0; }
.cart__item-remove {
  flex-shrink: 0;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  background: transparent;
  color: var(--color-burnt-copper);
  border: 1px solid var(--color-burnt-copper);
  border-radius: 0.35rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cart__item-remove:hover {
  background: var(--color-burnt-copper);
  color: var(--color-urban-white);
}
.cart__empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem 0;
}
.cart__footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.cart__total { margin-bottom: 1rem; font-size: 1rem; color: var(--text-primary); }
.cart__total strong { color: var(--color-burnt-copper); }

/* Cart page — full-screen background image, no blue footer, card centered */
body.page-cart {
  min-height: 100vh;
  background-image: url("/img/designarena_image_ix01sftz.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body.page-cart .footer {
  display: none;
}
/* Cart page: frosted-glass bar so header stays visible over any part of the background */
body.page-cart .nav {
  background: rgba(39, 41, 50, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
body.page-cart .modal__overlay {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}
.cart-page {
  min-height: 100vh;
  padding: 0;
  position: relative;
}
.cart-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cart-page .container {
  position: relative;
  margin: 7.5rem auto 2rem;
  max-width: min(94vw, 860px);
  width: calc(100% - 2rem);
  max-height: none;
  min-height: 0;
  background: var(--color-urban-white);
  padding: 2rem clamp(1.25rem, 3vw, 2.25rem) 2.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.25s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.cart-page .container:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.cart-page .container .cart-page__title,
.cart-page .container .divider { flex-shrink: 0; }
.cart-page .container .cart-step {
  flex: 0 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.cart-page .container .cart__list {
  flex: 0 1 auto;
  min-height: 0;
}
.cart-page__title {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.page-cart .cart-page .divider {
  margin-left: auto;
  margin-right: auto;
}
.cart-step { margin-top: 2rem; }
.cart-step--hidden { display: none !important; }
/* Cart + checkout both visible: separate “Booking details” from selection above */
#stepCart:not(.cart-step--hidden) + #stepCheckout:not(.cart-step--hidden) {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light, rgba(0, 0, 0, 0.12));
}
@media (min-width: 920px) {
  #stepCart:not(.cart-step--hidden) + #stepCheckout:not(.cart-step--hidden) {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}
.cart-step__heading {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
#stepCart .cart-step__heading {
  font-size: clamp(1.24rem, 2.2vw, 1.5rem);
  font-weight: 600;
}
#stepCart .cart__item-name {
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  color: #000;
}
#stepCart .cart__item-meta,
#stepCart .cart__item-price,
#stepCart .cart__item-breakdown,
#stepCart .cart__empty,
#stepCart .cart__total,
#stepCart .cart__total strong {
  color: #000;
}
#stepCart .cart__item-remove {
  color: #000;
  border-color: #000;
}
#stepCart .cart__item-remove:hover {
  background: #000;
  color: #fff;
}
.terms__scroll--page { max-height: 280px; }

.terms__scroll {
  max-height: 200px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
body.modal-open {
  overflow: hidden;
  height: 100vh;
}
.terms__scroll ul { margin: 0.5rem 0 0 1.25rem; padding: 0; }
.terms__scroll li { margin-bottom: 0.35rem; }
.terms__accept {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  cursor: pointer;
}
.terms__accept input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-burnt-copper);
}
.payment__text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
/* Safe area for notched devices (iPhone X+, iPad Pro) */
.nav__inner {
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}
.modal {
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* Touch-friendly tap targets (44px min) on touch devices */
@media (pointer: coarse) {
  .btn,
  .nav__auth,
  .nav__profile-trigger,
  .nav__cart,
  .nav__toggle {
    min-height: 44px;
    min-width: 44px;
  }
  .nav__cart { min-width: 44px; }
  .nav__links a {
    padding: 0.75rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav__profile-item {
    min-height: 44px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
  }
  .gallery__filter {
    padding: 0.5rem 0.75rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .room-card .btn--sm {
    min-height: 44px;
    padding: 0.65rem 1.25rem;
  }
  .modal__close {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cart__item-remove {
    min-height: 44px;
    min-width: 44px;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Tablet landscape / iPad */
@media (max-width: 1024px) {
  .container {
    padding-left: clamp(1rem, 5vw, 1.5rem);
    padding-right: clamp(1rem, 5vw, 1.5rem);
  }
  .rooms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
  .section {
    padding: 3rem 0;
  }
  .about__grid {
    gap: 2rem;
  }
  .gallery__grid {
    gap: 0.6rem;
  }
  .hero__title {
    font-size: clamp(2.25rem, 6vw, 4rem);
  }
  .hero__desc {
    max-width: 90%;
    font-size: 0.9rem;
  }
  .modal__content {
    max-width: min(400px, 92vw);
  }
  .modal__content--wide {
    max-width: min(480px, 94vw);
  }
  /* Compact footer: Misty Hut block centers on its own row; Vara stays untouched */
  .footer__wrap--compact .footer__brand-block {
    position: static;
    transform: none;
    flex: 1 1 100%;
  }
}

/* Tablet portrait / large phones */
@media (max-width: 768px) {
  html,
  body,
  .lux-site,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .nav {
    padding: 0.9rem 0;
    padding-top: max(0.9rem, env(safe-area-inset-top));
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #004643;
    flex-direction: column;
    padding: 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav__links.open {
    display: flex;
  }
  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .cart-page {
    padding: 3rem 0 2.5rem;
  }
  .cart-page .container {
    margin: 6.8rem auto 1.5rem;
    width: calc(100% - 1.5rem);
    padding: 1.5rem clamp(1rem, 4vw, 1.5rem);
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__stats {
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .gallery__filters {
    gap: 0.75rem;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nav__logo-name,
  .footer__logo-name {
    font-size: 1.5rem;
  }
  .nav__logo-tagline,
  .footer__logo-tagline {
    font-size: 0.52rem;
  }
  .footer__wrap {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
  }
  .footer__wrap--grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    align-items: center;
  }
  .footer__wrap--grid .footer__col--brand { display: flex; flex-direction: column; align-items: center; }
  .footer__wrap--grid .footer__links { text-align: center; }
  .footer__wrap--grid .footer__contact { text-align: center; margin-left: 0; }
  .footer__vara-logo {
    position: relative;
    top: 53px;
  }
  .footer__vara {
    order: 1;
    justify-content: center;
    margin-left: 0;
  }
  .footer__center {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    order: 2;
    width: 100%;
    min-width: 0;
  }
  .footer__contact {
    order: 3;
    margin-left: 0;
    text-align: center;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  }
  .section--split .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section--split .about__media {
    order: -1;
  }
  .section--split .about__media-card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 320px;
    margin: -4rem auto 0;
  }
  .section--split .about__media-card-img {
    padding-bottom: 58%;
  }
  .section--split .about__content { padding: 0; }
  .divider--left { margin-left: auto; margin-right: auto; }
  .section__title--left { text-align: center; }
  .footer {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
  .footer__vara-img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .modal--fullscreen .modal__content {
    padding: 1rem;
    padding-top: max(2.5rem, env(safe-area-inset-top));
  }
  .rooms-modal__grid {
    margin-top: 1rem;
  }
  .modal__content--room-added .modal__ok {
    margin-top: auto;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
  .whatsapp-float {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }
  .rooms__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .section {
    padding: 2.5rem 0;
  }
  .section__title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
  main {
    margin-top: -2rem;
  }
  .hero__title {
    font-size: clamp(2rem, 8vw, 3.25rem);
  }
  .hero__desc {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
  .hero__cta {
    gap: 0.75rem;
  }
  .hero__cta .btn {
    padding: 0.75rem 1.5rem;
  }
  .modal {
    padding: 1rem;
    align-items: flex-start;
    padding-top: max(2rem, env(safe-area-inset-top));
    overflow-y: auto;
  }
  .modal__content {
    padding: 2rem 1.5rem;
    margin: auto 0;
  }
  .modal__content--wide {
    padding: 1.75rem 1.25rem;
  }
  .nav__profile-dropdown {
    right: 0;
    min-width: 12rem;
  }
  .testimonial {
    padding: 1.25rem;
  }
}

/* Phones */
@media (max-width: 600px) {
  .section {
    padding: 2rem 0;
  }
  .section__title {
    font-size: 1.6rem;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero__subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }
  .hero__title {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }
  .about__stats {
    gap: 1.25rem;
  }
  .stat__num {
    font-size: 1.85rem;
  }
  .room-card {
    padding: 1rem 1rem 1.25rem;
  }
  .room-card__name {
    font-size: 1.1rem;
  }
  .gallery__label {
    padding: 0.6rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .form__row {
    grid-template-columns: 1fr;
  }
  .modal__content {
    padding: 1.75rem 1.25rem;
    max-width: 100%;
  }
  .modal__content--wide {
    max-width: 100%;
  }
  .cart-page {
    padding: 2rem 0 2.5rem;
  }
  .cart-page .container {
    margin: 6.4rem auto 1.25rem;
    width: calc(100% - 1rem);
    padding: 1.25rem 1rem;
  }
  .cart__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .cart__item-remove {
    align-self: flex-end;
  }
  .cart__list {
    max-height: 220px;
  }
  .terms__scroll {
    max-height: 160px;
  }
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
    max-width: 16rem;
  }
  .section__actions .btn {
    width: 100%;
    max-width: 14rem;
  }
  .nav__auth-wrap {
    gap: 0.25rem;
  }
  .footer__bottom {
    padding-top: 1rem;
  }
}

/* Extra small (320px–400px) — header and footer branding parallel */
@media (max-width: 380px) {
  .nav__logo-name,
  .footer__logo-name {
    font-size: 1.35rem;
  }
  .nav__logo-tagline,
  .footer__logo-tagline {
    font-size: 0.5rem;
  }
  .hero__title {
    font-size: 1.65rem;
  }
  .section__title {
    font-size: 1.4rem;
  }
  .modal__content {
    padding: 1.5rem 1rem;
  }
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }
}

/* Dual prepaid options (central API) */
.prepaid-options-wrap {
  margin: 0.75rem 0 1rem;
}
.prepaid-options {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 0;
}
.prepaid-options__legend {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 0.35rem;
}
.prepaid-options__card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.prepaid-options__card:first-of-type {
  margin-top: 0.35rem;
}
.prepaid-options__card:has(input:checked) {
  border-color: var(--color-burnt-copper, #b54a4a);
  background: rgba(181, 74, 74, 0.06);
}
.prepaid-options__card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.prepaid-options__title {
  font-weight: 600;
  font-size: 0.9rem;
}
.prepaid-options__meta {
  font-size: 0.8rem;
  opacity: 0.88;
  line-height: 1.35;
}
