/* ==========================================================================
   Sunset Strip Oasis — Design Tokens
   Art direction: luxury West Hollywood villa. Warm terracotta/clay accent
   drawn from the property's dusk-sky photography, paired with soft ivory
   surfaces echoing the villa's white walls and warm wood floors.
   ========================================================================== */

:root,
[data-theme='light'] {
  /* Surfaces — warm ivory, like plaster walls at golden hour */
  --color-bg: #faf6f1;
  --color-surface: #ffffff;
  --color-surface-2: #fdfbf8;
  --color-surface-offset: #f3ebe0;
  --color-surface-offset-2: #ece0cf;
  --color-surface-dynamic: #e3d3bd;
  --color-divider: #e6d9c8;
  --color-border: #dbc9ac;

  /* Text — warm near-black / warm greys */
  --color-text: #241d17;
  --color-text-muted: #6f6255;
  --color-text-faint: #ab9c8a;
  --color-text-inverse: #faf6f1;

  /* Primary accent — sunset terracotta */
  --color-primary: #b1512e;
  --color-primary-hover: #8f3f22;
  --color-primary-active: #6c2f19;
  --color-primary-highlight: #f0ddc9;

  /* Warning / error / success — kept warm-neutral, used sparingly */
  --color-warning: #8a5a1e;
  --color-warning-hover: #6c4515;
  --color-warning-active: #4f320f;
  --color-warning-highlight: #e8d9bf;

  --color-error: #9c3b3b;
  --color-error-hover: #7a2c2c;
  --color-error-active: #571f1f;
  --color-error-highlight: #e5cdcb;

  --color-success: #4d7a3f;
  --color-success-hover: #395c2e;
  --color-success-active: #283f20;
  --color-success-highlight: #d7e0cd;

  /* Gold — used only for star ratings */
  --color-gold: #ad7b2c;
  --color-gold-hover: #8f6423;
  --color-gold-highlight: #ecdfc2;

  /* Dusk plum — a single secondary accent reserved for the night/sky moments */
  --color-plum: #6a4a6e;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows — tone-matched warm/terracotta */
  --shadow-sm: 0 1px 2px oklch(0.32 0.03 45 / 0.1);
  --shadow-md: 0 6px 20px oklch(0.32 0.03 45 / 0.12);
  --shadow-lg: 0 18px 44px oklch(0.32 0.03 45 / 0.16);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'General Sans', 'Switzer', 'Helvetica Neue', sans-serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #16110d;
  --color-surface: #1b1611;
  --color-surface-2: #201a14;
  --color-surface-offset: #241d16;
  --color-surface-offset-2: #2b2219;
  --color-surface-dynamic: #38291d;
  --color-divider: #2c2219;
  --color-border: #40311f;

  --color-text: #ede2d2;
  --color-text-muted: #ab9c8a;
  --color-text-faint: #6f6255;
  --color-text-inverse: #16110d;

  --color-primary: #e2925f;
  --color-primary-hover: #eba97d;
  --color-primary-active: #f2bfa0;
  --color-primary-highlight: #3c2a1d;

  --color-warning: #cf9a4f;
  --color-warning-hover: #ddb06f;
  --color-warning-active: #ecc691;
  --color-warning-highlight: #40331d;

  --color-error: #c96a6a;
  --color-error-hover: #d68686;
  --color-error-active: #e2a2a2;
  --color-error-highlight: #40201d;

  --color-success: #85ac72;
  --color-success-hover: #9dbf8a;
  --color-success-active: #b6d2a4;
  --color-success-highlight: #26301f;

  --color-gold: #d9ad64;
  --color-gold-hover: #e6c184;
  --color-gold-highlight: #3a2f1a;

  --color-plum: #a781ab;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.36);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.46);
}

