/* Villa Gaspar — v3 elite */

:root {
  --ivory: #FAF7F0;
  --sand: #F1EAD9;
  --sand-deep: #E4D8BE;
  --terracotta: #B05F38;
  --terracotta-deep: #8F4A2A;
  --pine: #2E4237;
  --pine-deep: #1C2B22;
  --pine-black: #131E17;
  --ink: #22201B;
  --ink-soft: #55503F;
  --white: #FFFFFF;
  --line: #DCD2BC;
  --line-dark: rgba(250, 247, 240, .14);
  --gold: #A9854B;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1280px;
  --max-text: 720px;
  --pad: clamp(20px, 5vw, 72px);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --dur-slow: 1.1s;
  --dur-med: .6s;

  --z-nav: 100;
  --z-modal-backdrop: 200;
  --z-modal: 210;
  --z-lightbox: 220;
  --z-skip: 300;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

html, body { max-width: 100%; overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--pine-deep);
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

p { text-wrap: pretty; }

em, .italic { font-family: var(--serif); font-style: italic; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  width: 100%;
}
.container--text { max-width: var(--max-text); }

.section { padding: clamp(72px, 11vw, 168px) 0; }
.section--flush { padding: 0; }
.section--pine { background: var(--pine-deep); color: var(--sand); }
.section--pine h2, .section--pine h3 { color: var(--ivory); }
.section--sand { background: var(--sand); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--pine .lede { color: rgba(241, 234, 217, .82); }

/* Oversized serif statement — the editorial voice of the site */
.statement {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.9rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--pine-deep);
  max-width: 26ch;
  text-wrap: balance;
}
.statement em { font-style: italic; color: var(--terracotta); }
.section--pine .statement { color: var(--ivory); }

.rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 26px 0 32px;
  border: none;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  background: var(--pine-deep);
  color: var(--sand);
  padding: 12px 20px;
  font-weight: 700;
  font-size: .9rem;
  z-index: var(--z-skip);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out), letter-spacing var(--dur-med) var(--ease-out);
}
.btn:hover { letter-spacing: .09em; }
.btn:active { transform: scale(.985); }
.btn--primary { background: var(--terracotta); color: var(--white); }
.btn--primary:hover { background: var(--terracotta-deep); }
.btn--outline { background: transparent; border-color: var(--pine-deep); color: var(--pine-deep); }
.btn--outline:hover { background: var(--pine-deep); color: var(--sand); }
.btn--on-dark { border-color: rgba(250,247,240,.6); color: var(--ivory); }
.btn--on-dark:hover { background: var(--ivory); color: var(--pine-deep); border-color: var(--ivory); }
.btn--small { padding: 11px 22px; font-size: .8rem; }

