/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --cream:  hsl(38 36% 93%);
  --dark:   hsl(60 13% 9%);
  --deep:   hsl(60 15% 4%);
  --forest: hsl(120 24% 23%);
  --sage:   hsl(120 17% 55%);
  --gold:   hsl(44 56% 54%);

  --cream-70: hsl(38 36% 93% / 0.7);
  --cream-60: hsl(38 36% 93% / 0.6);
  --cream-50: hsl(38 36% 93% / 0.5);
  --cream-40: hsl(38 36% 93% / 0.4);
  --cream-35: hsl(38 36% 93% / 0.35);
  --cream-30: hsl(38 36% 93% / 0.3);
  --cream-20: hsl(38 36% 93% / 0.2);
  --cream-10: hsl(38 36% 93% / 0.1);
  --cream-05: hsl(38 36% 93% / 0.05);

  --gold-90:  hsl(44 56% 54% / 0.9);
  --gold-60:  hsl(44 56% 54% / 0.6);
  --gold-50:  hsl(44 56% 54% / 0.5);
  --gold-40:  hsl(44 56% 54% / 0.4);
  --gold-15:  hsl(44 56% 54% / 0.15);

  --cream-80: hsl(38 36% 93% / 0.8);
  --cream-75: hsl(38 36% 93% / 0.75);
  --darker: hsl(60 15% 5%);
  --forest-15: hsl(120 24% 23% / 0.15);

  --sage-50:  hsl(120 17% 55% / 0.5);

  --gold-10:  hsl(44 56% 54% / 0.1);
  --gold-20:  hsl(44 56% 54% / 0.2);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── ACCESSIBILITY ──────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip nav — visually hidden, shown only on keyboard focus */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0 0 4px 4px;
}
.skip-nav:focus {
  position: fixed;
  left: 1rem;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes softBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes drawerIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
/*
  Use @keyframes (not transition) so component transition declarations
  on .amenity-card, .review-card, .photo-grid img etc. cannot override
  the reveal animation — CSS animations operate independently of transition.
*/
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.is-visible {
  animation: revealUp 0.7s ease both;
}
.reveal-delay-1.is-visible { animation-delay: 0.1s; }
.reveal-delay-2.is-visible { animation-delay: 0.2s; }
.reveal-delay-3.is-visible { animation-delay: 0.3s; }
.reveal-delay-4.is-visible { animation-delay: 0.4s; }
.reveal-delay-5.is-visible { animation-delay: 0.5s; }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, hsl(60 13% 9% / 0.95), transparent);
  transition: background 0.4s ease;
}
nav.scrolled {
  background: hsl(60 13% 9% / 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-80);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.is-active { color: var(--gold); }
.nav-links a.btn-book {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--dark);
  transition: background 0.2s;
}
.nav-links a.btn-book:hover { background: var(--gold-90); color: var(--dark); }

/* hamburger button */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream-80);
  padding: 0.25rem;
  transition: color 0.2s;
}
.nav-hamburger:hover { color: var(--gold); }
.nav-hamburger svg { width: 1.5rem; height: 1.5rem; }

/* ── MOBILE DRAWER ──────────────────────────────────────── */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.8);
  animation: overlayIn 0.2s ease;
}
.drawer-overlay.open { display: block; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 16rem;
  z-index: 101;
  background: var(--dark);
  border-left: 1px solid var(--gold-15);
  padding: 4rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  animation: drawerIn 0.3s ease;
}
.drawer-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream-70);
  transition: color 0.2s;
  padding: 0.25rem;
}
.drawer-close:hover { color: var(--gold); }
.drawer-close svg { width: 1.25rem; height: 1.25rem; }
.drawer-links { display: flex; flex-direction: column; gap: 0; }
.drawer-links a {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--cream-10);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-70);
  transition: color 0.2s;
}
.drawer-links a:hover { color: var(--gold); }
.drawer-links a.btn-book {
  margin-top: 1rem;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--dark);
  border-bottom: none;
}
.drawer-links a.btn-book:hover { background: var(--gold-90); color: var(--dark); }

