/* ============================================
   RUSTIC DREAMS — DESIGN SYSTEM v2
   Peaceful lodge: deep forest dominant, copper accents
   ============================================ */

:root {
  --forest-deep: #1d2a22;
  --forest: #2a3a30;
  --forest-soft: #3b4d40;
  --forest-mist: #50654c;
  --moss: #6b7c5f;
  --parchment: #f5efe4;
  --parchment-warm: #ede4d3;
  --cream: #faf6ee;
  --bone: #e8dfcd;
  --copper: #b07442;
  --copper-deep: #8a5a32;
  --copper-soft: #c8946a;
  --ink: #1a1612;
  --ink-soft: #524a3e;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Outfit", -apple-system, "Helvetica Neue", sans-serif;

  --max-w: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --space-section: clamp(4.5rem, 10vw, 8.5rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.16 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--copper); color: var(--cream); }

/* TYPOGRAPHY */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--copper); }
.eyebrow--light { color: var(--copper-soft); }
.eyebrow--light::before { background: var(--copper-soft); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--forest-deep);
}

.display-1 {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.015em;
}
.display-1 em { font-style: italic; font-weight: 400; color: var(--copper); }

.display-2 {
  font-size: clamp(2.1rem, 5vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.display-2 em { font-style: italic; color: var(--copper); }

.heading-3 { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.1; }

.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 58ch;
}
.lead--large {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.65;
  font-weight: 300;
}

/* LAYOUT */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 2;
}

