/* ==========================================================================
   A River Reach — Margaret River, Western Australia
   Design system: forest · river · terracotta · bone
   ========================================================================== */

:root {
  --forest:   #14231b;
  --pine:     #1e3328;
  --moss:     #3c5a47;
  --river:    #4a7d68;
  --sage:     #a8bda2;
  --bone:     #f3ede0;
  --cream:    #faf6ec;
  --clay:     #c4743b;
  --clay-soft:#e0a878;
  --ink:      #22302a;
  --ink-soft: #55645c;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;

  --shadow-soft: 0 24px 60px -24px rgba(20, 35, 27, 0.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

/* subtle grain for depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

::selection { background: var(--clay); color: var(--cream); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 450;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--forest);
}

h2 {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  font-variation-settings: "opsz" 100;
}

h2 em, h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}

h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }

p + p { margin-top: 1.1em; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--light { color: var(--clay-soft); }

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.container--narrow { width: min(100% - 3rem, 820px); }

.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }

.section__head { max-width: 46rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__intro { margin-top: 1.6rem; font-size: 1.15rem; color: var(--ink-soft); max-width: 40rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 3000;
  padding: 0.7rem 1.2rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  transition: top 0.25s var(--ease-out);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--btn-bg);
  border-radius: inherit;
  transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
}

.btn:hover { transform: translateY(-2px); }

.btn--solid { color: var(--btn-fg); }
.btn--solid::before { background: var(--btn-bg); }
.btn--solid:hover { color: var(--forest); }
.btn--solid:hover::before { transform: scaleX(0); }
.btn--solid:hover { border-color: var(--forest); }

.btn--ghost { color: var(--cream); border-color: rgba(243, 237, 224, 0.55); }
.btn--ghost::before { background: var(--cream); transform: scaleX(0); }
.btn--ghost:hover { color: var(--forest); }
.btn--ghost:hover::before { transform: scaleX(1); }

.btn--ghost-light { color: var(--bone); border-color: rgba(243, 237, 224, 0.5); }
.btn--ghost-light::before { background: var(--bone); transform: scaleX(0); }
.btn--ghost-light:hover { color: var(--forest); }
.btn--ghost-light:hover::before { transform: scaleX(1); }

.btn--outline { color: var(--forest); border-color: var(--forest); }
.btn--outline::before { background: var(--forest); transform: scaleX(0); }
.btn--outline:hover { color: var(--cream); }
.btn--outline:hover::before { transform: scaleX(1); }

.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  color: var(--bone);
}

.site-header.scrolled {
  background: rgba(250, 246, 236, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(20, 35, 27, 0.08);
  color: var(--forest);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.nav__logo { display: inline-flex; color: currentColor; }
.nav__logo svg { height: 54px; width: auto; transition: height 0.35s var(--ease-out); }
.site-header.scrolled .nav__logo svg { height: 44px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
  padding-block: 0.3rem;
}

.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s var(--ease-out);
}

.nav__menu a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left center; }

.nav__cta {
  padding: 0.68rem 1.5rem;
  border-radius: 999px;
  background: var(--clay);
  color: var(--cream) !important;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.nav__cta:hover { background: var(--forest); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
  color: currentColor;
}
.nav__toggle span {
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--bone);
  overflow: hidden;
  background: var(--forest);
}

.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s var(--ease-out) forwards;
}

@keyframes heroDrift {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 35, 27, 0.42) 0%, rgba(20, 35, 27, 0.18) 40%, rgba(20, 35, 27, 0.82) 100%),
    linear-gradient(75deg, rgba(20, 35, 27, 0.55) 0%, rgba(20, 35, 27, 0) 65%);
}

.hero__content { position: relative; z-index: 2; padding-bottom: clamp(5rem, 12vh, 8.5rem); }

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 1.6rem;
}

.hero__title {
  font-size: clamp(2.9rem, 7.4vw, 6rem);
  color: var(--bone);
  max-width: 14ch;
}

.hero__title em { color: var(--clay-soft); }

.hero__lead {
  margin-top: 1.7rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(243, 237, 224, 0.88);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__scroll {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.2rem);
  bottom: clamp(1.6rem, 4vh, 2.6rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.75);
  text-decoration: none;
}

.hero__scroll-line {
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(to bottom, transparent, currentColor);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.5; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--forest);
  color: var(--bone);
  padding-block: 1.9rem;
}

.stats__item {
  text-align: center;
  padding: 0.4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stats__item + .stats__item { border-left: 1px solid rgba(243, 237, 224, 0.14); }

.stats__item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
}

.stats__item span {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(243, 237, 224, 0.62);
}

/* ---------- Welcome ---------- */
.welcome { background: var(--cream); }

.welcome__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.welcome__text p { color: var(--ink-soft); }
.welcome__text h2 { margin-bottom: 1.8rem; }

.welcome__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--forest) !important;
  margin-top: 1.6rem;
}

