/* ================================================
   BUCKLEBRIDGE FARM — GLOBAL STYLES
   Cinematic Meadow aesthetic
   ================================================ */

/* ------------------------------------------------
   TOKENS
------------------------------------------------ */
:root {
  --cream:      #f2ede0;
  --dark:       #1a1a14;
  --nav-bg:     #2a2a1e;
  --green:      #6B7B4A;
  --gold:       #D4A843;
  --brown:      #4a3820;
  --warm:       #7A5C1E;
  --slate:      #5a97ac;
  --muted:      #5a5040;
  --border:     rgba(122, 92, 30, 0.2);

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;

  --nav-h:     64px;
  --pad-x:     clamp(20px, 5vw, 60px);
  --pad-y:     clamp(56px, 8vw, 96px);
  --pad-block: clamp(84px, 13vw, 170px);
  --max-w:     1100px;
}


/* ------------------------------------------------
   RESET
------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }


/* ------------------------------------------------
   SITE NAV
------------------------------------------------ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: background 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease;
}

.site-nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
/* Logo shows by default (all pages have a header logo). Exception: the HOME
   page hides it at the top to avoid duplicating the large hero logo, then
   fades it in once scrolled. Home pages carry <body class="home">. */
.nav-logo      {
  height: 52px; width: auto; opacity: 1;
  transition: opacity 0.45s ease;
}
body.home .nav-logo { opacity: 0; pointer-events: none; }
body.home .site-nav.scrolled .nav-logo { opacity: 1; pointer-events: auto; }

.nav-links {
  display: flex; gap: clamp(22px, 3vw, 44px);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(242,237,224,0.65);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #f2ede0; }

.nav-cta {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 9px 22px; flex-shrink: 0;
  border: 0; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #c49833; transform: translateY(-1px); }
.book-caret {
  display: inline-block; font-size: 8px; margin-left: 4px;
  transition: transform 0.22s ease;
}
.book-menu.open .book-caret { transform: rotate(180deg); }


/* ------------------------------------------------
   BOOK A STAY — accommodation chooser dropdown
------------------------------------------------ */
.book-menu { position: relative; flex-shrink: 0; }
.book-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 236px;
  background: var(--nav-bg);
  box-shadow: 0 16px 44px rgba(0,0,0,0.32);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 250;
}
.book-menu.open .book-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.book-dropdown-label {
  display: block; font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(242,237,224,0.45); padding: 8px 12px 8px;
}
.book-dropdown a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 11px 12px; color: rgba(242,237,224,0.9);
  font-family: var(--serif); font-size: 15px;
  transition: background 0.18s ease, color 0.18s ease;
}
.book-dropdown a:hover { background: rgba(212,168,67,0.16); color: #fff; }
.book-dropdown a small {
  font-family: var(--sans);
  font-size: 8px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(242,237,224,0.5); font-weight: 500; white-space: nowrap;
}


/* ------------------------------------------------
   MOBILE MENU — three-dots toggle + full-screen panel
   Toggle is hidden on desktop, shown ≤640px (see RESPONSIVE)
------------------------------------------------ */
.nav-toggle {
  display: none;                 /* shown on mobile only */
  position: absolute; left: 50%; transform: translateX(-50%);
  background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  color: rgba(242,237,224,0.9);
  z-index: 201;
}
.nav-toggle-dots { display: flex; gap: 5px; }
.nav-toggle-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
  transition: transform 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-dots span:nth-child(1) { transform: translateX(3px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-dots span:nth-child(3) { transform: translateX(-3px); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--nav-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 24px; color: rgba(242,237,224,0.92);
  padding: 14px 20px; letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-menu-cta {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 14px 38px; margin-top: 20px; font-weight: 600;
}
.mobile-menu .mobile-menu-cta:hover { color: var(--dark); background: #c49833; }
.mobile-menu-close {
  position: absolute; top: 16px; right: 20px;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid rgba(242,237,224,0.3);
  color: var(--cream); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-menu-close:hover { background: rgba(212,168,67,0.85); color: var(--dark); transform: rotate(90deg); }


/* ------------------------------------------------
   HERO (shared — home video + tent image)
------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh; min-height: 520px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--nav-bg);
}

.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 115%;   /* extra height for parallax room */
  object-fit: cover; object-position: center;
  will-change: transform;
  top: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,6,0.22) 0%,
    rgba(10,10,6,0.10) 45%,
    rgba(10,10,6,0.58) 100%
  );
}

/* Accommodation-page heroes: add a radial darkening behind the text so it
   stays legible against light areas of the photograph. */
.hero:has(.tent-hero-h1) .hero-overlay {
  background:
    radial-gradient(ellipse 70% 55% at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, transparent 80%),
    linear-gradient(
      to bottom,
      rgba(10,10,6,0.22) 0%,
      rgba(10,10,6,0.10) 45%,
      rgba(10,10,6,0.58) 100%
    );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  color: #f2ede0;
}

.hero-logo {
  display: block; margin: 0 auto 26px;
  width: clamp(160px, 22vw, 240px); height: auto;
  opacity: 1;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7.5vw, 88px);
  line-height: 1.15; font-weight: 700;
  color: #f2ede0; margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(14px, 1.7vw, 18px); letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(242,237,224,0.9); font-weight: 500;
  white-space: nowrap; margin: 18px auto 0; line-height: 1.8;
}
@media (max-width: 540px) {
  /* Stay on one line (client request) — sizing handled in the 640px block */
  .hero-sub { white-space: nowrap; }
}

/* Tent detail hero typography — matches .hero-h1 */
.tent-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7.5vw, 88px);
  line-height: 1.15; font-weight: 700;
  color: #f2ede0; margin-bottom: 22px;
}
.tent-hero-sub {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin: 18px auto 0;
}
.tent-hero-sleeps {
  font-size: clamp(14px, 1.7vw, 18px); letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(242,237,224,0.95); font-weight: 600;
}
.tent-hero-beds {
  font-size: clamp(11px, 1.3vw, 13px); letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(242,237,224,0.95); font-weight: 600;
}