.section { padding-block: var(--space-section); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--forest { background: var(--forest-deep); color: var(--parchment); }
.section--forest h2, .section--forest h3, .section--forest h4 { color: var(--cream); }
.section--forest .lead { color: var(--parchment); }
.section--forest p { color: var(--parchment); }
.section--parchment { background: var(--parchment); }

/* Botanical pine-sprig divider */
.sprig {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.sprig::before, .sprig::after {
  content: "";
  width: clamp(60px, 12vw, 120px);
  height: 1px;
  background: var(--copper);
  opacity: 0.4;
}
.sprig svg { width: 64px; height: auto; opacity: 0.75; }

/* NAV */
.nav-shield {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 160px;
  z-index: 99;
  background: linear-gradient(180deg, rgba(29, 42, 34, 0.7) 0%, rgba(29, 42, 34, 0.2) 70%, rgba(29, 42, 34, 0) 100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav.is-scrolled ~ .nav-shield { opacity: 0; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.6rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 1rem;
  box-shadow: 0 1px 0 rgba(29, 42, 34, 0.08);
}

.nav__brand { display: flex; align-items: center; gap: 0.85rem; }
.nav__brand-mark {
  width: 56px; height: 56px;
  flex-shrink: 0;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out);
}
.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  transition: color 0.35s, text-shadow 0.35s, font-size 0.35s;
}
.nav__brand-text em {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  margin-top: 6px;
  color: var(--copper-soft);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 400;
}
.nav.is-scrolled .nav__brand-text { color: var(--forest-deep); text-shadow: none; }
.nav.is-scrolled .nav__brand-text em { color: var(--copper); }
.nav.is-scrolled .nav__brand-mark { width: 48px; height: 48px; }
@media (max-width: 920px) {
  .nav__brand-text { font-size: 1.25rem; }
  .nav__brand-text em { font-size: 0.58rem; letter-spacing: 0.28em; margin-top: 4px; }
  .nav__brand-mark { width: 44px; height: 44px; }
  .nav.is-scrolled .nav__brand-mark { width: 38px; height: 38px; }
}

.nav__links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cream);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.25s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav.is-scrolled .nav__link { color: var(--forest-deep); text-shadow: none; }

.nav__cta {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: rgba(29, 42, 34, 0.25);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav__cta:hover { background: var(--cream); color: var(--forest-deep); text-shadow: none; }
.nav.is-scrolled .nav__cta {
  border-color: var(--forest-deep);
  color: var(--forest-deep);
  text-shadow: none;
  background: transparent;
  backdrop-filter: none;
}
.nav.is-scrolled .nav__cta:hover { background: var(--forest-deep); color: var(--cream); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.nav.is-scrolled .nav__toggle { color: var(--forest-deep); text-shadow: none; }
.nav__toggle svg { width: 28px; height: 28px; }

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

.drawer {
  position: fixed; inset: 0;
  background: var(--forest-deep);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex; flex-direction: column;
  padding: 2rem var(--gutter);
}
.drawer.is-open { transform: translateX(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; }
.drawer__brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); letter-spacing: 0.05em; }
.drawer__brand em { font-style: italic; color: var(--copper-soft); font-size: 0.7rem; display: block; margin-top: 2px; letter-spacing: 0.3em; font-family: var(--font-body); font-weight: 400; text-transform: uppercase; }
.drawer__close { background: none; border: none; color: var(--cream); cursor: pointer; padding: 0.5rem; }
.drawer__close svg { width: 28px; height: 28px; }
.drawer__links { list-style: none; margin-top: 4rem; display: flex; flex-direction: column; gap: 1.75rem; }
.drawer__link { font-family: var(--font-display); font-size: 2rem; color: var(--cream); font-style: italic; }
.drawer__footer { margin-top: auto; padding-top: 2rem; border-top: 1px solid rgba(245, 239, 228, 0.15); color: var(--parchment); font-size: 0.9rem; line-height: 1.9; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.85rem;
  padding: 1.05rem 2.25rem;
  font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn > * { position: relative; z-index: 1; }
.btn--primary {
  background: var(--forest-deep); border-color: var(--forest-deep); color: var(--cream);
}
.btn--primary::before { background: var(--copper); }
.btn--primary:hover { border-color: var(--copper); }
.btn--copper { background: var(--copper); border-color: var(--copper); color: var(--cream); }
.btn--copper::before { background: var(--forest-deep); }
.btn--copper:hover { border-color: var(--forest-deep); }
.btn--ghost { color: var(--forest-deep); }
.btn--ghost:hover { color: var(--cream); }
.btn--ghost::before { background: var(--forest-deep); }
.btn--light { color: var(--cream); border-color: var(--cream); }
.btn--light:hover { color: var(--forest-deep); }
.btn--light::before { background: var(--cream); }
.btn__arrow { display: inline-block; transition: transform 0.4s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* HERO */
.hero {
  position: relative;
  height: 93vh; height: 93svh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 25% center;
  animation: heroZoom 14s var(--ease-out) forwards;
  /* Light grade — slight richness boost, no AI masking needed */
  filter: saturate(1.02) contrast(1.04) brightness(0.96);
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(29, 42, 34, 0.25) 0%, rgba(29, 42, 34, 0.05) 30%, rgba(29, 42, 34, 0.7) 100%),
    linear-gradient(90deg, rgba(29, 42, 34, 0.7) 0%, rgba(29, 42, 34, 0.25) 40%, rgba(29, 42, 34, 0) 70%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { color: var(--parchment); margin-bottom: 1.75rem; }
.hero__eyebrow::before { background: var(--copper-soft); }
.hero__title {
  color: var(--cream);
  max-width: 14ch;
  text-shadow: 0 2px 25px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
}
.hero__title em { color: var(--parchment-warm); }
.hero__sub {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--parchment);
  max-width: 48ch;
  font-weight: 300;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero__actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

.hero__meta {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 8vw, 6rem);
  z-index: 2;
  text-align: right;
  color: var(--parchment);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 2.2;
  display: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1100px) { .hero__meta { display: block; } }
.hero__meta span { color: var(--copper-soft); }

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--cream);
  padding-top: 9rem; padding-bottom: 4rem;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--shift-down .page-hero__media img { object-position: center 70%; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29, 42, 34, 0.55) 0%, rgba(29, 42, 34, 0.45) 60%, rgba(29, 42, 34, 0.78) 100%);
}
.page-hero__inner { position: relative; z-index: 2; width: 100%; }
.page-hero__eyebrow { color: var(--parchment); margin-bottom: 1.5rem; }
.page-hero__eyebrow::before { background: var(--copper-soft); }
.page-hero__title { color: var(--cream); max-width: 18ch; text-shadow: 0 2px 25px rgba(0, 0, 0, 0.35); }
.page-hero__title em { color: var(--parchment-warm); }

/* TICKER */
.ticker {
  background: var(--forest-deep);
  color: var(--parchment);
  padding-block: 1.2rem;
  overflow: hidden;
  border-block: 1px solid var(--forest);
}
.ticker__track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: tickerScroll 46s linear infinite;
  width: max-content;
}
.ticker__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  display: inline-flex; align-items: center; gap: 4rem;
}
.ticker__item::after {
  content: "✦"; color: var(--copper); font-style: normal; font-size: 0.85rem;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* EDITORIAL */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) { .editorial { grid-template-columns: 1fr; } }
