:root {
  --cream: #f7f3ea;
  --dark: #14120f;
  --dark-2: #0d0b09;
  --rust: #c1502a;
  --border: #e4ddcb;
  --text-body: #2b2822;
  --text-body-soft: #4d493f;
  --text-muted: #6b6558;
  --text-faint: #8a8375;
  --footer-text: #a89f8c;
  --footer-text-soft: #cfc8b8;
  --footer-border: #221f1a;
  --footer-caption: #5c584e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

::selection { background: var(--rust); color: #fff; }

.heading {
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: -0.5px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  background: rgba(247, 243, 234, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-faint);
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--rust); }

.nav-link.is-active {
  font-weight: 700;
  color: var(--dark);
}

.btn-book {
  background: var(--rust);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn-book:hover { transform: scale(1.05); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (shared) ---------- */
.hero {
  position: relative;
  height: 56vh;
  min-height: 400px;
  overflow: hidden;
}

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

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,18,15,0.75) 0%, rgba(20,18,15,0.1) 60%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 56px 48px;
}

.hero-copy .heading {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream);
  letter-spacing: -1px;
}

.hero-copy .hero-sub {
  font-size: 16px;
  color: var(--border);
  margin-top: 10px;
}

/* ---------- Home hero (bigger, kenburns, fade-in copy) ---------- */
.home-hero {
  position: relative;
  height: 92vh;
  min-height: 640px;
  overflow: hidden;
}

.home-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: homeKenburns 22s ease-in-out infinite alternate;
}

@keyframes homeKenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

.home-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,18,15,0.75) 0%, rgba(20,18,15,0.15) 55%, rgba(20,18,15,0.35) 100%);
  pointer-events: none;
}

.home-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 56px 72px;
  pointer-events: none;
}

.home-hero-inner {
  max-width: 900px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.home-hero-inner.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-inner .heading {
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.98;
  color: var(--cream);
  letter-spacing: -1px;
}

.home-hero-inner .hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--border);
  font-weight: 500;
  max-width: 560px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  pointer-events: auto;
}

.btn-primary,
.btn-outline {
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--rust);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 22px rgba(193, 80, 42, 0.35);
}

.btn-outline {
  background: rgba(247, 243, 234, 0.12);
  border: 1px solid rgba(247, 243, 234, 0.4);
  color: var(--cream);
}

.btn-outline:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(247, 243, 234, 0.2);
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="cta"] { transform: scale(0.96); }
[data-reveal="cta"].is-visible { transform: scale(1); }

/* Staggered fade for children of grids marked .stagger */
[data-reveal] .stagger > *,
[data-reveal].stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible .stagger > *,
[data-reveal].stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible .stagger > *:nth-child(2),
[data-reveal].stagger.is-visible > *:nth-child(2) { transition-delay: 0.07s; }
[data-reveal].is-visible .stagger > *:nth-child(3),
[data-reveal].stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
[data-reveal].is-visible .stagger > *:nth-child(4),
[data-reveal].stagger.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
[data-reveal].is-visible .stagger > *:nth-child(5),
[data-reveal].stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
[data-reveal].is-visible .stagger > *:nth-child(6),
[data-reveal].stagger.is-visible > *:nth-child(6) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal],
  [data-reveal] .stagger > *,
  [data-reveal].stagger > *,
  .home-hero-inner {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .home-hero img { animation: none; }
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 34px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-top: 4px;
}

/* ---------- About ---------- */
.about {
  padding: 120px 56px;
  text-align: center;
}

.about-statement {
  font-size: clamp(28px, 3.5vw, 44px);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.15;
}

.about-quote {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ---------- Section heading (generic) ---------- */
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--rust);
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 0 56px 120px; }

.testimonials-head { text-align: center; margin-bottom: 52px; }
.testimonials-head .section-title { margin-top: 10px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(20, 18, 15, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(20, 18, 15, 0.1);
}

.stars { color: var(--rust); font-size: 15px; letter-spacing: 2px; }

.testimonial-quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  flex: 1;
}

.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-place { font-size: 13px; color: var(--text-faint); }

/* ---------- Explore cards ---------- */
.card-grid {
  padding: 0 56px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.explore-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(20, 18, 15, 0.06);
  transition: box-shadow 0.25s ease;
}

.explore-card:hover { box-shadow: 0 14px 30px rgba(20, 18, 15, 0.14); }

.explore-card img { width: 100%; height: 260px; object-fit: cover; }

.explore-card-body { padding: 24px; }

.explore-card-title { font-size: 22px; }

.explore-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--dark);
  color: var(--cream);
  padding: 90px 56px;
  text-align: center;
}

.cta-band .heading { font-size: clamp(28px, 4vw, 48px); }

.cta-band-sub { font-size: 16px; color: var(--footer-text); margin-top: 14px; }

.cta-band .btn-primary { margin-top: 30px; }