/* Address + what3words line under the location copy */
.location-detail {
  margin-top: 22px; font-size: 13px; line-height: 2; color: var(--muted);
  letter-spacing: 0.3px;
}
.location-detail span {
  font-size: 13px; letter-spacing: 0.3px; text-transform: none;
  color: var(--green); font-weight: 600;
}


/* ------------------------------------------------
   SHARED SECTION ELEMENTS
------------------------------------------------ */
.section-pad { padding: var(--pad-y) var(--pad-x); }
.container   { max-width: var(--max-w); margin: 0 auto; }

.eyebrow {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--green); font-weight: 500;
  display: block; margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600; color: var(--dark); line-height: 1.2;
}
.center { text-align: center; }

.lead {
  font-size: 14px; line-height: 1.8; color: var(--muted);
  max-width: 560px; margin: 0 auto;
  letter-spacing: 0.2px;
}


/* ------------------------------------------------
   THREE RETREATS — cream block
------------------------------------------------ */
.retreats-band {
  background: var(--cream);
  padding: var(--pad-block) var(--pad-x);
  text-align: center;
}
.retreats-band .section-h2 {
  color: var(--dark);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.retreats-band .lead {
  color: var(--muted);
  max-width: 600px;
  font-size: 15px;
}


/* ------------------------------------------------
   TENT CARDS (home page)
------------------------------------------------ */
.tent-cards-section {
  background: var(--brown);
  padding: var(--pad-block) var(--pad-x);
}
.tent-cards-grid {
  max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

.tent-card {
  display: flex; flex-direction: column; position: relative;
  transition:
    transform  0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  color: #4a6741;
  will-change: transform;
}
.tent-card:nth-child(2) { color: var(--warm); }
/* Village: deepened gold (was --gold #D4A843) so the white title meets WCAG AA
   contrast (≈4.7:1) — keeps a distinct gold identity while matching the
   white-title treatment of the other cards. */
.tent-card:nth-child(3) { color: #8f6f15; }
/* The Farm: warm clay — distinct from the brown section background it sits on */
.tent-card:nth-child(4) { color: #9c5f38; }

/* Hover — stops float, lifts + scales, deep shadow */
.tent-cards-grid .tent-card:hover {
  animation: none;
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 22px 56px rgba(30, 20, 8, 0.2);
  z-index: 2;
}

.tent-card-header {
  background: currentColor; padding: 20px 22px; text-align: center;
}
.tent-card-title {
  font-family: var(--serif);
  font-size: 18px; color: #fff; font-weight: 600;
  letter-spacing: 0.3px;
}

.tent-card-img-wrap {
  overflow: hidden; height: 200px;
  position: relative;
}
.tent-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
  will-change: transform;
}
/* On hover: scale up smoothly */
.tent-cards-grid .tent-card:hover .tent-card-img-wrap img {
  transform: scale(1.09);
  filter: saturate(0.95) contrast(1.02);
}

.tent-card-body {
  padding: 22px 22px 26px; background: var(--cream);
  flex: 1 1 auto; display: flex; flex-direction: column;
}
.tent-card-spec {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin-bottom: 14px;
}
.spec-sleeps {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: currentColor; font-weight: 700;
}
.spec-beds {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: #8a7a5a; font-weight: 500;
}
.tent-card-desc {
  font-size: 13px; line-height: 1.72; color: #2a2a1e; margin-bottom: 18px;
}
.tent-card-cta {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: currentColor; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: auto;            /* pin CTA to the bottom for equal-height cards */
  align-self: flex-start;
  transition: gap 0.25s ease;
}
.tent-card:hover .tent-card-cta { gap: 14px; }


/* ------------------------------------------------
   HIGH WEALD CTA BAND
------------------------------------------------ */
.highweald-band {
  background: var(--green);
  padding: var(--pad-block) var(--pad-x);
  text-align: center;
}
.highweald-band .eyebrow  { color: rgba(242,237,224,0.6); }
.highweald-band .section-h2 {
  color: #f2ede0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  margin: 12px 0 22px;
}
.highweald-band .lead     { color: rgba(242,237,224,0.82); max-width: 540px; font-size: 15px; }

.btn-cream {
  display: inline-block; margin-top: 36px;
  font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
  background: var(--cream); color: var(--dark);
  padding: 15px 44px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-cream:hover { background: var(--gold); transform: translateY(-2px); }


/* ------------------------------------------------
   FOOTER
------------------------------------------------ */
.site-footer {
  background: #1e1e14;
  padding: 32px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { height: 52px; width: auto; opacity: 0.6; }
.footer-copy {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(242,237,224,0.28); text-align: center;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(242,237,224,0.38);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(242,237,224,0.8); }


/* ------------------------------------------------
   TENT DETAIL PAGE — COMBINED FEATURE SECTION
   Intro copy + photo mosaic on one bold brown band
------------------------------------------------ */
.tent-feature {
  background: var(--brown);
  padding: var(--pad-block) var(--pad-x);
}
.tent-feature-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.tent-feature-text {
  max-width: 760px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  text-align: center;
}
.tent-feature-text .section-h2 {
  color: #f2ede0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.tent-feature-text .lead {
  color: rgba(242,237,224,0.82);
  font-size: 15px;
  max-width: 620px; margin: 0 auto;
}


/* ------------------------------------------------
   TENT DETAIL PAGE — GALLERY
------------------------------------------------ */
.gallery-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
}
.gallery-item {
  overflow: hidden; display: block; position: relative;
  cursor: zoom-in; background: #1a1a14;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.88) contrast(1.03);
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1),
              filter 0.4s ease;
  will-change: transform;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.02);
}
.gallery-item::after {
  content: "";
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  background:
    linear-gradient(rgba(242,237,224,0.95), rgba(242,237,224,0.95)) center/12px 1.5px no-repeat,
    linear-gradient(rgba(242,237,224,0.95), rgba(242,237,224,0.95)) center/1.5px 12px no-repeat,
    rgba(26,26,20,0.55);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; transform: scale(1); }

/* "View all photos" pill — overlays last gallery tile */
.gallery-view-all {
  position: absolute; right: 14px; bottom: 14px;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--dark); font-weight: 600;
  background: rgba(242,237,224,0.94);
  padding: 11px 20px;
  border: 1px solid rgba(26,26,20,0.15);
  cursor: zoom-in;
  transition: background 0.2s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
  z-index: 3;
}
.gallery-view-all:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* Hidden gallery links — not displayed, but discovered by lightbox */
.gallery-hidden { display: none; }

/* ------------------------------------------------
   LIGHTBOX
------------------------------------------------ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12, 10, 6, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-stage {
  position: relative;
  width: min(92vw, 1400px);
  height: 86vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.lightbox-img.loaded { opacity: 1; transform: scale(1); }
/* Prev/next are direct children of .lightbox (fixed fullscreen),
   so left/right values are always viewport-relative — never off-screen */
.lightbox-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px;
  background: rgba(242,237,224,0.08);
  color: var(--cream);
  border: 1px solid rgba(242,237,224,0.25);
  font-family: var(--serif);
  font-size: 26px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.lightbox-btn:hover {
  background: rgba(212,168,67,0.85);
  color: var(--dark);
  border-color: transparent;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 42px; height: 42px;
  background: transparent; color: var(--cream);
  border: 1px solid rgba(242,237,224,0.3);
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(212,168,67,0.85); color: var(--dark); transform: rotate(90deg); }
.lightbox-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(242,237,224,0.7);
}
@media (max-width: 480px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-btn { width: 42px; height: 42px; font-size: 22px; }
}