.editorial--reverse .editorial__visual { order: 2; }
@media (max-width: 880px) { .editorial--reverse .editorial__visual { order: 0; } }

.editorial__visual { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.editorial__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s var(--ease-out); }
.editorial__visual:hover img { transform: scale(1.04); }
.editorial__visual--tall { aspect-ratio: 3/4; }
.editorial__visual--wide { aspect-ratio: 5/4; }

.editorial__caption {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  background: rgba(29, 42, 34, 0.7);
  padding: 0.4rem 0.85rem;
  backdrop-filter: blur(6px);
}

.editorial__body .eyebrow { margin-bottom: 1.5rem; }
.editorial__body h2,
.editorial__body .display-2 { margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem); }
.editorial__body .lead { margin-bottom: 1.5rem; }
.editorial__body p { margin-bottom: 1.25rem; }
.editorial__body p:last-of-type { margin-bottom: 2rem; }
.section--forest .editorial__body p { color: var(--parchment); }

/* ROOMS */
.rooms { display: grid; gap: clamp(3.5rem, 6vw, 5rem); }
.room {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.room--flip { grid-template-columns: 1fr 1.15fr; }
.room--flip .room__media { order: 2; }
@media (max-width: 880px) {
  .room, .room--flip { grid-template-columns: 1fr; }
  .room--flip .room__media { order: 0; }
}

.room__media { position: relative; aspect-ratio: 5/4; overflow: hidden; background: var(--forest); }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s var(--ease-out); }
.room:hover .room__media img { transform: scale(1.04); }

.room__tag {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: var(--cream);
  color: var(--forest-deep);
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.room__body h3 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 0.5rem; }
.section--forest .room__body h3 { color: var(--cream); }
.room__body .eyebrow { margin-bottom: 1.5rem; }
.room__body p { color: var(--ink-soft); }
.section--forest .room__body p { color: var(--parchment); }

.room__rate {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin: 1.75rem 0;
  padding-block: 1.25rem;
  border-block: 1px solid var(--bone);
}
.section--forest .room__rate { border-color: var(--forest-soft); }
.room__rate-figure { font-family: var(--font-display); font-size: 2.5rem; color: var(--copper-deep); }
.section--forest .room__rate-figure { color: var(--copper-soft); }
.room__rate-note { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.05em; }
.section--forest .room__rate-note { color: var(--parchment); opacity: 0.85; }

