:root {
  --forest-950: #0b251e;
  --forest-900: #113329;
  --forest-800: #173d32;
  --forest-700: #285446;
  --cream: #f6f1e7;
  --cream-2: #eee6d7;
  --sand: #d7c4a6;
  --terracotta: #c97855;
  --terracotta-dark: #a9563a;
  --ink: #1d2b27;
  --muted: #68736e;
  --white: #fffdf8;
  --line: rgba(20, 55, 45, .15);
  --display: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --radius: 22px;
  --shadow: 0 28px 80px rgba(12, 38, 30, .15);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid #e9a27f;
  outline-offset: 4px;
}

::selection { background: var(--terracotta); color: var(--white); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(54px, 6.4vw, 96px) 0; }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest-900);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta-dark);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h1, h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .99;
}

h1 em, h2 em { font-weight: 500; }
h2 { margin-bottom: 20px; font-size: clamp(2.15rem, 3.75vw, 3.65rem); }

.lead {
  color: var(--forest-900);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.1;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--terracotta); color: var(--white); }
.button--primary:hover { background: var(--terracotta-dark); }
.button--dark { background: var(--forest-900); color: var(--white); }
.button--dark:hover { background: var(--forest-700); }
.button--ghost { border-color: rgba(255, 255, 255, .5); color: var(--white); }
.button--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--forest-800);
  font-size: .92rem;
  font-weight: 600;
}

.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }

/* Entry */
.intro {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--forest-900);
  color: var(--cream);
  animation: intro-exit .9s cubic-bezier(.77, 0, .18, 1) 1.85s forwards;
}

.intro__grain,
.contact__backdrop {
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  pointer-events: none;
}

.intro__brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  animation: intro-brand 1.45s cubic-bezier(.2, .75, .25, 1) .15s forwards;
}

.intro__eyebrow,
.intro__caption {
  font-size: .67rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.intro__logo {
  width: clamp(158px, 18vw, 210px);
  height: auto;
  margin: 16px 0 18px;
  padding: 4px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.intro__line { width: 1px; height: 56px; margin-bottom: 18px; background: var(--terracotta); transform-origin: top; animation: line-grow .75s ease .55s both; }
.intro__panel { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.1); }
.intro__panel--left { left: 12vw; }
.intro__panel--right { right: 12vw; }

@keyframes intro-brand {
  0% { opacity: 0; transform: translateY(22px); }
  35%, 78% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-16px); }
}

@keyframes line-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes intro-exit { to { visibility: hidden; transform: translateY(-100%); } }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgba(246, 241, 231, .94);
  box-shadow: 0 8px 40px rgba(17, 51, 41, .06);
  color: var(--forest-900);
  backdrop-filter: blur(18px);
}

.site-header__inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand__logo {
  width: 64px;
  height: 64px;
  padding: 2px;
  border-radius: 50%;
  background: rgba(246,241,231,.94);
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(8,35,26,.1));
}
.brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: .92rem;
  font-style: italic;
}