/* ── HERO ────────────────────────────────────────────────── */
header {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* ── HERO SLIDESHOW ─────────────────────────────────────── */
/* Controlled by script.js — images swapped every 5s       */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 40%;
  transition: opacity 1s ease-in-out;
}
.hero-bg.fade-out { opacity: 0; }
.hero-bg.fade-in  { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(60 13% 9% / 0.5),
    hsl(60 13% 9% / 0.35) 40%,
    hsl(60 13% 9% / 0.88)
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  animation: fadeUp 1.4s ease both;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 10px hsl(60 13% 9% / 0.7);
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--cream);
  text-shadow: 0 2px 28px hsl(60 13% 9% / 0.65), 0 1px 8px hsl(60 13% 9% / 0.45);
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--cream-75);
  margin: 1.5rem 0;
  font-size: 1rem;
  text-shadow: 0 1px 12px hsl(60 13% 9% / 0.65);
}
.btn-gold-pill {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-gold-pill:hover {
  background: var(--gold-90);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsl(44 56% 54% / 0.25);
}
.btn-gold-pill:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-50);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: softBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, hsl(38 36% 93% / 0.4), transparent);
}

/* ── SHARED SECTION LAYOUT ──────────────────────────────── */
.section-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.section-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--cream);
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-body {
  color: var(--cream-70);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ── ABOUT ──────────────────────────────────────────────── */
#about { padding: 0; }
#about .section-inner { padding: 8rem 3rem; }
#about .section-2col { gap: 6rem; }
#about .section-h2 { font-size: clamp(1.875rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 1.5rem; }
.about-img-wrap {
  position: relative;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
}
.about-img-border {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 1.25rem;
  top: 1.25rem;
  border: 1px solid var(--gold-40);
  z-index: -1;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--forest);
  border: 1px solid var(--gold-40);
  padding: 1.25rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
a.about-badge:hover {
  border-color: var(--gold-60);
  transform: translateY(-2px);
}
.about-badge-score {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.about-badge-stars { color: var(--gold); font-size: 0.875rem; margin: 0.25rem 0; }
.about-badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-50);
}

/* ── AMENITIES ──────────────────────────────────────────── */
#amenities {
  background: var(--forest);
  padding: 6rem 3rem;
}
#amenities .inner { max-width: 72rem; margin: 0 auto; }
#amenities .section-header { margin-bottom: 4rem; }
#amenities .section-h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  counter-reset: amenity-counter;
}
.amenity-card {
  background: hsl(60 13% 9% / 0.5);
  padding: 3rem;
  border-top: 2px solid var(--gold-40);
  transition: background 0.3s, box-shadow 0.3s, border-top-color 0.3s, transform 0.3s;
  overflow: hidden;
  position: relative;
  counter-increment: amenity-counter;
}
.amenity-card::before {
  content: counter(amenity-counter, decimal-leading-zero);
  position: absolute;
  top: 2.75rem;
  right: 2.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold-40);
  font-weight: 300;
}
.amenity-card:hover {
  background: hsl(60 13% 9% / 0.85);
  box-shadow: 0 16px 48px hsl(44 56% 54% / 0.08);
  border-top-color: var(--gold);
  transform: translateY(-2px);
}
.amenity-card:hover .amenity-img { opacity: 1; transform: scale(1.04); }
.amenity-icon {
  width: 2.25rem; height: 2.25rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity-h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.amenity-desc {
  color: var(--cream-70);
  font-size: 0.875rem;
  line-height: 1.75;
}
.amenity-img {
  margin-top: 1.75rem;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

/* ── GALLERY ────────────────────────────────────────────── */
#gallery {
  background: var(--darker);
  padding: 6rem 3rem;
}
#gallery .inner { max-width: 72rem; margin: 0 auto; }
#gallery .section-header { margin-bottom: 3rem; }
#gallery .section-h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.photo-grid img:hover {
  filter: brightness(1.06) saturate(1.1);
}
.gallery-cta { text-align: center; margin-top: 3rem; }
.gallery-cta p {
  color: var(--cream-50);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold-50);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-fb:hover { background: var(--gold); color: var(--dark); }