.room__features {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.section--forest .room__features { color: var(--parchment); }
.room__features li { padding-left: 1.25rem; position: relative; }
.room__features li::before {
  content: "✦"; position: absolute; left: 0;
  color: var(--copper); font-size: 0.7rem; top: 0.35rem;
}

/* SPECIALS INTRO — wide editorial pullquote, vertically centered in section */
.section--specials-intro {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.specials-intro {
  max-width: 1100px;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}
.specials-intro__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.3;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.005em;
}
.specials-intro__text em {
  color: var(--copper-soft);
  font-style: italic;
}

/* SPECIALS — 3 cols × 2 rows, image-backed tiles, title→description on hover */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tiles { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--forest);
  cursor: default;
}
.tile__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.5s var(--ease-out);
  filter: brightness(0.7) saturate(0.85);
}
.tile:hover .tile__img {
  transform: scale(1.06);
  filter: brightness(0.32) saturate(0.95);
}
.tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 42, 34, 0.2) 0%, rgba(29, 42, 34, 0.65) 100%);
  transition: background 0.5s var(--ease-out);
}
.tile:hover .tile__overlay {
  background: linear-gradient(180deg, rgba(29, 42, 34, 0.55) 0%, rgba(29, 42, 34, 0.78) 100%);
}

.tile__content {
  position: absolute;
  inset: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--cream);
  z-index: 2;
}

.tile__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--copper-soft);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s var(--ease-out);
}

.tile__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s var(--ease-out);
}
.tile:hover .tile__title {
  transform: translateY(-12px);
}

.tile__desc {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 0 clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--parchment);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out) 0.05s, transform 0.6s var(--ease-out) 0.05s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.tile:hover .tile__desc {
  opacity: 1;
  transform: translateY(0);
}

/* AMENITIES */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem 2.5rem;
  list-style: none;
}
.amenities li {
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--bone);
  font-size: 0.95rem;
  color: var(--forest-deep);
  position: relative;
}
.section--forest .amenities li { border-bottom-color: var(--forest-soft); color: var(--parchment); }
.amenities li::before {
  content: ""; position: absolute; left: 0; top: 1.45rem;
  width: 14px; height: 1px; background: var(--copper);
}

/* TESTIMONIAL */
.testimonial {
  background: var(--forest-deep);
  color: var(--cream);
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -3rem; left: 4%;
  font-family: var(--font-display);
  font-size: clamp(14rem, 28vw, 24rem);
  color: var(--forest-soft);
  line-height: 1; font-style: italic;
  pointer-events: none; z-index: 1;
}
.testimonial__inner { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  line-height: 1.35;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2.5rem;
}
.testimonial__author {
  font-size: 0.78rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--copper-soft);
}

/* CTA BAND */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 7rem);
  text-align: center;
  color: var(--cream);
}
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(29, 42, 34, 0.82); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream); margin-bottom: 2rem; }
.cta-band h2 em { color: var(--parchment-warm); }
.cta-band p { color: var(--parchment); max-width: 48ch; margin: 0 auto 2.5rem; }