/* ------------------------------------------------
   TENT DETAIL PAGE — AMENITIES
------------------------------------------------ */
.amenities-section {
  background: var(--green);
  padding: var(--pad-block) var(--pad-x);
}
.amenities-section .eyebrow    { color: rgba(242,237,224,0.6); }
.amenities-section .section-h2 {
  color: #f2ede0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
}
.amenities-grid {
  max-width: 860px; margin: 44px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px 52px;
}
.amenity-name {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(242,237,224,0.6); font-weight: 500; display: block; margin-bottom: 5px;
}
.amenity-detail {
  font-family: var(--serif);
  font-size: 15px; color: #f2ede0; font-style: italic;
}


/* ------------------------------------------------
   TENT DETAIL PAGE — BOOK CTA
------------------------------------------------ */
.book-cta-section {
  padding: var(--pad-block) var(--pad-x);
  text-align: center; background: var(--cream);
}
.book-cta-section .section-h2 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  margin: 12px 0 20px;
}
.book-cta-section .lead       { margin-bottom: 36px; }

.btn-gold {
  display: inline-block;
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 16px 52px; font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-gold:hover {
  background: #c49833;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}


/* ------------------------------------------------
   TENT DETAIL PAGE — OTHER TENTS STRIP
------------------------------------------------ */
.other-tents-section {
  background: var(--brown);
  padding: var(--pad-block) var(--pad-x);
}
.other-tents-section .eyebrow    { color: rgba(242,237,224,0.6); }
.other-tents-section .section-h2 {
  color: #f2ede0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
}
.other-tents-grid {
  max-width: 980px; margin: 44px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.other-tent-card {
  display: block; position: relative;
  overflow: hidden; height: 230px;
  transition: box-shadow 0.3s ease;
}
.other-tent-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.18); }
.other-tent-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.75) brightness(0.82);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.other-tent-card:hover img {
  transform: scale(1.05);
  filter: saturate(0.88) brightness(0.88);
}
/* Name + "View" arrow share the bottom line — arrow is persistent (no
   click-and-hold needed on touch) and pinned bottom-right. */