.btn-fb svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ── EXPERIENCE ─────────────────────────────────────────── */
#experience { padding: 0; }
#experience .section-inner { padding: 8rem 3rem; }
#experience .section-2col { gap: 5rem; }
#experience .section-h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); line-height: 1.2; margin-bottom: 1.5rem; }
.experience-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.experience-col { order: 2; }
.experience-img-col { order: 1; }
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.tag {
  padding: 0.375rem 1rem;
  border: 1px solid var(--sage-50);
  color: var(--sage);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── REVIEWS ────────────────────────────────────────────── */
#reviews {
  background: var(--darker);
  padding: 6rem 3rem;
}
#reviews .inner { max-width: 64rem; margin: 0 auto; }
#reviews .section-header { margin-bottom: 3rem; }
#reviews .section-h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--forest-15);
  border: 1px solid var(--gold-10);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  border-color: var(--gold-40);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px hsl(44 56% 54% / 0.08);
}
.review-stars { color: var(--gold); font-size: 0.875rem; margin-bottom: 0.75rem; }
.review-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--cream-80);
  margin-bottom: 1.25rem;
}
.review-author {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── MID-PAGE CTA ────────────────────────────────────────── */
.mid-cta {
  background: var(--forest);
  padding: 4rem 3rem;
  text-align: center;
  border-top: 1px solid var(--gold-15);
  border-bottom: 1px solid var(--gold-15);
}
.mid-cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.mid-cta-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--cream-80);
}

/* ── LOCATION ───────────────────────────────────────────── */
#location { padding: 0; }
#location .section-inner { padding: 8rem 3rem; }
#location .section-2col { gap: 5rem; }
#location .section-h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); line-height: 1.2; margin-bottom: 1.5rem; }
.directions {
  margin-top: 2rem;
}
.directions li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-10);
  font-size: 0.875rem;
  color: var(--cream-75);
}
.directions li .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.contact-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-10);
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.btn-sms {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-sms:hover {
  background: var(--gold-90);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsl(44 56% 54% / 0.25);
}
.btn-sms:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.btn-sms svg { width: 1rem; height: 1rem; }
.contact-sub {
  font-size: 0.75rem;
  color: var(--cream-40);
  margin-top: 0.75rem;
}
.contact-sub a { color: var(--sage); transition: color 0.2s; }
.contact-sub a:hover { color: var(--gold); }
.map-panel {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--forest);
  border: 1px solid var(--gold-20);
  overflow: hidden;
}
.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: hsl(60 13% 9% / 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  padding: 2rem;
}
.map-overlay p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--cream);
  line-height: 1.6;
}
.btn-maps {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-maps:hover {
  background: var(--gold-90);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsl(44 56% 54% / 0.25);
}
.btn-maps:active { transform: translateY(0) scale(0.98); box-shadow: none; }

/* ── FAQ ────────────────────────────────────────────────── */
#faq {
  background: var(--darker);
  padding: 6rem 3rem;
}
#faq .inner { max-width: 48rem; margin: 0 auto; }
#faq .section-header { margin-bottom: 3.5rem; }
#faq .section-h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold-40);
  border-radius: 2px;
  padding: 0 1.75rem;
}
.faq-item {
  border-bottom: 1px solid var(--gold-15);
}
.faq-item:first-child {
  border-top: 1px solid var(--gold-15);
}
.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--cream-80);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}
.faq-question::-webkit-details-marker,
details > summary::-webkit-details-marker { display: none !important; }
.faq-question::marker,
details > summary::marker { display: none !important; }
.faq-question::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] > .faq-question { color: var(--cream); }
.faq-item[open] > .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--gold); }
.faq-answer {
  color: var(--cream-70);
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 0 2rem 1.5rem 0;
}
.faq-answer a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: var(--sage-50);
  transition: color 0.2s;
}
.faq-answer a:hover { color: var(--gold); }
.faq-answer strong { color: var(--cream-80); font-weight: 500; }
.faq-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0 2rem 1.5rem 0;
  margin: 0;
}
.faq-rules li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--cream-70);
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-rules li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 300;
}
@media (max-width: 768px) {
  #faq { padding: 5rem 1.5rem; }
  .faq-list { padding: 0 1rem; }
  .faq-question { font-size: 0.875rem; }
}