/* ---------- Photo section (House page) ---------- */
.photo-section { padding: 0 56px 100px; }

.photo-section-title {
  font-size: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.photo-grid { display: grid; gap: 16px; }
.photo-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.photo-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover,
.amenity-photos img:hover {
  transform: scale(1.015);
  box-shadow: 0 10px 24px rgba(20, 18, 15, 0.14);
}

.amenity-photos img { transition: transform 0.3s ease, box-shadow 0.3s ease; }

.photo-tall img { height: 320px; }
.photo-med img { height: 260px; }
.photo-short img { height: 220px; }

/* ---------- Page header (Tracks/House/Services intro) ---------- */
.page-intro { padding: 72px 56px 0; }
.page-intro .heading { font-size: clamp(36px, 5vw, 56px); letter-spacing: -1px; }
.page-intro-sub { font-size: 16px; color: var(--text-muted); margin-top: 10px; }

/* ---------- Amenities (House page) ---------- */
.amenities {
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.amenities-title {
  font-size: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.amenities-list { display: grid; gap: 22px; }

.amenity {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.amenity-title { font-weight: 700; font-size: 16px; }

.amenity-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.6;
}

.amenity-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.amenity-photos img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}


/* ---------- Woods Track feature ---------- */
.woods-band {
  background: var(--cream);
  color: var(--dark);
  padding: 100px 56px;
}

.woods-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.woods-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rust);
  border: 1px solid rgba(193, 80, 42, 0.45);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 20px;
}

.woods-title {
  font-size: clamp(32px, 4.5vw, 54px);
  letter-spacing: -1px;
}

.woods-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 16px;
}

.woods-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Stacked dark bands get a subtle divider */
.woods-band + .woods-band {
  border-top: 1px solid var(--border);
}

.photo-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(20, 18, 15, 0.18);
  border: 1px solid var(--border);
  background: #fff;
}

.photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.track-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-chip {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  box-shadow: 0 1px 3px rgba(20, 18, 15, 0.06);
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 22px 55px rgba(20, 18, 15, 0.22);
  border: 1px solid var(--border);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.woods-copy > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body-soft);
  margin: 0 0 28px;
}

.challenge-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #c1502a 0%, #93381a 100%);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(193, 80, 42, 0.35);
}

.challenge-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.16);
  color: #fff;
}

.challenge-icon svg { width: 26px; height: 26px; }

.challenge-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.75);
}

.challenge-title {
  font-size: 21px;
  color: #fff;
  margin-top: 6px;
  letter-spacing: -0.3px;
}

.challenge-copy {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(247, 243, 234, 0.92);
  margin: 10px 0 0;
}

.challenge-copy strong { color: #fff; }

@media (max-width: 900px) {
  .woods-band { padding: 80px 24px; }
  .woods-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .challenge-card { flex-direction: column; padding: 24px; }
}

/* ---------- Riding hours band ---------- */
.hours-band {
  background: var(--dark);
  color: var(--cream);
  padding: 90px 56px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hours-title { font-size: 36px; letter-spacing: -0.5px; }

.hours-big {
  font-size: 44px;
  font-family: 'Archivo Black', sans-serif;
  color: var(--rust);
  margin-top: 16px;
}

.hours-note { font-size: 15px; color: var(--footer-text); margin-top: 10px; }

.hours-rules { display: grid; gap: 14px; }

.hours-rules p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--footer-text-soft);
  margin: 0;
}

/* ---------- Services page ---------- */
.services-grid {
  padding: 56px 56px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(20, 18, 15, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(20, 18, 15, 0.1);
}

.service-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  color: var(--rust);
}

.service-price span {
  font-size: 13px;
  color: var(--text-faint);
  font-family: 'Inter', sans-serif;
}

.service-title { font-weight: 700; margin-top: 10px; }

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.pricing-band { background: var(--dark); padding: 100px 56px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.pricing-card {
  background: var(--rust);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.pricing-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.pricing-amount {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  margin-top: 10px;
}

.pricing-amount span { font-size: 22px; }

.pricing-fine { font-size: 14px; margin-top: 8px; opacity: 0.9; }

.pricing-notes { display: grid; gap: 14px; color: var(--cream); }

.pricing-notes-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  letter-spacing: -0.5px;
}

.pricing-notes p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--footer-text-soft);
  margin: 0;
}

.good-to-know {
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 1px 3px rgba(20, 18, 15, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(20, 18, 15, 0.1);
}

.info-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  color: var(--rust);
}

.info-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body-soft);
  margin-top: 14px;
}

/* ---------- Location page ---------- */
.location-hero {
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-title {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1px;
  color: var(--rust);
}

.location-copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 20px;
  max-width: 480px;
}

.location-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
}

.contact-band {
  background: var(--dark);
  color: var(--cream);
  padding: 100px 56px;
  text-align: center;
}