/* Fluid type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.75rem);
  --text-hero: clamp(2.75rem, 0.6rem + 6.4vw, 6.5rem);
}

/* 4px spacing */
:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--wide {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow {
  max-width: var(--content-narrow);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.section-head {
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
}
.section-head--center {
  text-align: center;
  max-width: 46ch;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--color-primary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

h2.section-title {
  font-size: var(--text-2xl);
}

h3.card-title {
  font-size: var(--text-lg);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  color: var(--color-text-muted);
}
p.lede {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.5;
}

.prose {
  max-width: 68ch;
}
.prose p + p {
  margin-top: var(--space-4);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition:
    transform 0.35s var(--ease-in-out),
    box-shadow 0.35s var(--ease-in-out);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.brand svg {
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.main-nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
}
.main-nav a:hover {
  color: var(--color-text);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-interactive);
}
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text);
  background: transparent;
}
.theme-toggle:hover,
.nav-toggle:hover {
  background: var(--color-surface-offset);
}
.theme-toggle svg,
.nav-toggle svg {
  width: 19px;
  height: 19px;
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive),
    border-color var(--transition-interactive);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff8f2;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid oklch(from var(--color-text) l c h / 0.18);
}
.btn-ghost:hover {
  background: var(--color-surface-offset);
  border-color: oklch(from var(--color-text) l c h / 0.3);
}
.btn-invert {
  background: #fff8f2;
  color: var(--color-primary-active);
}
.btn-invert:hover {
  background: #fff;
  transform: translateY(-1px);
}
.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}
.btn svg {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff8f2;
  overflow: hidden;
  padding-top: var(--space-24);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.18 0.03 40 / 0.15) 0%,
    oklch(0.18 0.03 40 / 0.1) 35%,
    oklch(0.14 0.03 40 / 0.55) 78%,
    oklch(0.1 0.03 40 / 0.78) 100%
  );
}

.hero-inner {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  background: oklch(1 0 0 / 0.14);
  backdrop-filter: blur(6px);
  border: 1px solid oklch(1 0 0 / 0.22);
}
.pill svg {
  width: 13px;
  height: 13px;
}
.pill.pill-gold {
  color: #ffe3b8;
}
.pill-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pill-link:hover,
.pill-link:focus-visible {
  background: oklch(1 0 0 / 0.24);
  border-color: oklch(1 0 0 / 0.36);
}

.hero h1 {
  font-size: var(--text-hero);
  color: #fff8f2;
  line-height: 1.02;
  max-width: 16ch;
  margin-bottom: var(--space-5);
}

.hero-sub {
  font-size: var(--text-lg);
  color: oklch(0.97 0.01 60 / 0.88);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  font-size: var(--text-sm);
}
.hero-facts strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  display: block;
  color: #fff8f2;
}
.hero-facts span {
  color: oklch(0.95 0.01 60 / 0.72);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.scroll-cue {
  position: absolute;
  right: var(--space-6);
  bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: oklch(0.95 0.01 60 / 0.7);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: '';
  writing-mode: horizontal-tb;
  width: 1px;
  height: 40px;
  background: linear-gradient(oklch(0.95 0.01 60 / 0.7), transparent);
  animation: scroll-cue-pulse 2s var(--ease-in-out) infinite;
}
@keyframes scroll-cue-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ==========================================================================
   Highlights
   ========================================================================== */

.highlights {
  background: var(--color-surface);
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: var(--space-5);
}
.highlight-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: #fff8f2;
  box-shadow: var(--shadow-sm);
}
.highlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-in-out);
}
.highlight-card:hover img {
  transform: scale(1.045);
}
.highlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.18 0.03 40 / 0) 45%, oklch(0.12 0.03 40 / 0.82) 100%);
}
.highlight-copy {
  position: relative;
  z-index: 1;
  padding: var(--space-6);
}
.highlight-copy .eyebrow {
  color: #ffe3b8;
}
.highlight-copy .eyebrow::before {
  background: #ffe3b8;
}
.highlight-copy h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff8f2;
  margin-bottom: var(--space-2);
}
.highlight-copy p {
  font-size: var(--text-sm);
  color: oklch(0.96 0.01 60 / 0.85);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  background: var(--color-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-media::before {
  content: '';
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.about-copy .pull-quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary-active);
  border-left: none;
  padding: var(--space-5) 0;
  margin-block: var(--space-6);
  position: relative;
}
[data-theme='dark'] .about-copy .pull-quote {
  color: var(--color-primary);
}
.about-copy .pull-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--color-primary-highlight);
  position: absolute;
  top: -1.2rem;
  left: -0.25rem;
  z-index: -1;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.about-stats strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  display: block;
}
.about-stats span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  background: var(--color-surface-offset);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.filter-btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.filter-btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-faint);
}
.filter-btn.is-active {
  background: var(--color-primary);
  color: #fff8f2;
  border-color: var(--color-primary);
}