.brand__copy { display: flex; flex-direction: column; gap: 6px; }
.brand__copy strong { font-family: var(--display); font-size: 1.03rem; font-weight: 500; letter-spacing: -.02em; }
.brand__copy small { font-size: .58rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.main-nav > a:not(.button) { position: relative; font-size: .78rem; font-weight: 600; }
.main-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.button--nav { min-height: 43px; padding: 11px 20px; border-color: currentColor; }
.site-header:not(.is-scrolled):not(.is-menu-open) .button--nav { background: rgba(255,255,255,.1); }
.site-header.is-scrolled .button--nav { background: var(--forest-900); color: var(--white); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .25s ease; }

/* Hero */
.hero { position: relative; min-height: max(100svh, 660px); display: flex; align-items: center; overflow: hidden; background: var(--forest-950); color: var(--white); }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; transform: scale(1.045); animation: hero-settle 2.1s cubic-bezier(.2,.7,.25,1) 1.9s forwards; }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,25,19,.78) 0%, rgba(5,25,19,.4) 47%, rgba(5,25,19,.2) 100%), linear-gradient(0deg, rgba(5,25,19,.52), transparent 52%); }
.hero__content { position: relative; z-index: 1; padding-top: clamp(125px, 15vh, 165px); padding-bottom: clamp(58px, 7vh, 82px); }
.hero__eyebrow { color: #f0c2a8; }
.hero h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(3rem, 5.9vw, 5.9rem); }
.hero h1 em { color: #efd6bb; }
.hero__lead { max-width: 570px; margin-bottom: 29px; color: rgba(255,255,255,.83); font-size: clamp(.96rem, 1.3vw, 1.1rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.scroll-cue { position: absolute; z-index: 2; bottom: 34px; left: 50%; display: flex; align-items: center; flex-direction: column; gap: 10px; font-size: .61rem; letter-spacing: .19em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { display: block; width: 1px; height: 38px; overflow: hidden; background: rgba(255,255,255,.35); }
.scroll-cue i::after { display: block; width: 100%; height: 55%; background: var(--white); content: ""; animation: scroll-line 1.8s ease infinite; }
.hero__place { position: absolute; z-index: 2; right: 34px; bottom: 36px; margin: 0; font-size: .61rem; letter-spacing: .19em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }

@keyframes hero-settle { to { transform: scale(1); } }
@keyframes scroll-line { from { transform: translateY(-110%); } to { transform: translateY(190%); } }

/* Welcome */
.welcome { overflow: hidden; }
.welcome__grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(46px, 6.8vw, 92px); }
.welcome__copy p:not(.eyebrow) { max-width: 560px; color: var(--muted); }
.welcome__copy .lead { color: var(--ink); }
.welcome__visual { position: relative; min-height: 470px; }
.image-frame { margin: 0; overflow: hidden; border-radius: var(--radius); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame--main { position: absolute; inset: 0 0 50px 12%; box-shadow: var(--shadow); }
.image-frame--main img { object-position: center; }
.image-frame--floating { position: absolute; z-index: 2; bottom: 0; left: -5%; width: 45%; height: 180px; border: 6px solid var(--cream); border-radius: 18px; box-shadow: 0 20px 50px rgba(15,45,35,.2); }
.round-note { position: absolute; z-index: 3; right: -34px; bottom: 34px; display: grid; width: 96px; height: 96px; place-items: center; border-radius: 50%; background: var(--terracotta); color: var(--white); font-size: .56rem; font-weight: 600; letter-spacing: .12em; line-height: 1.2; text-align: center; text-transform: uppercase; transform: rotate(7deg); }
.round-note b { color: var(--forest-900); }

.amenity-ribbon { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.amenity-ribbon__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.amenity-ribbon span { padding: 21px 16px; border-right: 1px solid var(--line); color: var(--forest-800); font-size: .72rem; font-weight: 600; text-align: center; }
.amenity-ribbon span:last-child { border-right: 0; }
.amenity-ribbon b { margin-right: 9px; color: var(--terracotta); font-size: .62rem; }

/* Headings and cabins */
.section-heading { margin-bottom: clamp(32px, 4vw, 50px); }
.section-heading--split { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 50px; }
.section-heading--split h2 { max-width: 740px; margin-bottom: 0; }
.section-heading--split > p { max-width: 390px; margin-bottom: 5px; color: var(--muted); }

.cabins { background: var(--forest-900); color: var(--white); }
.cabins .eyebrow { color: #eca887; }
.cabins .section-heading--split > p { color: rgba(255,255,255,.63); }
.cabins__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cabin-card { position: relative; min-height: 340px; padding: clamp(23px, 2.2vw, 31px); overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.035); transition: background .3s ease, transform .3s ease; }
.cabin-card:hover { background: rgba(255,255,255,.08); transform: translateY(-6px); }
.cabin-card--featured { background: var(--cream); color: var(--forest-900); transform: translateY(-20px); }
.cabin-card--featured:hover { background: var(--white); transform: translateY(-26px); }
.cabin-card__number { position: absolute; top: 30px; right: 30px; color: rgba(255,255,255,.42); font-size: .66rem; letter-spacing: .14em; }
.cabin-card--featured .cabin-card__number { color: var(--muted); }
.cabin-card__tag { position: absolute; top: 28px; left: 30px; padding: 5px 11px; border-radius: 999px; background: var(--terracotta); color: var(--white); font-size: .59rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.cabin-card__capacity { display: flex; align-items: baseline; gap: 10px; margin: 42px 0 18px; }
.cabin-card__capacity strong { font-family: var(--display); font-size: 4.35rem; font-weight: 500; letter-spacing: -.08em; line-height: .8; }
.cabin-card__capacity span { color: rgba(255,255,255,.58); font-size: .7rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.cabin-card--featured .cabin-card__capacity span { color: var(--muted); }
.cabin-card h3 { margin-bottom: 9px; font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.cabin-card p { color: rgba(255,255,255,.63); font-size: .82rem; }
.cabin-card--featured p { color: var(--muted); }
.cabin-card ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 26px; padding: 0; list-style: none; }
.cabin-card li { padding: 5px 10px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; font-size: .63rem; text-transform: uppercase; }
.cabin-card--featured li { border-color: var(--line); }
.cabin-card > a { position: absolute; right: 28px; bottom: 22px; left: 28px; display: flex; justify-content: space-between; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.16); font-size: .7rem; font-weight: 600; }
.cabin-card--featured > a { border-color: var(--line); }
.cabins__note { margin: 32px 0 0; color: rgba(255,255,255,.5); font-size: .72rem; text-align: center; }

/* Services */
.services__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 6vw, 88px); }
.services__intro > p:not(.eyebrow) { max-width: 480px; color: var(--muted); }
.services__intro figure { height: 260px; margin: 28px 0 0; overflow: hidden; border-radius: var(--radius); }
.services__intro figure img { width: 100%; height: 100%; object-fit: cover; }
.service-group + .service-group { margin-top: 32px; }
.service-group h3 { margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.feature-icon { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--cream-2); color: var(--terracotta-dark); }
.feature-list div { display: flex; flex: 1; align-items: baseline; justify-content: space-between; gap: 20px; }
.feature-list strong { font-size: .88rem; }
.feature-list small { color: var(--muted); font-size: .73rem; text-align: right; }
.compact-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.compact-features span { position: relative; padding: 11px 0 11px 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.compact-features span::before { position: absolute; top: 19px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); content: ""; }

/* Gallery */
.gallery { background: #eae2d4; }
.section-heading--gallery { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading--gallery h2 { margin-bottom: 0; }
.gallery-filters { display: flex; gap: 8px; padding-bottom: 8px; }
.gallery-filters button { padding: 9px 16px; border: 1px solid rgba(17,51,41,.2); border-radius: 999px; background: transparent; cursor: pointer; font-size: .72rem; font-weight: 600; transition: .25s ease; }
.gallery-filters button:hover,
.gallery-filters button.is-active { border-color: var(--forest-900); background: var(--forest-900); color: var(--white); }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-auto-rows: 180px; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-card { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 16px; background: var(--forest-900); cursor: zoom-in; }
.gallery-card--wide { grid-column: span 2; }
.gallery-card--tall { grid-row: span 2; }
.gallery-card[hidden] { display: none; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s ease, transform .65s cubic-bezier(.2,.7,.25,1); }
.gallery-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,26,20,.55), transparent 58%); content: ""; opacity: 0; transition: opacity .3s ease; }
.gallery-card span { position: absolute; z-index: 2; right: 18px; bottom: 15px; color: var(--white); font-size: .67rem; font-weight: 600; letter-spacing: .1em; opacity: 0; text-transform: uppercase; transform: translateY(7px); transition: opacity .3s ease, transform .3s ease; }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card:hover::after, .gallery-card:hover span { opacity: 1; }
.gallery-card:hover span { transform: translateY(0); }
.gallery__hint { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin: 20px 3px 0; color: var(--muted); font-size: .67rem; }

/* Location */
.location { position: relative; min-height: 520px; background: #dcd6ca; }
.location__map { position: absolute; inset: 0; filter: grayscale(1) sepia(.12) contrast(.92); }
.location__map::after { position: absolute; inset: 0; background: rgba(19,52,42,.08); content: ""; pointer-events: none; }
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__card { position: absolute; z-index: 2; top: 50%; left: max(24px, calc((100vw - 1180px) / 2)); width: min(440px, calc(100vw - 48px)); padding: clamp(34px, 4.2vw, 56px); border-radius: var(--radius); background: rgba(246,241,231,.96); box-shadow: var(--shadow); transform: translateY(-50%); backdrop-filter: blur(10px); }
.js .location__card.reveal { transform: translateY(calc(-50% + 26px)); }
.js .location__card.reveal.is-visible { transform: translateY(-50%); }
.location__card h2 { font-size: clamp(2.7rem, 4.4vw, 4.25rem); }
.location__card > p:not(.eyebrow) { color: var(--muted); }
.location__card address { display: flex; flex-direction: column; margin: 28px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .82rem; font-style: normal; }

/* Nearby */
.nearby__layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.nearby__image { position: relative; height: 410px; margin: 0; overflow: hidden; border-radius: var(--radius); }
.nearby__image img { width: 100%; height: 100%; object-fit: cover; }
.nearby__image::after { position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent,rgba(8,28,22,.6)); content: ""; }
.nearby__image figcaption { position: absolute; z-index: 2; bottom: 24px; left: 26px; color: var(--white); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.places { margin: 0; padding: 0; list-style: none; }
.places li { display: flex; align-items: baseline; gap: 18px; padding: 13px 3px; border-bottom: 1px solid var(--line); transition: padding .25s ease, color .25s ease; }
.places li:hover { padding-left: 10px; color: var(--terracotta-dark); }
.places span { color: var(--terracotta); font-size: .61rem; font-weight: 600; letter-spacing: .13em; }
.places strong { font-family: var(--display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 500; }

/* Contact */
.contact { position: relative; overflow: hidden; padding: clamp(58px, 6.8vw, 98px) 0; background: var(--forest-900); color: var(--white); }
.contact::before { position: absolute; top: -180px; right: -130px; width: 540px; height: 540px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.contact__backdrop { opacity: .04; }
.contact__grid { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 6vw, 82px); }
.contact .eyebrow { color: #eca887; }
.contact__copy h2 { font-size: clamp(2.55rem, 4.2vw, 4.2rem); }
.contact__copy > p:not(.eyebrow) { color: rgba(255,255,255,.63); }
.contact__direct { display: flex; flex-direction: column; margin-top: 28px; }
.contact__direct a { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact__direct small { display: block; margin-bottom: 5px; color: #eca887; font-size: .61rem; letter-spacing: .13em; text-transform: uppercase; }
.contact__direct span { font-size: .86rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 17px; padding: clamp(23px, 2.7vw, 34px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: rgba(255,255,255,.65); font-size: .69rem; font-weight: 600; }
.form-field label span { font-weight: 400; opacity: .55; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-radius: 0; outline: none; background: transparent; color: var(--white); font-size: .88rem; transition: border-color .2s ease; }
.form-field input, .form-field select { height: 40px; }
.form-field textarea { min-height: 66px; padding-top: 9px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #eca887; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.35); }
.form-field select option { background: var(--forest-900); color: var(--white); }
.form-field input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .65; }
.form-submit { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.form-submit p { max-width: 240px; margin: 0; color: rgba(255,255,255,.4); font-size: .63rem; line-height: 1.4; }
.form-status { margin: -8px 0 0; color: #f2c4aa; font-size: .76rem; }

/* Footer */
.site-footer { padding: 55px 0 24px; background: var(--forest-950); color: rgba(255,255,255,.7); }
.site-footer__top { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 70px; padding-bottom: 60px; }
.brand--footer { color: var(--white); }
.brand--footer .brand__logo { width: 88px; height: 88px; padding: 4px; }
.site-footer__top > div > p { margin: 20px 0 0; font-family: var(--display); font-size: 1.1rem; font-style: italic; }
.site-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: .78rem; }
.site-footer nav a:hover, .site-footer address a:hover { color: var(--white); }
.site-footer address { font-size: .78rem; font-style: normal; line-height: 1.9; }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .63rem; }
.site-footer__bottom > a:last-child { justify-self: end; }
.site-footer__credit a { color: var(--white); font-weight: 600; letter-spacing: .08em; }
.site-footer__credit a:hover { color: #eca887; }

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 10px 18px 10px 13px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: #25a95a;
  box-shadow: 0 14px 40px rgba(8,45,28,.28);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  transition: background .25s ease, transform .25s ease;
}

.whatsapp-float:hover { background: #168b45; transform: translateY(-3px); }
.whatsapp-float svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.whatsapp-float svg path + path { stroke-width: 1.25; }

/* Lightbox */
.lightbox {
  width: min(94vw, 1560px);
  height: 90dvh;
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: #071712;
  color: var(--white);
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.lightbox[open] { animation: lightbox-in .28s ease both; }
.lightbox::backdrop { background: rgba(4,16,12,.88); backdrop-filter: blur(8px); }
.lightbox figure { display: grid; height: 100%; grid-template-rows: 1fr auto; margin: 0; padding: 22px 72px 18px; }
.lightbox__image { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox__image.is-changing { opacity: .35; }
.lightbox figcaption { display: flex; justify-content: space-between; gap: 20px; padding-top: 13px; color: rgba(255,255,255,.68); font-size: .72rem; }
.lightbox__counter { font-variant-numeric: tabular-nums; }
.lightbox button { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(7,23,18,.64); color: var(--white); cursor: pointer; backdrop-filter: blur(10px); transition: background .2s ease, transform .2s ease; }
.lightbox button:hover { background: var(--terracotta); transform: scale(1.05); }
.lightbox__close { top: 18px; right: 18px; width: 43px; height: 43px; font-size: 1.55rem; font-weight: 300; }
.lightbox__arrow { top: 50%; width: 46px; height: 46px; transform: translateY(-50%); }
.lightbox__arrow:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__arrow--prev { left: 16px; }
.lightbox__arrow--next { right: 16px; }

@keyframes lightbox-in { from { opacity: 0; transform: scale(.975); } }

/* Reveals */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.25,1); }
.js .reveal--delay { transition-delay: .12s; }
.js .reveal--delay-2 { transition-delay: .22s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; top: 76px; right: 0; left: 0; display: flex; width: 100vw; max-width: none; height: calc(100dvh - 76px); align-items: stretch; flex-direction: column; gap: 0; padding: 24px 18px 28px; overflow-x: hidden; overflow-y: auto; background: var(--cream); color: var(--forest-900); opacity: 0; pointer-events: none; transform: translateY(-16px); transition: opacity .25s ease, transform .25s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.button) { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.55rem, 5vw, 2.15rem); font-weight: 500; line-height: 1.15; text-align: left; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { width: 100%; margin-top: auto; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .welcome__grid, .services__grid, .contact__grid { grid-template-columns: 1fr; }
  .welcome__copy { max-width: 620px; }
  .welcome__visual { min-height: 440px; }
  .round-note { right: -12px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
  .cabins__grid { grid-template-columns: 1fr; gap: 15px; }
  .cabin-card { min-height: 330px; }
  .cabin-card--featured { transform: none; }
  .cabin-card--featured:hover { transform: translateY(-6px); }
  .services__grid { gap: 70px; }
  .services__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
  .services__intro .eyebrow, .services__intro h2 { grid-column: 1 / -1; }
  .services__intro figure { height: 260px; margin-top: 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .nearby__layout { grid-template-columns: 1fr; }
  .nearby__image { height: 360px; }
  .contact__grid { gap: 55px; }
}

@media (max-width: 700px) {
  :root { --container: calc(100% - 32px); --radius: 17px; }
  html { scroll-padding-top: 74px; }
  .section { padding: 54px 0; }
  .site-header__inner { min-height: 74px; }
  .brand__mark { width: 39px; height: 39px; }
  .brand__logo { width: 54px; height: 54px; }
  .brand__copy strong { font-size: 1rem; }
  .brand__copy small { font-size: .52rem; }
  .main-nav { top: 74px; height: calc(100dvh - 74px); padding: 20px 16px 22px; }
  .hero { min-height: 690px; }
  .hero__media { object-position: 58% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(5,25,19,.8) 0%, rgba(5,25,19,.45) 75%, rgba(5,25,19,.35)); }
  .hero__content { padding-top: 118px; padding-bottom: 74px; }
  .hero h1 { font-size: clamp(2.9rem, 12.5vw, 4.4rem); }
  .hero__lead { font-size: .96rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .scroll-cue { display: none; }
  .hero__place { display: none; }
  .welcome__grid { gap: 54px; }
  .welcome__visual { min-height: 390px; }
  .image-frame--main { inset: 0 0 48px 7%; }
  .image-frame--floating { left: -3px; width: 50%; height: 175px; border-width: 5px; }
  .round-note { right: -6px; bottom: 15px; width: 86px; height: 86px; font-size: .52rem; }
  .amenity-ribbon__inner { grid-template-columns: 1fr 1fr; }
  .amenity-ribbon span:nth-child(2) { border-right: 0; }
  .amenity-ribbon span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { margin-bottom: 45px; }
  .cabin-card { min-height: 340px; padding: 25px; }
  .cabin-card__capacity strong { font-size: 4.5rem; }
  .cabin-card > a { right: 29px; bottom: 28px; left: 29px; }
  .services__intro { display: block; }
  .services__intro figure { height: 300px; margin-top: 35px; }
  .feature-list div { align-items: flex-start; flex-direction: column; gap: 2px; }
  .feature-list small { text-align: left; }
  .compact-features { grid-template-columns: 1fr; }
  .section-heading--gallery { align-items: flex-start; flex-direction: column; }
  .gallery-filters { width: 100%; overflow-x: auto; }
  .gallery-grid { grid-auto-rows: 165px; grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-card--wide { grid-column: span 2; }
  .gallery-card--tall { grid-row: span 2; }
  .gallery-card span, .gallery-card::after { display: none; }
  .location { min-height: 690px; }
  .location__map { top: 330px; }
  .location__card { top: 30px; right: 16px; left: 16px; width: auto; transform: none; }
  .js .location__card.reveal { transform: translateY(26px); }
  .js .location__card.reveal.is-visible { transform: translateY(0); }
  .nearby__image { height: 340px; }
  .contact-form { grid-template-columns: 1fr; gap: 20px; padding: 27px 22px; }
  .form-field, .form-field--full { grid-column: 1; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .site-footer__top { grid-template-columns: 1fr; gap: 38px; }
  .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; }
  .lightbox { width: 96vw; height: 88dvh; border-radius: 13px; }
  .lightbox figure { padding: 58px 14px 16px; }
  .lightbox__arrow { top: auto; bottom: 12px; }
  .lightbox__arrow--prev { left: 15px; }
  .lightbox__arrow--next { right: 15px; }
  .lightbox figcaption { min-height: 45px; justify-content: center; padding: 12px 55px 0; text-align: center; }
  .lightbox__counter { display: none; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; min-height: 52px; justify-content: center; padding: 0; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.85rem; }
  .gallery-grid { grid-auto-rows: 145px; }
  .gallery-filters button { padding-inline: 13px; }
  .site-footer__bottom { grid-template-columns: 1fr; align-items: start; gap: 10px; }
  .site-footer__bottom > a:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .intro { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}