/* Text link with drawn underline */
.tlink {
  position: relative;
  font-weight: 700;
  color: var(--terracotta);
  padding-bottom: 3px;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform var(--dur-med) var(--ease-out);
}
.tlink:hover::after { transform: scaleX(0); transform-origin: left; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  transition: background .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(250, 247, 240, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo {
  position: relative;
  display: block;
  height: 48px;
  width: 160px;
}
.nav__logo img {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  height: 64px;
  width: auto;
  max-width: none;
  transition: opacity .45s var(--ease-out);
}
.nav__logo img.logo-gray { opacity: 0; }
.nav.is-scrolled .nav__logo img.logo-white,
body.page-inner:not(.has-image-hero) .nav__logo img.logo-white { opacity: 0; }
.nav.is-scrolled .nav__logo img.logo-gray,
body.page-inner:not(.has-image-hero) .nav__logo img.logo-gray { opacity: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  min-width: 0;
}
.nav__links a { position: relative; color: var(--white); transition: color .45s var(--ease-out), opacity .2s ease; }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right var(--dur-med) var(--ease-out);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a[aria-current="page"]:not(.nav__cta)::after { right: 0; }
.nav.is-scrolled .nav__links a,
body.page-inner:not(.has-image-hero) .nav__links a { color: var(--pine-deep); }

.nav__cta { border: 1px solid rgba(255,255,255,.7); color: var(--white); }
.nav.is-scrolled .nav__cta,
body.page-inner:not(.has-image-hero) .nav__cta { border-color: var(--pine-deep); color: var(--pine-deep); }
.nav.is-scrolled .nav__cta:hover,
body.page-inner:not(.has-image-hero) .nav__cta:hover { background: var(--pine-deep); color: var(--sand); }

.nav__lang {
  font-size: .8rem !important;
  opacity: .75;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 2px;
  letter-spacing: .1em;
}
.nav__lang:hover { opacity: 1; }
.nav__lang::after { display: none !important; }

.nav__burger { display: none; }

/* ============ HERO (home) ============ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  animation: kenburns 22s var(--ease-out) both;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19,30,23,.32) 0%, rgba(19,30,23,0) 30%),
    linear-gradient(180deg, rgba(19,30,23,0) 42%, rgba(19,30,23,.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(56px, 8vh, 96px);
  max-width: 900px;
  width: 100%;
}
.hero__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--sand);
  margin-bottom: 18px;
  opacity: 0;
  animation: heroline 1.2s var(--ease-out) .3s forwards;
}
.hero h1 {
  color: var(--white);
  overflow-wrap: break-word;
  opacity: 0;
  animation: heroline 1.2s var(--ease-out) .5s forwards;
}
@keyframes heroline {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__meta {
  margin-top: 30px;
  display: flex;
  gap: 14px 0;
  flex-wrap: wrap;
  align-items: center;
  font-size: .92rem;
  letter-spacing: .04em;
  min-width: 0;
  opacity: 0;
  animation: heroline 1.2s var(--ease-out) .75s forwards;
}
.hero__meta span { display: inline-flex; align-items: center; }
.hero__meta span + span::before {
  content: "";
  display: inline-block;
  width: 1px; height: 14px;
  background: rgba(255,255,255,.4);
  margin: 0 18px;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
  opacity: 0;
  animation: heroline 1.2s var(--ease-out) .95s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 30px; right: var(--pad);
  z-index: 2;
  color: var(--white);
  opacity: .7;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 44px;
  background: currentColor;
  animation: scrollpulse 2.4s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scrollpulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ Inner page hero with image ============ */
.page-hero {
  position: relative;
  min-height: clamp(380px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,30,23,.35) 0%, rgba(19,30,23,.14) 40%, rgba(19,30,23,.78) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: clamp(40px, 6vh, 72px); }
.page-hero h1 { color: var(--white); }
.page-hero .hero__kicker { animation: none; opacity: 1; color: var(--sand); }
.page-hero .lede { color: rgba(250,247,240,.85); margin-top: 14px; }

/* ============ Editorial split ============ */
.editorial {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.editorial--flip { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.editorial__media { position: relative; }
.editorial__media img { width: 100%; height: auto; }
.editorial__caption {
  margin-top: 14px;
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
}

.media-tall { aspect-ratio: 4 / 5; object-fit: cover; }
.media-wide { aspect-ratio: 16 / 10; object-fit: cover; }

/* Image reveal mask */
.img-reveal { overflow: hidden; }
.img-reveal img {
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-out);
}
.img-reveal.is-visible img { transform: scale(1); }

/* ============ Full-bleed image break ============ */
.image-break {
  position: relative;
  min-height: clamp(420px, 70vh, 760px);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
@supports (-webkit-touch-callout: none) {
  .image-break { background-attachment: scroll; }
}
.image-break::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(19, 30, 23, .46);
}
.image-break__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: 800px;
}
.image-break__content .statement { color: var(--white); margin: 0 auto; }
.image-break__attr {
  margin-top: 22px;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}

/* ============ Gallery (asymmetric) ============ */
.gallery-elite {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 20px);
}
.gallery-elite a { display: block; overflow: hidden; cursor: zoom-in; }
.gallery-elite img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.gallery-elite a:hover img { transform: scale(1.05); }
.ge-a { grid-column: span 7; aspect-ratio: 16 / 11; }
.ge-b { grid-column: span 5; aspect-ratio: 4 / 5; }
.ge-c { grid-column: span 4; aspect-ratio: 1; }
.ge-d { grid-column: span 4; aspect-ratio: 1; }
.ge-e { grid-column: span 4; aspect-ratio: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(19, 30, 23, .93);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease-out);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 14px;
  opacity: .8;
  transition: opacity .2s ease;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: rgba(250,247,240,.7);
  font-size: .82rem;
  letter-spacing: .12em;
}

/* ============ Feature list ============ */
.feature-list { list-style: none; display: grid; gap: 16px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; padding-bottom: 0; }
.feature-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  transform: translateY(-2px);
}
.section--pine .feature-list li { border-color: var(--line-dark); }

/* ============ Amenities ============ */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: 40px;
}
.amenities h3 { margin-bottom: 16px; }
.amenity-list { list-style: none; display: grid; gap: 10px; }
.amenity-list li {
  position: relative;
  padding-left: 20px;
  font-size: .95rem;
  color: var(--ink-soft);
}
.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 1px;
  background: var(--terracotta);
}