/* CONTACT */
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 880px) {
  .contact-info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-info { grid-template-columns: 1fr; }
}
.contact-info__row {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 239, 228, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.contact-info__row:hover {
  background: rgba(176, 116, 66, 0.08);
  border-color: rgba(200, 148, 106, 0.35);
}
.contact-info__label {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin: 0;
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  color: var(--cream);
  line-height: 1.4;
  font-weight: 400;
  word-break: break-word;
}
.contact-info__value a {
  position: relative;
  transition: color 0.25s;
}
.contact-info__value a:hover { color: var(--copper-soft); }

.contact-map {
  aspect-ratio: 32/9;
  background: var(--forest);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
@media (max-width: 880px) { .contact-map { aspect-ratio: 16/9; } }
@media (max-width: 540px) { .contact-map { aspect-ratio: 4/3; } }
.contact-map iframe {
  width: 100%; height: 100%; border: none;
  filter: sepia(0.18) saturate(0.82) brightness(0.92);
}

/* FORM */
.form { display: grid; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__group { position: relative; }
.form__label {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 0.95rem 0;
  border: none; border-bottom: 1px solid var(--ink-soft);
  background: transparent;
  font-family: var(--font-body); font-size: 1rem;
  color: var(--forest-deep); font-weight: 300;
  transition: border-color 0.3s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus { outline: none; border-color: var(--copper); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'><path d='M1 1l5 5 5-5' fill='none' stroke='%23524a3e' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 12px;
  cursor: pointer;
}
.form__success {
  background: var(--forest-deep); color: var(--cream);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; display: none;
}
.form__success.is-visible { display: block; }

/* POLICIES */
.policy-list { display: grid; gap: 0; list-style: none; counter-reset: policy; }
.policy-list li {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 2.5rem;
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--bone);
  align-items: baseline;
}
.policy-list li::before {
  counter-increment: policy;
  content: counter(policy, decimal-leading-zero);
  font-family: var(--font-display); font-style: italic;
  font-size: 2rem; color: var(--copper);
}
.policy-list li:last-child { border-bottom: none; }
.policy-list strong {
  display: block;
  font-family: var(--font-display); font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}
.policy-list p {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
}
@media (max-width: 600px) {
  .policy-list li { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* GALLERY STRIP */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--forest-soft);
}
@media (max-width: 720px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
.gallery-strip__item { aspect-ratio: 1/1; overflow: hidden; background: var(--forest); }
.gallery-strip__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.gallery-strip__item:hover img { transform: scale(1.06); }

/* FOOTER */
.footer {
  background: var(--forest-deep);
  color: var(--parchment);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 1.5rem;
  align-items: start;
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; gap: 1.75rem; } }
.footer__brand {
  display: flex;
  align-items: flex-start;
}
.footer__brand-mark {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}
.footer__tag {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.82;
  margin: 0;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid var(--forest-soft);
  border-bottom: 1px solid var(--forest-soft);
}
.footer__association {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}
.footer__heading {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--copper-soft);
  margin-bottom: 1rem;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.92rem; }
.footer__list a { transition: color 0.2s; opacity: 0.85; }
.footer__list a:hover { color: var(--cream); opacity: 1; }
.footer__bottom {
  padding-top: 1.25rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem; letter-spacing: 0.08em;
  opacity: 0.65;
}
.footer__social { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245, 239, 228, 0.3);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s;
}
.footer__social a:hover { background: var(--copper); border-color: var(--copper); }
.footer__social svg { width: 16px; height: 16px; }

/* MODAL */
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: var(--gutter);
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(29, 42, 34, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.4s var(--ease-out);
}
.modal__panel {
  position: relative;
  background: var(--cream);
  max-width: 540px; width: 100%;
  padding: clamp(2rem, 4vw, 3.5rem);
  z-index: 1;
  animation: panelIn 0.5s var(--ease-out);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--forest-deep);
}
.modal__close svg { width: 22px; height: 22px; }
.modal__eyebrow { margin-bottom: 1rem; }
.modal h3 { margin-bottom: 1rem; }
.modal h3 em { font-style: italic; color: var(--copper); }
.modal__text { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.7; }
.modal__actions { display: grid; gap: 1rem; }
.modal__action {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--parchment-warm);
  border: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
  text-decoration: none;
  color: var(--forest-deep);
}
.modal__action:hover { background: var(--forest-deep); color: var(--cream); }
.modal__action:hover .modal__action-label { color: var(--copper-soft); }
.modal__action-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.4s;
}
.modal__action:hover .modal__action-icon { background: var(--forest-soft); }
.modal__action-icon svg { width: 20px; height: 20px; }
.modal__action-text { display: flex; flex-direction: column; }
.modal__action-label {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-soft);
  transition: color 0.4s;
}
.modal__action-value { font-family: var(--font-display); font-size: 1.25rem; }
.modal__note {
  margin-top: 1.75rem; font-size: 0.8rem;
  color: var(--ink-soft); text-align: center; line-height: 1.6;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

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