.other-tent-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 58%);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; padding: 22px 20px;
}
.other-tent-name {
  font-family: var(--serif);
  font-size: 20px; color: #f2ede0; font-weight: 600;
}
.other-tent-arrow {
  flex-shrink: 0;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  white-space: nowrap; line-height: 1.9;
  transition: gap 0.2s ease, transform 0.2s ease;
}
.other-tent-card:hover .other-tent-arrow { transform: translateX(3px); }


/* ------------------------------------------------
   GLOBAL INFO BLOCK — "find out more about how to get here"
   Reusable discovery band (home + every unit page)
------------------------------------------------ */
.info-block {
  background: var(--cream);
  padding: var(--pad-block) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--border);
}
.info-block .eyebrow    { color: var(--green); }
.info-block .section-h2 {
  color: var(--dark);
  font-size: clamp(28px, 4.5vw, 46px);
  margin: 10px 0 18px;
}
.info-block .lead { color: var(--muted); margin-bottom: 32px; }
.info-block-links {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.btn-outline {
  display: inline-block;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dark); font-weight: 600;
  padding: 14px 34px; border: 1px solid var(--dark);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { background: var(--dark); color: var(--cream); transform: translateY(-2px); }


/* ------------------------------------------------
   FEATURE CARD GRID — "what to expect" (Rest & Wild style)
------------------------------------------------ */
.feature-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.feature-card {
  position: relative; overflow: hidden;
  height: 300px; display: block;
}
.feature-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.03);
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
}
.feature-card:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.02); }
.feature-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,6,0.78) 0%, rgba(10,10,6,0.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px 24px;
}
.feature-card-title {
  font-family: var(--serif);
  font-size: 24px; color: #f2ede0; font-weight: 600; line-height: 1.1;
  margin-bottom: 6px;
}
.feature-card-desc {
  font-size: 12px; line-height: 1.6; color: rgba(242,237,224,0.86);
}