.gallery-grid {
  columns: 4 260px;
  column-gap: var(--space-4);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease-in-out);
  background: var(--color-surface-offset-2);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item.is-hidden {
  display: none;
}
.gallery-item .zoom-hint {
  position: absolute;
  right: var(--space-3);
  top: var(--space-3);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: oklch(0.15 0.02 40 / 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-interactive);
}
.gallery-item .zoom-hint svg {
  width: 15px;
  height: 15px;
}
.gallery-item:hover .zoom-hint {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.1 0.02 40 / 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox figure {
  max-width: min(90vw, 1100px);
  max-height: 86vh;
  margin: 0;
}
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-md);
  margin-inline: auto;
}
.lightbox figcaption {
  color: oklch(0.95 0.01 60 / 0.85);
  font-size: var(--text-sm);
  text-align: center;
  margin-top: var(--space-3);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #fff8f2;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: oklch(1 0 0 / 0.1);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: oklch(1 0 0 / 0.18);
}
.lightbox-close {
  top: var(--space-6);
  right: var(--space-6);
}
.lightbox-prev {
  left: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Bedrooms
   ========================================================================== */

.sleep {
  background: var(--color-bg);
}
.sleep-summary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding: var(--space-6) var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-10);
  box-shadow: var(--shadow-sm);
}
.sleep-summary .stat {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.sleep-summary .stat svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.sleep-summary .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}
.sleep-summary .stat span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.sleep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.sleep-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}
.sleep-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sleep-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.sleep-card-body {
  padding: var(--space-5);
}
.sleep-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}
.sleep-card-body .bed-type {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
  display: block;
}

/* ==========================================================================
   Amenities
   ========================================================================== */

.amenities {
  background: var(--color-surface-offset);
}
.amenity-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.amenity-group {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.amenity-group h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.amenity-group h3 svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.amenity-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.amenity-group li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.amenity-group li svg {
  width: 15px;
  height: 15px;
  color: var(--color-text-faint);
  margin-top: 3px;
  flex-shrink: 0;
}
.amenity-more {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Resort feature divider
   ========================================================================== */

.feature-divider {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: #fff8f2;
  overflow: hidden;
}
.feature-divider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.feature-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(0.14 0.03 40 / 0.82) 0%, oklch(0.14 0.03 40 / 0.4) 55%, oklch(0.14 0.03 40 / 0.15) 100%);
  z-index: -1;
}
.feature-divider-copy {
  max-width: 560px;
}
.feature-divider-copy .eyebrow {
  color: #ffe3b8;
}
.feature-divider-copy .eyebrow::before {
  background: #ffe3b8;
}
.feature-divider h2 {
  color: #fff8f2;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}
.feature-divider p {
  color: oklch(0.96 0.01 60 / 0.85);
  font-size: var(--text-base);
}
.feature-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.feature-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: oklch(0.96 0.01 60 / 0.92);
}
.feature-list li svg {
  width: 16px;
  height: 16px;
  color: #ffe3b8;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews {
  background: var(--color-bg);
}
.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--color-divider);
}
.rating-score {
  text-align: center;
}
.rating-score .num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-text);
  line-height: 1;
}
.rating-score .stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-block: var(--space-2);
  color: var(--color-gold);
}
.rating-score .stars svg {
  width: 16px;
  height: 16px;
}
.rating-score .count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.rating-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5) var(--space-8);
}
.rating-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 32px;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.rating-bar-track {
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--color-divider);
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}
.rating-bar-row .val {
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.review-card .stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.review-card .stars svg {
  width: 13px;
  height: 13px;
}
.review-card p {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary-active);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.review-card .reviewer strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.review-card .reviewer span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-10);
  justify-content: center;
}
.review-tag {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border: 1px solid var(--color-divider);
}
.review-tag strong {
  color: var(--color-text);
}

