/* ==========================================================================
   Shachar - Relax and Rejuvenate
   Design tokens
   ========================================================================== */
:root {
  --color-black: #0b0b0c;
  --color-charcoal: #17161a;
  --color-charcoal-light: #211f24;
  --color-cream: #f6f1e7;
  --color-cream-dim: #cdc6b8;
  --color-gold: #c9a24c;
  --color-gold-light: #e8cf8a;
  --color-gold-dark: #8a6d2f;

  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-heading: Georgia, 'Gelasio', 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1400px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }

html, body { overflow-x: hidden; }

body {
  background: var(--color-black);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.005em;
  color: var(--color-cream);
}

h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 2.25rem;
  height: 1px;
  background: var(--color-gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.section-lead {
  color: var(--color-cream-dim);
  max-width: 46rem;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.section-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head .section-lead { text-align: center; }

section { position: relative; }

/* gold gradient text */
.gold-text {
  background: linear-gradient(120deg, var(--color-gold-dark) 0%, var(--color-gold-light) 45%, var(--color-gold) 75%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--color-gold-dark), var(--color-gold-light));
  color: var(--color-black);
  font-weight: 500;
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(201, 162, 76, 0.55);
}

.btn-outline {
  border-color: rgba(246, 241, 231, 0.4);
  color: var(--color-cream);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background: rgba(201, 162, 76, 0.08);
}

.btn-block { width: 100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding-block: 1.1rem;
  transition: all 0.45s var(--ease);
  background: linear-gradient(to bottom, rgba(11,11,12,0.75), transparent);
}
.site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  padding-block: 0.6rem;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.6);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 100px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.site-header.is-scrolled .brand img { height: 90px; }

.nav-links {
  display: none;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   Social icons (header, mobile menu, footer)
   ========================================================================== */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(246,241,231,0.25);
  color: var(--color-cream);
  transition: all 0.3s var(--ease);
}
.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background: rgba(201,162,76,0.1);
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon .icon-fill { fill: currentColor; }
.social-icon .icon-stroke { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  z-index: 1100;
  position: relative;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all 0.35s var(--ease);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.4s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--color-cream);
}
.mobile-menu a:hover { color: var(--color-gold-light); }
.mobile-menu .btn { margin-top: 1rem; }
.mobile-menu-contacts {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.mobile-menu-contacts a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
}
.mobile-menu .social-links { margin-top: 0.5rem; }

@media (min-width: 960px) {
  .nav-links {
    display: flex;
    gap: clamp(1.2rem, 2vw, 2.2rem);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .nav-links a { position: relative; padding-block: 0.3rem; }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 1px;
    background: var(--color-gold);
    transition: right 0.35s var(--ease);
  }
  .nav-links a:hover::after { right: 0; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-black);
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(11,11,12,0.75) 0%, rgba(11,11,12,0.55) 30%, rgba(11,11,12,0.55) 70%, rgba(11,11,12,0.95) 100%),
    linear-gradient(to right, rgba(11,11,12,0.55), rgba(11,11,12,0.1) 40%, rgba(11,11,12,0.35));
}

/* Hero image slideshow - shown instantly on load while the video downloads */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 1.2s var(--ease);
}
.hero-slideshow.is-hidden { opacity: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.6s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: hero-kenburns 16s ease-in-out infinite alternate;
}
.hero-slide:nth-child(1) img { animation-delay: 0s; transform-origin: 42% 38%; }
.hero-slide:nth-child(2) img { animation-delay: -5s; transform-origin: 60% 30%; }
.hero-slide:nth-child(3) img { animation-delay: -10s; transform-origin: 50% 55%; }
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide img { animation: none; }
}

.hero-progress {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 6.5rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero-progress span {
  width: 1.6rem;
  height: 2px;
  background: rgba(246,241,231,0.3);
  position: relative;
  overflow: hidden;
}
.hero-progress span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold-light);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-progress span.is-active::after {
  transform: scaleX(1);
  transition: transform 5s linear;
}

/* ==========================================================================
   Watch the Film - teaser box + modal
   ========================================================================== */
.watch-film { padding-block: clamp(4rem, 8vw, 6rem); background: var(--color-black); }

.video-box {
  position: relative;
  display: block;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 76, 0.3);
  padding: 0;
}
.video-box-teaser {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-box-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1) 55%);
  transition: background 0.4s var(--ease);
}
.video-box:hover .video-box-overlay { background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.05) 55%); }
.play-button {
  width: clamp(60px, 9vw, 84px);
  height: clamp(60px, 9vw, 84px);
  border-radius: 50%;
  border: 1px solid rgba(246,241,231,0.6);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}