/* ------------------------------------------------
   FAQ / WHAT-TO-BRING — stacked detail blocks
------------------------------------------------ */
.faq-section { background: var(--cream); padding: var(--pad-block) var(--pad-x); }
.faq-list { max-width: 760px; margin: 44px auto 0; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 26px); color: var(--dark);
  font-weight: 600; margin-bottom: 14px;
}
.faq-a, .faq-a li { font-size: 14px; line-height: 1.8; color: var(--muted); }
.faq-a p { margin-bottom: 10px; }
.faq-a ul { margin: 10px 0 0; padding-left: 0; }
.faq-a li { position: relative; padding-left: 20px; margin-bottom: 6px; }
.faq-a li::before {
  content: "—"; position: absolute; left: 0; color: var(--green);
}
.faq-a strong { color: var(--dark); font-weight: 600; }


/* ------------------------------------------------
   LOCATION PAGE — copy + animated map
------------------------------------------------ */
.location-section { background: var(--cream); padding: var(--pad-block) var(--pad-x); }
.location-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.location-copy .section-h2 { margin-bottom: 20px; }
.location-copy .lead { margin: 0 0 18px; max-width: none; text-align: left; }
.location-map { width: 100%; }
.location-map svg {
  width: 100%; height: auto; display: block;
  /* Map artwork now has a transparent background, so it sits directly on the
     page — no card frame (border-radius / box-shadow removed, Round 3). */
}
.map-label { font-family: var(--sans); font-size: 34px; font-weight: 600; fill: var(--dark); }
.map-label-bbf { fill: #6b5010; font-weight: 700; }

/* Getting Here sits on the green band so the page carries the full
   cream / green palette rhythm used across the rest of the site. */
.travel-section { background: var(--green); padding: var(--pad-block) var(--pad-x); }
.travel-grid {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
.travel-card .eyebrow { color: var(--gold); }
.travel-card h3 {
  font-family: var(--serif); font-size: 24px; color: #f2ede0;
  font-weight: 600; margin: 8px 0 14px;
}
.travel-card p { font-size: 14px; line-height: 1.8; color: rgba(242,237,224,0.82); }

/* Map pin drop + pulse */
.map-pin { transform-box: fill-box; transform-origin: bottom center; }
.map-pin-bbf circle.pin-pulse {
  transform-box: fill-box; transform-origin: center;
  animation: pinPulse 2.2s ease-out infinite;
}
/* second, offset ripple for a fuller "emanating" effect */
.map-pin-bbf circle.pin-pulse-2 { animation-delay: 1.1s; }
@keyframes pinPulse {
  0%   { transform: scale(0.5); opacity: 0.9; }
  80%  { transform: scale(4.4); opacity: 0; }
  100% { transform: scale(4.4); opacity: 0; }
}
.map-route {
  stroke-dasharray: 14 18;
  animation: routeDash 1.6s linear infinite;
}
@keyframes routeDash { to { stroke-dashoffset: -64; } }


/* ------------------------------------------------
   RESPONSIVE
------------------------------------------------ */
@media (max-width: 900px) {
  .tent-cards-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .amenities-grid   { grid-template-columns: repeat(2, 1fr); }
  .other-tents-grid { grid-template-columns: 1fr; max-width: 440px; }
  .feature-grid     { grid-template-columns: repeat(2, 1fr); }
  .location-inner   { grid-template-columns: 1fr; gap: 36px; }
  .location-copy .lead { text-align: center; }
  .travel-grid      { grid-template-columns: 1fr; max-width: 440px; gap: 32px; }
}

@media (max-width: 640px) {
  /* Tighten the cavernous block padding on mobile while staying airy */
  :root { --pad-block: clamp(52px, 14vw, 84px); --pad-y: clamp(44px, 11vw, 64px); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }       /* show the three-dots menu button, centred */
  /* Tighten the Book a Stay button and drop its caret so the centred
     three-dots menu has room and stays clear of the button. */
  .nav-cta { padding: 7px 13px; font-size: 9px; letter-spacing: 1.5px; }
  .book-caret { display: none; }
  .tent-cards-grid { grid-template-columns: 1fr; max-width: 440px; }
  .hero-h1   { font-size: clamp(30px, 9vw, 52px); }
  .tent-hero-h1 { font-size: clamp(32px, 9vw, 60px); }
  /* Keep the hero sub-line on a single line on mobile (client request).
     Scales with viewport so it always fits; letter-spacing pulse is
     disabled on mobile in animations.css so this spacing actually applies. */
  .hero-sub { white-space: nowrap; font-size: clamp(8px, 2.3vw, 10px); letter-spacing: 0.6px; max-width: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 24px 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { height: 240px; }
  .site-footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}


/* ------------------------------------------------
   GOOD TO KNOW — alternating two-column image + text
   blocks (the image side alternates left / right)
------------------------------------------------ */
.expect-section { background: var(--cream); padding: var(--pad-block) var(--pad-x); }
.expect-intro {
  text-align: center; max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.expect-intro .section-h2 {
  font-size: clamp(34px, 6vw, 64px); line-height: 1.08; margin-top: 6px;
}
.expect-rows {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(36px, 6vw, 80px);
}
.expect-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px); align-items: center;
}
/* Alternate the image side on every other row */
.expect-row:nth-child(even) .expect-row-media { order: 2; }
.expect-row-media {
  overflow: hidden; height: clamp(260px, 34vw, 420px);
  box-shadow: 0 18px 48px rgba(30, 20, 8, 0.14);
}
.expect-row-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
}
.expect-row:hover .expect-row-media img {
  transform: scale(1.05); filter: saturate(1) contrast(1.02);
}
.expect-row-text .eyebrow { color: var(--green); }
.expect-row-text h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 34px); color: var(--dark);
  font-weight: 600; line-height: 1.15; margin: 6px 0 16px;
}
.expect-row-text p { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 10px; }
.expect-row-text ul { margin: 12px 0 0; }
.expect-row-text li {
  position: relative; padding-left: 20px; margin-bottom: 7px;
  font-size: 14px; line-height: 1.7; color: var(--muted);
}
.expect-row-text li::before { content: "—"; position: absolute; left: 0; color: var(--green); }

@media (max-width: 760px) {
  .expect-row { grid-template-columns: 1fr; gap: 22px; }
  /* Image always leads on mobile, whatever the desktop order */
  .expect-row:nth-child(even) .expect-row-media { order: 0; }
  .expect-row-media { height: clamp(220px, 60vw, 300px); }
}