/* ==========================================================================
   Host
   ========================================================================== */

.host {
  background: var(--color-surface-offset);
}
.host-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  box-shadow: var(--shadow-sm);
}
.host-avatar {
  width: 116px;
  height: 116px;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-active));
  color: #fff8f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.host-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}
.host-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary-active);
  background: var(--color-primary-highlight);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
[data-theme='dark'] .host-badge {
  color: var(--color-primary);
}
.host-badge svg {
  width: 12px;
  height: 12px;
}
.host-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-divider);
}
.host-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}
.host-stats div span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Good to know
   ========================================================================== */

.rules {
  background: var(--color-bg);
}
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.rules-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.rules-card h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}
.rules-card h3 svg {
  width: 19px;
  height: 19px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.rules-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.rules-card li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-bottom: var(--space-3);
  border-bottom: 1px dashed var(--color-divider);
}
.rules-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rules-card li strong {
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}
.rules-note {
  grid-column: 1 / -1;
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-primary-active);
}
.rules-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Location
   ========================================================================== */

.location {
  background: var(--color-surface-offset);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.location-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location-media img {
  width: 100%;
}
.location-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.location-list li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.location-list .dist {
  flex-shrink: 0;
  width: 68px;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.location-list .place strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.location-list .place span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Booking CTA
   ========================================================================== */

.booking {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-primary-active), #3c2216 65%, #241811);
  color: #fff8f2;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, oklch(1 0 0 / 0.08), transparent 55%),
    radial-gradient(circle at 85% 80%, oklch(1 0 0 / 0.06), transparent 55%);
}
.booking-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.booking h2 {
  color: #fff8f2;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}
.booking p {
  color: oklch(0.96 0.01 60 / 0.85);
  max-width: 46ch;
}
.booking-facts {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
}
.booking-facts div strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff8f2;
}
.booking-facts div span {
  font-size: var(--text-xs);
  color: oklch(0.95 0.01 60 / 0.7);
}

.booking-form {
  background: oklch(0.99 0.005 60 / 0.97);
  color: var(--color-text);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-8));
  box-shadow: var(--shadow-lg);
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.field input,
.field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-sm);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}
.booking-form .btn-primary {
  width: 100%;
  margin-top: var(--space-2);
  padding-block: var(--space-4);
}
.booking-form .note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--space-4);
}
.booking-form .note a {
  color: var(--color-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.footer-brand svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer-bottom a {
  color: var(--color-text-faint);
}
.footer-bottom a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 1;
}
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 45%;
  }
}
@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .highlight-grid > :first-child {
    grid-column: 1 / -1;
  }
  .amenity-groups {
    grid-template-columns: 1fr 1fr;
  }
  .sleep-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rating-overview {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .rating-bars {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .about-media::before {
    display: none;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .host-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .host-stats {
    justify-content: center;
  }
  .rating-bar-row li {
    display: none;
  }
}

@media (max-width: 700px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  .amenity-groups {
    grid-template-columns: 1fr;
  }
  .sleep-grid {
    grid-template-columns: 1fr;
  }
  .rating-bars {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .gallery-grid {
    columns: 2 220px;
  }
  .hero h1 {
    max-width: 100%;
  }
  .hero-facts {
    gap: var(--space-4);
  }
  .lightbox-prev,
  .lightbox-next {
    width: 36px;
    height: 36px;
  }
  .lightbox-close {
    top: var(--space-4);
    right: var(--space-4);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }
  .sleep-summary {
    gap: var(--space-4);
  }
  .header-actions .btn-primary {
    display: none;
  }
  .brand {
    font-size: var(--text-base);
  }
  .brand svg {
    width: 28px;
    height: 28px;
  }
}

/* Mobile nav sheet */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-in-out);
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav .btn {
  margin-top: var(--space-8);
}