.video-box:hover .play-button {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.08);
}
.play-button svg { width: 30%; height: 30%; fill: var(--color-cream); margin-left: 3px; transition: fill 0.35s var(--ease); }
.video-box:hover .play-button svg { fill: var(--color-black); }
.video-box-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(4, 4, 5, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease);
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
}
.video-modal-inner video {
  width: 100%;
  height: 100%;
  background: var(--color-black);
}
.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,231,0.3);
  color: var(--color-cream);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.video-modal-close:hover { border-color: var(--color-gold); color: var(--color-gold-light); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-location {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.9rem, 14vw, 9.5rem);
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.85rem, 3vw, 1.6rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-top: 0.5rem;
  padding-left: 0.35em;
}

@media (min-width: 640px) {
  .hero-title { letter-spacing: 0.02em; }
  .hero-subtitle { letter-spacing: 0.5em; padding-left: 0.5em; }
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 1.75rem;
}
.hero-divider span {
  width: 3rem;
  height: 1px;
  background: var(--color-gold);
}
.hero-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-cream-dim);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollpulse 2s infinite ease-in-out;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ==========================================================================
   Welcome / About
   ========================================================================== */
.about {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--color-black);
}

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy p + p { margin-top: 1.1rem; }
.about-copy { color: var(--color-cream-dim); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat {
  border-top: 1px solid rgba(201, 162, 76, 0.3);
  padding-top: 1rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-gold-light);
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream-dim);
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.about-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}
.about-media::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,162,76,0.4);
  outline: 14px solid var(--color-black);
  outline-offset: -14px;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-grid.reverse .about-media { order: 2; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { padding-block: clamp(5rem, 10vw, 8rem); background: var(--color-charcoal); }

/* Filter pills */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.filter-pill {
  padding: 0.55rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-cream-dim);
  border: 1px solid rgba(201,162,76,0.28);
  border-radius: 999px;
  transition: all 0.35s var(--ease);
}
.filter-pill:hover { color: var(--color-gold-light); border-color: var(--color-gold); }
.filter-pill.is-active {
  background: linear-gradient(120deg, var(--color-gold-dark), var(--color-gold-light));
  color: var(--color-black);
  border-color: transparent;
  font-weight: 500;
}

/* Uniform gallery grid - every card is the same width and height */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}
.gallery-item.is-filtered-out {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
  background: var(--color-charcoal-light);
}
.gallery-item.portrait-src img { object-position: center 55%; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}
@media (min-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6,6,7,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease);
  padding: 1.5rem;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  border: 1px solid rgba(201,162,76,0.3);
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--color-cream);
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246,241,231,0.25);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1rem; top: 50%; translate: 0 -50%; }
.lightbox-next { right: 1rem; top: 50%; translate: 0 -50%; }

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold));
  z-index: 2000;
  transition: width 0.12s linear;
}

/* ==========================================================================
   Section background photography (wildlife accents)
   ========================================================================== */
.section-bg {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: var(--bg-position, center);
  background-repeat: no-repeat;
}
.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(11,11,12,0.92), rgba(11,11,12,0.86) 40%, rgba(11,11,12,0.95));
}
.amenities.section-bg::after {
  background: linear-gradient(180deg, rgba(11,11,12,0.93), rgba(11,11,12,0.82) 45%, rgba(11,11,12,0.95));
}
.location.section-bg::after {
  background: linear-gradient(180deg, rgba(11,11,12,0.9), rgba(11,11,12,0.8) 50%, rgba(11,11,12,0.93));
}
/* Pinned background — content scrolls over the photo. Desktop/non-touch only:
   background-attachment: fixed is unreliable and jank-prone on iOS Safari, so
   touch devices simply get the normal scrolling background instead. */
@media (hover: hover) and (pointer: fine) {
  .location.section-bg,
  .amenities.section-bg {
    background-attachment: fixed;
  }
}
/* .contact.section-bg::after {
  background: linear-gradient(180deg, rgba(23,22,26,0.94), rgba(23,22,26,0.88) 45%, rgba(23,22,26,0.96));
} */

/* ==========================================================================
   Parallax interstitial banner
   ========================================================================== */
.parallax-banner {
  position: relative;
  height: clamp(20rem, 42vw, 30rem);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-image {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,12,0.55), rgba(11,11,12,0.35) 40%, rgba(11,11,12,0.75));
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 46rem;
  padding-inline: 1.5rem;
}
.parallax-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.35;
  color: var(--color-cream);
}
.parallax-quote::before,
.parallax-quote::after {
  content: '';
}
.parallax-attribution {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

/* ==========================================================================
   Amenities
   ========================================================================== */
.amenities { padding-block: clamp(5rem, 10vw, 8rem); background-color: var(--color-black); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 162, 76, 0.18);
  border: 1px solid rgba(201, 162, 76, 0.18);
}
.amenity {
  background: var(--color-black);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  transition: background 0.35s var(--ease);
}
.amenity:hover { background: var(--color-charcoal); }
.amenity svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-gold-light);
  fill: none;
  stroke-width: 1.3;
}
.amenity span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--color-cream-dim);
}