.contact-band .heading { font-size: clamp(28px, 4vw, 44px); }

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-label {
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-value { font-size: 17px; margin-top: 8px; }
.contact-value a { transition: color 0.2s ease; }
.contact-value a:hover { color: var(--rust); }

.contact-value-soft { font-size: 15px; color: var(--footer-text); margin-top: 2px; }

.contact-band .btn-primary { margin-top: 44px; display: inline-block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-2);
  color: var(--footer-text);
  padding: 64px 56px 36px;
}

.site-footer.footer-compact {
  padding: 40px 56px;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: var(--cream);
}

.footer-about {
  font-size: 14px;
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-heading {
  font-weight: 700;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-detail {
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.08);
  color: var(--footer-text);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.12);
  color: #fff;
  background: var(--rust);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-caption {
  font-size: 12px;
  color: var(--footer-caption);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-detail a {
  transition: color 0.2s ease;
}

.footer-detail a:hover { color: var(--cream); }

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(247, 243, 234, 0.05);
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 48px;
}

.footer-cta-title {
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.3px;
}

.footer-cta-sub {
  font-size: 14px;
  color: var(--footer-text);
  margin-top: 6px;
}

.footer-cta-btn { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  margin-top: 44px;
  padding-top: 22px;
  font-size: 12px;
  color: var(--footer-caption);
}

/* ---------- Lightbox ---------- */
.photo-grid img,
.amenity-photos img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 11, 9, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

body.lightbox-open { overflow: hidden; }

.lb-figure {
  margin: 0;
  text-align: center;
  transform: scale(0.97);
  transition: transform 0.28s ease;
  padding: 0 16px;
}

.lightbox.is-open .lb-figure { transform: scale(1); }

.lb-img {
  max-width: min(1200px, 92vw);
  max-height: 76vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  transition: opacity 0.18s ease;
  user-select: none;
  -webkit-user-select: none;
}

.lb-img.is-fading { opacity: 0; }

.lb-caption {
  color: var(--footer-text-soft);
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}

.lb-counter {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top));
  left: 22px;
  color: var(--footer-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lb-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.1);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lb-btn:hover {
  background: var(--rust);
  transform: scale(1.08);
}

.lb-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lb-close {
  top: calc(12px + env(safe-area-inset-top));
  right: calc(14px + env(safe-area-inset-right));
}

.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
}

.lb-prev { left: calc(14px + env(safe-area-inset-left)); }
.lb-next { right: calc(14px + env(safe-area-inset-right)); }

.lb-prev:hover,
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 700px) {
  .lb-img { max-height: 70vh; border-radius: 8px; }
  .lb-btn { width: 44px; height: 44px; background: rgba(247, 243, 234, 0.14); }
  .lb-prev { left: calc(8px + env(safe-area-inset-left)); }
  .lb-next { right: calc(8px + env(safe-area-inset-right)); }
  .lb-caption { font-size: 13px; padding-bottom: env(safe-area-inset-bottom); }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lb-figure,
  .lb-img,
  .lb-btn { transition: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 901px) and (max-width: 1180px) {
  .nav { padding: 20px 32px; }
  .nav-logo { font-size: 17px; }
  .nav-links { gap: 22px; }
  .nav-link { font-size: 13px; }
  .btn-book { font-size: 13px; padding: 10px 18px; }
}

@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 16px;
    box-shadow: 0 12px 24px rgba(20, 18, 15, 0.08);
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links .nav-link {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links .nav-link:last-of-type { border-bottom: none; }
  .nav-links .btn-book {
    margin-top: 12px;
    text-align: center;
    padding: 15px 22px;
  }
  .hero-copy, .home-hero-copy, .page-intro, .about, .testimonials,
  .card-grid, .cta-band, .amenities, .hours-band,
  .services-grid, .pricing-band, .good-to-know, .location-hero,
  .contact-band, .site-footer, .photo-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .stat-strip, .testimonial-grid, .card-grid, .amenities,
  .hours-grid, .services-grid, .pricing-grid, .good-to-know,
  .location-hero, .footer-grid, .photo-grid.cols-3, .photo-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid.cols-2 { grid-template-columns: 1fr; }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .footer-cta { padding: 26px 24px; }
}

@media (max-width: 560px) {
  .testimonial-grid, .card-grid, .amenities,
  .hours-grid, .services-grid, .pricing-grid, .good-to-know,
  .location-hero, .footer-grid, .photo-grid.cols-3, .photo-grid.cols-4,
  .amenity-photos, .contact-methods {
    grid-template-columns: 1fr;
  }
  .nav-logo { font-size: 15px; white-space: nowrap; }
  .stat-number { font-size: 26px; }
  .stat { padding: 24px 12px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-amount { font-size: 48px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .contact-methods { gap: 28px; }
  .footer-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-cta-btn { text-align: center; }
}