.welcome__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: end;
}

.welcome__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.welcome__photo img { transition: transform 0.8s var(--ease-out); }
.welcome__photo:hover img { transform: scale(1.045); }

.welcome__photo--main { aspect-ratio: 4 / 5; }
.welcome__photo--main img { width: 100%; height: 100%; object-fit: cover; }

.welcome__photo--small {
  aspect-ratio: 4 / 5.4;
  margin-bottom: 2.6rem;
}
.welcome__photo--small img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--clay);
  color: var(--cream);
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid rgba(20, 35, 27, 0.15);
}

.marquee__track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  white-space: nowrap;
}

.marquee__track i {
  font-style: normal;
  font-size: 1.6rem;
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Features ---------- */
.chalet { background: var(--bone); }

.feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.feature--flip .feature__media { order: 2; }
.feature--flip .feature__body { order: 1; }

.feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 2;
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.feature__media:hover img { transform: scale(1.04); }

.feature__body h3 { margin-bottom: 1rem; }
.feature__body p { color: var(--ink-soft); }

/* ---------- Amenities ---------- */
.amenities {
  background: var(--forest);
  color: var(--bone);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 4rem);
  box-shadow: var(--shadow-soft);
}

.amenities__title { color: var(--cream); margin-bottom: 2rem; }

.amenities__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2.2rem;
}

.amenities__list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.95rem;
  color: rgba(243, 237, 224, 0.85);
}

.amenities__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.9rem;
  height: 0.5rem;
  border-left: 2px solid var(--clay-soft);
  border-bottom: 2px solid var(--clay-soft);
  transform: rotate(-45deg) translateY(-2px);
}

/* ---------- Forest (dark) ---------- */
.forest {
  background: var(--forest);
  color: var(--bone);
}

.forest h2, .forest h3 { color: var(--cream); }
.forest h2 em { color: var(--clay-soft); }
.forest .section__intro { color: rgba(243, 237, 224, 0.72); }

.forest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.forest__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.forest__photo:nth-child(2) { transform: translateY(clamp(1.5rem, 4vw, 3.5rem)); }

.forest__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.forest__photo:nth-child(3) img { object-position: 20% center; }
.forest__photo:hover img { transform: scale(1.05); }

.forest__photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.4rem 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  background: linear-gradient(to top, rgba(20, 35, 27, 0.85), transparent);
}

.forest__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
}

.forest__note {
  border-top: 1px solid rgba(243, 237, 224, 0.22);
  padding-top: 1.6rem;
}

.forest__note h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.forest__note p { font-size: 0.98rem; color: rgba(243, 237, 224, 0.72); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 2vw, 1.4rem);
}

.gallery__item {
  border: 0;
  padding: 0;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bone);
  position: relative;
}

.gallery__item--w2 { grid-column: span 2; aspect-ratio: 2 / 1; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s var(--ease-out);
}

.gallery__item::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.1rem 0.9rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  text-align: left;
  background: linear-gradient(to top, rgba(20, 35, 27, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover img { transform: scale(1.05); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 25, 19, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox[hidden] { display: none; }

.lightbox__stage { max-width: min(92vw, 1100px); text-align: center; }

.lightbox__stage img {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}

.lightbox__stage figcaption {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bone);
}

.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(243, 237, 224, 0.08);
  border: 1px solid rgba(243, 237, 224, 0.25);
  color: var(--bone);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: var(--clay);
  transform: scale(1.06);
}

.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- Guide ---------- */
.guide { background: var(--bone); }

.guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.guide__card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(20, 35, 27, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.guide__card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 116, 59, 0.45);
  box-shadow: 0 26px 50px -28px rgba(20, 35, 27, 0.35);
}

.guide__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--forest);
}

.guide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.guide__card:hover .guide__media img { transform: scale(1.06); }

.guide__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.7rem 1.8rem 1.5rem;
}

.guide__dist {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  border: 1px solid rgba(196, 116, 59, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.guide__card h3 { font-size: 1.42rem; margin-bottom: 0.7rem; }
.guide__card p { font-size: 0.96rem; color: var(--ink-soft); }

.guide__card .guide__credit {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(20, 35, 27, 0.42);
}

/* ---------- Getting here ---------- */
.getting {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--cream);
  border: 1px solid rgba(20, 35, 27, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.8rem);
}

.getting__text h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1.1rem; }
.getting__text p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.getting__text strong { color: var(--forest); }

.getting__photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

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

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }

.faq__list { border-top: 1px solid rgba(20, 35, 27, 0.14); }

.faq__item { border-bottom: 1px solid rgba(20, 35, 27, 0.14); }

.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--forest);
  cursor: pointer;
  transition: color 0.3s;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--clay); }

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 1.5px solid rgba(20, 35, 27, 0.25);
  border-radius: 50%;
  transition: background 0.35s var(--ease-out), border-color 0.35s;
}