@media (min-width: 640px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .amenities-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ==========================================================================
   Rates
   ========================================================================== */
.rates { padding-block: clamp(5rem, 10vw, 8rem); background: var(--color-charcoal); }

.rates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.rate-card {
  border: 1px solid rgba(201, 162, 76, 0.25);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
  background: linear-gradient(160deg, rgba(201,162,76,0.05), transparent 60%);
}
.rate-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
}
.rate-card.featured { border-color: var(--color-gold); background: linear-gradient(160deg, rgba(201,162,76,0.12), transparent 65%); }
.rate-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  translate: -50% 0;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}
.rate-name {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}
.rate-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-cream);
}
.rate-price sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-cream-dim);
  margin-left: 0.3rem;
}
.rate-note {
  margin-top: 1.6rem;
  text-align: center;
  color: var(--color-cream-dim);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

@media (min-width: 700px) {
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .rates-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Location
   ========================================================================== */
.location { padding-block: clamp(5rem, 10vw, 8rem); background-color: var(--color-black); }
.location-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}
.location-map {
  aspect-ratio: 4/3;
  border: 1px solid rgba(201,162,76,0.3);
  filter: grayscale(0.4) contrast(1.1) brightness(0.9);
  overflow: hidden;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.location-list li {
  display: flex;
  gap: 0.85rem;
  color: var(--color-cream-dim);
  font-size: 0.95rem;
}
.location-list svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--color-gold); fill: none; margin-top: 2px; }
.location-list address { font-style: normal; display: inline; }

@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ==========================================================================
   Contact / Booking
   ========================================================================== */
.contact {
  padding-block: clamp(5rem, 10vw, 8rem);
  background-color: var(--color-black);
  position: relative;
}
.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  max-width: 60rem;
  margin-inline: auto;
}
.contact-card {
  border: 1px solid rgba(201,162,76,0.25);
  padding: 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.contact-card .avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.contact-card .avatar svg { width: 26px; height: 26px; stroke: var(--color-gold-light); fill: none; }
.contact-card h3 { font-size: 1.2rem; }
.contact-card .role { color: var(--color-gold-light); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem; }
.contact-card .btn-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; justify-content: center; }

@media (min-width: 700px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.email-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(246,241,231,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.email-cta-icon { width: 30px; height: 30px; fill: none; stroke: var(--color-gold); stroke-width: 1.3; margin-bottom: 0.4rem; }
.email-cta-text { color: var(--color-cream-dim); font-size: 0.92rem; }
.email-cta-address {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
  word-break: break-word;
}
.email-cta-address:hover { text-decoration: underline; }
.email-cta .btn { margin-top: 0.75rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-black);
  border-top: 1px solid rgba(201,162,76,0.15);
  padding-block: 3.5rem 6rem;
}

@media (min-width: 700px) {
  .site-footer { padding-block: 3.5rem 2rem; }
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  text-align: center;
}
.footer-brand img { height: 46px; margin-inline: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--color-cream-dim); font-size: 0.85rem; max-width: 26rem; margin-inline: auto; }
.footer-brand .social-links { margin-top: 1.25rem; justify-content: center; }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: var(--color-cream-dim); font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(246,241,231,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-cream-dim);
}
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; text-align: left; }
  .footer-brand img { margin-inline: 0; }
  .footer-brand p { margin-inline: 0; }
  .footer-brand .social-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ==========================================================================
   WhatsApp floating widget
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  left: clamp(1rem, 4vw, 1.75rem);
  bottom: clamp(1rem, 4vw, 1.75rem);
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.whatsapp-bubble {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.6);
  animation: wa-pulse 2.6s infinite;
  position: relative;
}
.whatsapp-bubble svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute;
  left: 70px;
  background: var(--color-cream);
  color: var(--color-black);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease);
}
.whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; visibility: visible; transform: translateX(0); }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 10px 30px -8px rgba(0,0,0,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 30px -8px rgba(0,0,0,0.6); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px -8px rgba(0,0,0,0.6); }
}

/* ==========================================================================
   Back to top button
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 4vw, 1.75rem);
  bottom: clamp(1rem, 4vw, 1.75rem);
  z-index: 1500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(11,11,12,0.85);
  border: 1px solid rgba(201,162,76,0.4);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.6);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: var(--color-gold);
  background: rgba(11,11,12,0.95);
  color: var(--color-gold);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-hero {
  padding-block: clamp(7rem, 14vw, 10rem) 3rem;
  text-align: center;
  background: var(--color-black);
  border-bottom: 1px solid rgba(201,162,76,0.15);
}
.legal-content {
  padding-block: 3.5rem 6rem;
  background: var(--color-black);
}
.legal-content .container { max-width: 820px; }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  color: var(--color-gold-light);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--color-cream-dim);
  font-size: 0.98rem;
  margin-bottom: 0.9rem;
}
.legal-content ul { padding-left: 1.4rem; list-style: disc; }
.legal-content a { color: var(--color-gold-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-content .updated { color: var(--color-cream-dim); font-size: 0.85rem; margin-top: -0.5rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 5vw, 3rem); }