/* ============ FAQ ============ */
.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px) clamp(32px, 5vw, 88px);
  margin-top: 48px;
}
.faq__item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.faq__item p { color: var(--ink-soft); font-size: .97rem; }

/* ============ Reviews ============ */
.review-score { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; min-width: 0; flex-wrap: wrap; }
.review-score__stars { color: var(--gold); font-size: 1.25rem; letter-spacing: 3px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 1px 2px rgba(34, 32, 27, .05);
  transition: box-shadow .5s var(--ease-out), transform .5s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-card:hover {
  box-shadow: 0 24px 48px -20px rgba(28, 43, 34, .22);
  transform: translateY(-4px);
}
.review-card__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; display: block; }
.review-card__excerpt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__meta { margin-top: auto; padding-top: 18px; font-size: .82rem; letter-spacing: .06em; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; }
.review-card__expand {
  margin-top: 16px;
  background: none;
  border: none;
  padding: 0 0 3px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--terracotta);
  cursor: pointer;
  border-bottom: 1px solid currentColor;
  transition: opacity .2s ease;
}
.review-card__expand:hover { opacity: .7; }
.review-source-note { margin-top: 12px; font-size: .84rem; color: var(--ink-soft); }
.review-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  min-width: 0;
  font-size: .92rem;
  color: var(--ink-soft);
}
.review-attribution img {
  height: 30px;
  width: auto;
  transition: opacity .25s ease;
}
.review-attribution a:hover img { opacity: .7; }

/* Pull quote */
.pull-quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  color: var(--pine-deep);
  line-height: 1.4;
  max-width: 40ch;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  top: -.35em; left: -.45em;
  font-style: normal;
  font-size: 4.2em;
  color: var(--gold);
  opacity: .16;
  line-height: 1;
  z-index: -1;
}
.section--pine .pull-quote { color: var(--ivory); }

/* Review modal */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.review-modal[hidden] { display: none; }
.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 30, 23, .6);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
}
.review-modal.is-open .review-modal__backdrop { opacity: 1; }
.review-modal__panel {
  position: relative;
  background: var(--ivory);
  max-width: 640px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: clamp(32px, 5vw, 60px);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease-out);
}
.review-modal.is-open .review-modal__panel { transform: translateY(0); opacity: 1; }
.review-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .25s ease;
}
.review-modal__close:hover { background: var(--sand); }
.review-modal__stars { color: var(--gold); letter-spacing: 3px; display: block; margin-bottom: 20px; }
.review-modal__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
  color: var(--pine-deep);
}
.review-modal__meta { margin-top: 24px; font-weight: 700; color: var(--ink-soft); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }

/* ============ Availability calendar ============ */
.avail-calendar {
  background: var(--white);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 1px 2px rgba(34,32,27,.05);
}
.avail-calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.avail-calendar__nav button {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: var(--pine-deep);
  transition: background .25s ease;
}
.avail-calendar__nav button:hover:not(:disabled) { background: var(--sand); }
.avail-calendar__nav button:disabled { opacity: .3; cursor: default; }
.avail-calendar__month { font-family: var(--serif); font-size: 1.4rem; color: var(--pine-deep); text-align: center; }
.avail-calendar__months {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.avail-month__label {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--pine-deep);
  text-align: center;
  margin-bottom: 12px;
}
.avail-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  text-align: center;
}
.avail-calendar__dow { font-size: .7rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; padding-bottom: 10px; }
.avail-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  color: var(--ink);
}
.avail-day--empty { visibility: hidden; }
.avail-day--available { background: rgba(46, 66, 55, .07); color: var(--pine-deep); font-weight: 700; }
.avail-day--booked { background: var(--sand-deep); color: var(--ink-soft); text-decoration: line-through; opacity: .55; }
.avail-day--checkin, .avail-day--checkout, .avail-day--turnover {
  background: linear-gradient(135deg, rgba(46,66,55,.07) 50%, var(--sand-deep) 50%);
  color: var(--pine-deep);
  font-weight: 700;
}
.avail-calendar__legend { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; font-size: .82rem; color: var(--ink-soft); }
.avail-calendar__legend span { display: inline-flex; align-items: center; gap: 8px; }
.avail-calendar__legend i { width: 13px; height: 13px; display: inline-block; }
.avail-calendar__asof { margin-top: 18px; font-size: .82rem; color: var(--ink-soft); }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.price-table td, .price-table th { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table td:last-child { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--pine-deep); }
.price-table th { color: var(--ink-soft); font-weight: 700; text-transform: uppercase; font-size: .74rem; letter-spacing: .08em; }
.section--pine .price-table td, .section--pine .price-table th { border-color: var(--line-dark); color: var(--sand); }
.section--pine .price-table td:last-child { color: var(--ivory); }