.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
}

.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item[open] .faq__icon { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__answer { padding: 0 3rem 1.6rem 0.2rem; color: var(--ink-soft); max-width: 44rem; }
.faq__answer a { color: var(--clay); font-weight: 500; }

/* ---------- Booking ---------- */
.booking {
  background: var(--pine);
  background-image: linear-gradient(160deg, var(--pine) 0%, var(--forest) 100%);
  color: var(--bone);
}

.booking h2 { color: var(--cream); }
.booking h2 em { color: var(--clay-soft); }
.booking .section__intro { color: rgba(243, 237, 224, 0.72); }

.booking__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: stretch;
}

.booking__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(243, 237, 224, 0.06);
  border: 1px solid rgba(243, 237, 224, 0.16);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem;
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
}

.booking__card:hover { transform: translateY(-6px); border-color: rgba(243, 237, 224, 0.4); }

.booking__card h3 { color: var(--cream); font-size: 1.75rem; }

.booking__via {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 0.9rem;
}

.booking__card p:not(.booking__via):not(.booking__badge) {
  font-size: 0.96rem;
  color: rgba(243, 237, 224, 0.75);
  flex-grow: 1;
  margin-bottom: 1.6rem;
}

.booking__card .btn { align-self: flex-start; }

.booking__card--primary {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
}

.booking__card--primary h3 { color: var(--forest); }
.booking__card--primary .booking__via { color: var(--clay); }
.booking__card--primary p:not(.booking__via):not(.booking__badge) { color: var(--ink-soft); }

.booking__badge {
  position: absolute;
  top: -0.85rem;
  left: 2rem;
  background: var(--clay);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.booking__note {
  margin-top: 2.6rem;
  text-align: center;
  font-size: 0.98rem;
  color: rgba(243, 237, 224, 0.72);
}

.booking__note a { color: var(--clay-soft); font-weight: 500; }

/* ---------- Footer ---------- */
.footer {
  background: #0e1913;
  color: rgba(243, 237, 224, 0.72);
  padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem;
}

.footer__brand { margin-bottom: 3rem; color: var(--bone); }
.footer__brand svg { height: 74px; width: auto; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 1.1rem;
}

.footer__col a, .footer__col address {
  display: block;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(243, 237, 224, 0.72);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--cream); }
.footer__col address { margin-bottom: 0.4rem; }

.footer__ack {
  border-top: 1px solid rgba(243, 237, 224, 0.12);
  padding-top: 2rem;
  margin-bottom: 2rem;
  max-width: 46rem;
}

.footer__ack p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(243, 237, 224, 0.6); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  border-top: 1px solid rgba(243, 237, 224, 0.12);
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(243, 237, 224, 0.45);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal--d1 { transition-delay: 0.12s; }
.reveal--d2 { transition-delay: 0.24s; }
.reveal--d3 { transition-delay: 0.36s; }

.reveal.in-view { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1024px) {
  .guide__grid { grid-template-columns: repeat(2, 1fr); }
  .amenities__list { grid-template-columns: repeat(2, 1fr); }
  .booking__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .booking__card--primary { order: -1; }
  .forest__notes { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 900px) {
  .welcome__grid { grid-template-columns: 1fr; }
  .welcome__media { max-width: 520px; }
  .feature, .feature--flip { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
  .getting { grid-template-columns: 1fr; }
  .getting__photo { max-width: 420px; }
  .forest__grid { grid-template-columns: 1fr 1fr; }
  .forest__photo:nth-child(2) { transform: none; }
  .forest__photo:nth-child(3) { grid-column: span 2; aspect-ratio: 16 / 10; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 1.4rem; }
  .stats__item:nth-child(3) { border-left: 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }

  .nav__toggle { display: flex; z-index: 1100; }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--forest);
    color: var(--bone);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease-out), visibility 0s 0.5s;
  }

  .nav__menu.open { transform: translateY(0); visibility: visible; transition: transform 0.5s var(--ease-out); }
  .nav__menu a { font-size: 1.5rem; font-family: var(--font-display); }
  .nav__menu .nav__cta { font-family: var(--font-body); font-size: 1rem; }

  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .site-header.menu-open { background: transparent; color: var(--bone); box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }

  .hero__title { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .hero__scroll { display: none; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--w2 { grid-column: span 2; }

  .guide__grid { grid-template-columns: 1fr; }
  .amenities__list { grid-template-columns: 1fr; }
  .lightbox__prev { left: 0.6rem; }
  .lightbox__next { right: 0.6rem; }
}

@media (max-width: 480px) {
  .forest__grid { grid-template-columns: 1fr; }
  .forest__photo:nth-child(3) { grid-column: span 1; }
  .stats__item strong { font-size: 1.25rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
}