/* ── BOOK ────────────────────────────────────────────────── */
#book {
  position: relative;
  padding: 10rem 3rem;
  text-align: center;
  overflow: hidden;
}
.book-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/slide4.jpg');
  background-size: cover;
  background-position: center 50%;
  filter: brightness(0.25);
}
.book-inner {
  position: relative;
  z-index: 10;
  max-width: 40rem;
  margin: 0 auto;
}
.book-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.book-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.book-h2 em { font-style: italic; color: var(--gold); }
.book-body {
  color: var(--cream-70);
  line-height: 1.75;
  margin-bottom: 3rem;
}
.book-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-campermate {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-campermate:hover {
  background: var(--gold-90);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsl(44 56% 54% / 0.25);
}
.btn-campermate:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.btn-travelbug {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold-60);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-travelbug:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.direct-contact {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-10);
}
.direct-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.btn-sms-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold-60);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-sms-outline:hover { background: var(--gold); color: var(--dark); }
.btn-sms-outline svg { width: 1rem; height: 1rem; }
.direct-sub {
  font-size: 0.75rem;
  color: var(--cream-40);
  margin-top: 0.75rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--deep);
  padding: 4rem 3rem;
  text-align: center;
  border-top: 1px solid var(--cream-05);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-logo em { font-style: italic; color: var(--gold); }
.footer-address {
  color: var(--cream-50);
  font-size: 0.875rem;
  line-height: 1.75;
}
.footer-contact {
  color: var(--cream-50);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.footer-contact a { color: var(--sage); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .preferred { color: var(--cream-20); font-size: 0.75rem; }
.footer-links {
  font-size: 0.875rem;
  margin: 0.75rem 0;
  color: var(--cream-30);
}
.footer-links a { color: var(--sage); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-divider {
  width: 2.5rem;
  height: 1px;
  background: var(--gold-40);
  margin: 1.5rem auto;
}
.footer-rules {
  color: var(--cream-35);
  font-size: 0.75rem;
  line-height: 1.75;
}
.footer-copyright {
  color: var(--cream-30);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1.5rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .section-inner,
  #about .section-inner,
  #experience .section-inner,
  #location .section-inner { padding: 5rem 1.5rem; }

  
  .section-2col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #experience .experience-col { order: 1; }
  #experience .experience-img-col { order: 2; }

  #amenities { padding: 5rem 1.5rem; }
  .amenities-grid { grid-template-columns: 1fr; }

  #gallery { padding: 5rem 1.5rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }

  #reviews { padding: 5rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }

  .mid-cta { padding: 3rem 1.5rem; }
  .mid-cta-inner { flex-direction: column; align-items: center; gap: 1.5rem; }
  [class*="reveal-delay-"].is-visible { animation-delay: 0s; }

  #book { padding: 6rem 1.5rem; }

  footer { padding: 3rem 1.5rem; }

  .about-badge { bottom: -1rem; right: -0.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content { animation: none; }
  .hero-scroll { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .reveal.is-visible { animation: none; }
  nav { transition: none; }
  .hero-bg,
  .review-card,
  .amenity-card,
  .amenity-img,
  .about-badge,
  .btn-gold-pill,
  .btn-sms,
  .btn-sms-outline,
  .btn-maps,
  .btn-campermate,
  .btn-travelbug,
  .btn-fb,
  .photo-grid img,
  .drawer,
  .drawer-overlay { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── BLADEFORGE CREDIT ──────────────────────────────────── */
.bladeforge-credit {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-10);
  display: flex;
  justify-content: center;
}
.bladeforge-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.bladeforge-badge:hover { opacity: 1; }
.bladeforge-madeby {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.bladeforge-logo-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.bladeforge-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}
.bladeforge-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1;
}

/* ── SAFE AREA (notch / home bar) ───────────────────────── */
@supports (padding-top: env(safe-area-inset-top)) {
  nav { padding-top: max(1.5rem, env(safe-area-inset-top)); }
  footer { padding-bottom: max(4rem, calc(2rem + env(safe-area-inset-bottom))); }
}
@media (max-width: 768px) {
  @supports (padding-top: env(safe-area-inset-top)) {
    footer { padding-bottom: max(3rem, calc(2rem + env(safe-area-inset-bottom))); }
  }
}