/* Distances */
.distance-list { display: grid; gap: 0; margin-top: 24px; list-style: none; }
.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: .95rem;
}
.distance-list span:last-child { color: var(--ink-soft); text-align: right; }

/* Host photo frame */
.host-photo-frame { position: relative; }
.host-photo-frame::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--terracotta);
  opacity: .45;
  z-index: -1;
}

/* ============ Contact form ============ */
.contact-form { display: grid; gap: 22px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 2px;
  transition: border-color .25s ease;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pine);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { justify-self: start; }

.form-note {
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: .95rem;
  border: 1px solid;
  border-radius: 2px;
}
.form-note--success { border-color: var(--pine); color: var(--pine-deep); background: rgba(46,66,55,.06); }
.form-note--error { border-color: var(--terracotta); color: var(--terracotta-deep); background: rgba(176,95,56,.07); }

/* ============ Pre-footer CTA ============ */
.cta-banner { text-align: center; }
.cta-banner .rule { margin-left: auto; margin-right: auto; }
.cta-image {
  position: relative;
  padding: clamp(96px, 14vw, 200px) var(--pad);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
}
.cta-image::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(19, 30, 23, .52);
}
.cta-image > * { position: relative; z-index: 2; }
.cta-image h2 { color: var(--white); }
.cta-image .lede { margin: 18px auto 34px; color: rgba(250,247,240,.85); }

/* ============ Footer ============ */
.footer {
  background: var(--pine-black);
  color: var(--sand);
  padding: clamp(64px, 8vw, 110px) var(--pad) 36px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  min-width: 0;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__logo { font-family: var(--serif); font-size: 1.6rem; letter-spacing: .02em; color: var(--ivory); }
.footer__links { display: flex; gap: 64px; flex-wrap: wrap; min-width: 0; }
.footer__col h4 { color: var(--ivory); font-family: var(--sans); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; opacity: .55; }
.footer__col a, .footer__col p { display: block; font-size: .95rem; opacity: .85; margin-bottom: 10px; transition: opacity .2s ease; }
.footer__col a:hover { opacity: 1; }
.footer__bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; opacity: .55; letter-spacing: .03em; }

/* ============ Reveals ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .36s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  .hero__kicker, .hero h1, .hero__meta, .hero__actions { animation: none; opacity: 1; }
  .hero__scroll::after { animation: none; }
  .img-reveal img { transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .editorial, .editorial--flip { grid-template-columns: minmax(0, 1fr); }
  .gallery-elite { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .ge-a { grid-column: span 6; }
  .ge-b { grid-column: span 6; aspect-ratio: 16 / 10; }
  .ge-c, .ge-d, .ge-e { grid-column: span 3; }
  .review-grid { grid-template-columns: minmax(0, 1fr); }
  .image-break { background-attachment: scroll; }
  .footer__top { flex-direction: column; gap: 32px; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--pine-black);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 1.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .55s var(--ease-out), opacity .4s var(--ease-out);
  }
  .nav__links a { color: var(--ivory) !important; }
  .nav__links .nav__cta { border-color: rgba(250,247,240,.6) !important; color: var(--ivory) !important; }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__burger {
    display: block;
    z-index: calc(var(--z-nav) + 1);
    background: none;
    border: none;
    width: 30px; height: 20px;
    position: relative;
    cursor: pointer;
  }
  .nav__burger span {
    position: absolute; left: 0; right: 0; height: 2px;
    background: var(--white);
    transition: all .35s var(--ease-out);
  }
  .nav.is-scrolled .nav__burger span,
  body.page-inner:not(.has-image-hero) .nav__burger span { background: var(--pine-deep); }
  .nav__burger.is-open span { background: var(--ivory) !important; }
  .nav__burger span:nth-child(1) { top: 0; }
  .nav__burger span:nth-child(2) { top: 9px; }
  .nav__burger span:nth-child(3) { top: 18px; }
  .nav__burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
}

@media (max-width: 700px) {
  .avail-calendar__months { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 64px 0 72px; }
  .hero__meta { font-size: .8rem; }
  .hero__meta span + span::before { margin: 0 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .price-table { font-size: .85rem; }
  .gallery-elite { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ge-a, .ge-b { grid-column: span 2; }
  .ge-c, .ge-d { grid-column: span 1; }
  .ge-e { grid-column: span 2; aspect-ratio: 16 / 10; }
  .host-photo-frame::before { inset: 12px -10px -10px 12px; }
}
