/* =================================================================
   PARÉA ZION — Landscape hotel & retreat center
   Design system
   A muted, sun-bleached, architecture-forward aesthetic, drawn from
   the red rock of Zion: Martian red, lime plaster, sage, desert sky.
   ================================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Fraunces fallback";
  src: local("Georgia");
  size-adjust: 105%;
  ascent-override: 92%;
}

:root {
  /* Palette — pulled from the renders */
  --sand:        #e9e2d6; /* lime-plaster / page base   */
  --sand-deep:   #ddd2c0;
  --paper:       #f4efe6; /* lifted card surface         */
  --clay:        #b4654a; /* terracotta accent           */
  --rust:        #9a4a32; /* Martian red / deep terracotta */
  --rust-ink:    #5e2c1d;
  --sage:        #8a9176; /* desert scrub                */
  --sky:         #aebdc4; /* dusty Zion sky              */
  --ink:         #2f2f2f; /* brand wordmark grey-black   */
  --ink-soft:    #54504a;
  --line:        rgba(47, 47, 47, .14);
  --line-soft:   rgba(47, 47, 47, .08);

  /* Type */
  --serif: "Fraunces", "Fraunces fallback", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --section-y: clamp(5rem, 12vw, 11rem);
  --maxw: 1500px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  font-size: clamp(1rem, .55vw + .85rem, 1.075rem);
  line-height: 1.65;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--rust); color: var(--sand); }

/* ---------- Type scale ---------- */
.display {
  font-family: var(--serif);
  font-weight: 350;
  line-height: .98;
  letter-spacing: -.018em;
  font-size: clamp(2.85rem, 9vw, 8.5rem);
}
h2, .h2 {
  font-family: var(--serif);
  font-weight: 360;
  line-height: 1.04;
  letter-spacing: -.012em;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
}
h3, .h3 {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 1.12;
  letter-spacing: -.01em;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}
.lede {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.32;
  letter-spacing: -.008em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rust);
}
.coords {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.muted { color: var(--ink-soft); }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }

/* =================================================================
   Header / nav
   ================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 2.2vw, 1.7rem) var(--gutter);
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--sand) 84%, transparent);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: clamp(.7rem, 1.4vw, 1rem);
}
.brand { display: flex; align-items: center; gap: .9rem; z-index: 2; }
.brand svg, .brand img { width: clamp(86px, 9vw, 124px); height: auto; }
.brand svg path, .brand .wordmark path { fill: var(--ink); }

.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }
.nav a {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-soft); position: relative; padding-block: .3rem;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.nav-links { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .85em 1.6em; border-radius: 0;
  border: 1px solid var(--ink); color: var(--ink);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--sand); transform: translateY(-1px); }
.btn--solid { background: var(--rust); border-color: var(--rust); color: var(--paper); }
.btn--solid:hover { background: var(--rust-ink); border-color: var(--rust-ink); color: var(--paper); }

/* Ghost nav button — square box; corner lines overrun at top-left and
   bottom-right by a small amount. */
.btn--ghost {
  position: relative; overflow: visible;
  border-color: var(--ink);
}
.btn--ghost::before, .btn--ghost::after {
  content: ""; position: absolute; pointer-events: none;
  border: 0 solid var(--ink);
}
/* top-left: top line extends left, left line extends up */
.btn--ghost::before { top: -4px; left: -4px; width: 12px; height: 12px; border-top-width: 1px; border-left-width: 1px; }
/* bottom-right: bottom line extends right, right line extends down */
.btn--ghost::after  { bottom: -4px; right: -4px; width: 12px; height: 12px; border-bottom-width: 1px; border-right-width: 1px; }
.btn--ghost:hover { background: var(--ink); color: var(--sand); border-color: var(--ink); }

/* Mobile menu panel is hidden entirely on desktop; the mobile breakpoint
   re-enables it as a fixed full-screen overlay. */
.mobile-nav { display: none; }

.nav-toggle { display: none; width: 30px; height: 18px; position: relative; z-index: 2; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }

/* =================================================================
   Hero
   ================================================================= */
.hero {
  min-height: 100svh; position: relative; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden;
  padding: var(--gutter); padding-bottom: clamp(2rem, 5vw, 4rem);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img,
.hero__media video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); will-change: transform; }

/* Single legibility gradient over whichever background is active */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(40,28,20,.5) 0%, rgba(40,28,20,.06) 38%, rgba(40,28,20,0) 60%),
    linear-gradient(to bottom, rgba(40,28,20,.22) 0%, rgba(40,28,20,0) 30%);
}

/* ---- Background toggle: data-hero="video" | "image" ----
   Flip the attribute on .hero to switch. Only one media layer renders. */
.hero[data-hero="video"] .hero__media--image { display: none; }
.hero[data-hero="image"] .hero__media--video { display: none; }

/* If the visitor prefers reduced motion, never play video — fall back to the
   poster image even when data-hero="video". */
@media (prefers-reduced-motion: reduce) {
  .hero[data-hero="video"] .hero__video { display: none; }
  .hero[data-hero="video"] .hero__media--video {
    background: #2b1d14 center/cover no-repeat;
    background-image: image-set(url("/assets/video/hero-poster.jpg") 1x);
  }
}
.hero__inner { position: relative; z-index: 2; color: var(--paper); width: 100%; max-width: var(--maxw); margin-inline: auto; }
.hero__coords {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,239,230,.82);
  border-top: 1px solid rgba(244,239,230,.28);
  padding-top: 1.1rem; margin-top: clamp(2rem, 5vw, 3.5rem);
}
.hero h1 { color: var(--paper); }
.hero__sub {
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(1.15rem, 2.1vw, 1.7rem); line-height: 1.34;
  max-width: 26ch; margin-top: 1.4rem; color: rgba(244,239,230,.92);
}
.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(244,239,230,.8);
  font-size: .64rem; letter-spacing: .24em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(rgba(244,239,230,.8), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 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; } }

/* =================================================================
   Definition / philosophy
   ================================================================= */
.define { background: var(--sand); text-align: center; }
.define .wrap { max-width: 1100px; }
.define__word {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 11vw, 9rem); line-height: 1; letter-spacing: -.02em;
}
.define__pron { font-style: italic; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.25rem); margin-top: .8rem; }
.define__list { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; gap: 1.5rem; }
.define__list li {
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(1.3rem, 2.6vw, 2.05rem); line-height: 1.34; letter-spacing: -.008em;
  padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink);
}
.define__list li span { color: var(--rust); }

/* =================================================================
   Two-column editorial blocks
   ================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; overflow: hidden; border-radius: 2px; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.2s var(--ease); }
.split__media:hover img { transform: scale(1.04); }
.split__media figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--paper); background: rgba(40,28,20,.42);
  padding: .45em .9em; border-radius: 999px; backdrop-filter: blur(4px);
}
.split__body > * + * { margin-top: 1.4rem; }
.split__body .eyebrow + h2 { margin-top: 1.2rem; }
.block-list { margin-top: 2rem; display: grid; gap: 0; }
.block-list li { padding: 1.1rem 0; border-top: 1px solid var(--line); display: flex; gap: 1.1rem; align-items: baseline; }
.block-list li:last-child { border-bottom: 1px solid var(--line); }
.block-list .idx { font-family: var(--serif); font-style: italic; color: var(--rust); font-size: 1rem; min-width: 2ch; }

/* =================================================================
   Full-bleed quote / land
   ================================================================= */
.land { position: relative; min-height: 88vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.land__media { position: absolute; inset: 0; }
.land__media img { width: 100%; height: 100%; object-fit: cover; }
.land__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 50%, rgba(40,28,20,.18) 0%, rgba(40,28,20,.42) 100%),
    rgba(40,28,20,.18);
}
.land__inner {
  position: relative; z-index: 2; color: var(--paper);
  padding-inline: var(--gutter);
  width: 100%; max-width: min(900px, 92vw); margin-inline: auto;
}
.land__inner .land__quote {
  color: var(--paper);
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.16; letter-spacing: -.012em;
  text-wrap: balance;
  text-shadow: 0 1px 30px rgba(40,28,20,.25);
}
.land__inner cite {
  display: block; margin-top: clamp(1.6rem, 3vw, 2.4rem);
  font-style: normal; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,239,230,.78);
}
.land__inner cite::before {
  content: ""; display: block; width: 32px; height: 1px;
  background: rgba(244,239,230,.5); margin: 0 auto 1.2rem;
}

/* =================================================================
   Architecture facts
   ================================================================= */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.5rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.fact { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.fact__num { font-family: var(--serif); font-weight: 350; font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1; letter-spacing: -.02em; }
.fact__num small { font-size: .42em; }
.fact__label { margin-top: .6rem; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

/* =================================================================
   Bathhouse / dark interlude
   ================================================================= */
.dark { background: var(--rust-ink); color: var(--sand); }
.dark .eyebrow { color: var(--clay); }
.dark .h2 { color: var(--paper); }
.dark .muted { color: rgba(233,226,214,.72); }
.dark .amenity { border-color: rgba(233,226,214,.18); }

/* ---- Bathhouse: text + amenities on the left, a tall Sound Dome image
        on the right that fills the column height. Sized to its content. ---- */
.bathhouse {
  padding-block: clamp(4.5rem, 10vh, 8rem);
}
.bath {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 440px);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: stretch;
  width: 100%;
}
.bath__main { display: flex; flex-direction: column; }
.bath__intro { max-width: 46ch; }
.bath__intro h2 { max-width: 16ch; }
.bath__intro .muted { margin-top: 1.3rem; max-width: 50ch; }

/* The Sound Dome image grows to match the height of the text column */
.bath__feature {
  display: flex; flex-direction: column;
}
.bath__image { overflow: hidden; flex: 1; min-height: 0; }
.bath__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.6s var(--ease);
}
.bath__feature:hover .bath__image img { transform: scale(1.04); }
.bath__caption {
  padding: clamp(.9rem, 1.3vw, 1.15rem) 0 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.bath__tag {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem); letter-spacing: -.01em; color: var(--paper);
}
.bath__credit {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,239,230,.58);
}

/* Amenities — a few fuller blocks under the intro */
.amenities { margin-top: clamp(2.4rem, 5vh, 4rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); }
.amenity { padding-top: 1.2rem; border-top: 1px solid rgba(233,226,214,.22); }
.amenity h3 { font-size: 1.2rem; }
.amenity p { font-size: .92rem; color: rgba(233,226,214,.72); margin-top: .6rem; line-height: 1.55; max-width: 38ch; }

/* =================================================================
   Stays
   ================================================================= */
.stays { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.stay { background: var(--paper); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; }
.stay__media { overflow: hidden; aspect-ratio: 3 / 2.2; }
.stay__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.stay:hover .stay__media img { transform: scale(1.05); }
.stay__body { padding: clamp(1.3rem, 2.5vw, 1.9rem); display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.stay__body h3 { font-size: 1.45rem; }
.stay__meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: auto; padding-top: .8rem; }
.tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rust); border: 1px solid var(--line); border-radius: 999px; padding: .35em .8em; }

/* =================================================================
   Gallery
   ================================================================= */
.gallery-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; gap: clamp(.6rem, 1.4vw, 1rem);
}
.gallery-grid figure { overflow: hidden; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.g-a { grid-column: span 4; grid-row: span 2; }
.g-b { grid-column: span 2; }
.g-c { grid-column: span 2; }
.g-d { grid-column: span 2; }
.g-e { grid-column: span 2; }
.g-f { grid-column: span 2; }

/* =================================================================
   Contact / newsletter / CTA
   ================================================================= */
.cta { text-align: center; }
.cta .wrap { max-width: 760px; }

/* Newsletter form — one rectangular frame (input + button as a single unit),
   sharp edges; corner lines overrun at top-left and bottom-right. */
.cta__form {
  position: relative;
  display: flex; align-items: stretch;
  margin: clamp(2.6rem, 4vw, 3.4rem) auto 0; max-width: 500px;
  border: 1px solid var(--ink);
  background: var(--paper);
  transition: border-color .3s var(--ease);
}
.cta__form::before, .cta__form::after {
  content: ""; position: absolute; pointer-events: none;
  border: 0 solid var(--ink);
}
/* top-left: top line extends left, left line extends up */
.cta__form::before { top: -5px; left: -5px; width: 16px; height: 16px; border-top-width: 1px; border-left-width: 1px; }
/* bottom-right: bottom line extends right, right line extends down */
.cta__form::after  { bottom: -5px; right: -5px; width: 16px; height: 16px; border-bottom-width: 1px; border-right-width: 1px; }
.cta__form:focus-within { border-color: var(--rust); }

.cta__form input[type="email"] {
  flex: 1; min-width: 0; font: inherit; font-size: .95rem; padding: 1.1em 1.3em;
  border: none; border-radius: 0; background: transparent; color: var(--ink);
}
.cta__form input::placeholder { color: var(--ink-soft); opacity: .7; }
.cta__form input:focus { outline: none; }

/* Button sits flush inside the frame, divided by a single hairline */
.cta__form button {
  white-space: nowrap; border: none; border-left: 1px solid var(--ink);
  padding: .95em 1.8em; margin: 0;
}
.cta__form .btn--solid { background: var(--rust); color: var(--paper); }
.cta__form .btn--solid:hover { background: var(--rust-ink); transform: none; }
.form-note { margin-top: 1rem; font-size: .8rem; min-height: 1.2em; transition: color .3s; }
.form-note.is-ok { color: var(--sage); }
.form-note.is-err { color: var(--rust); }
.honeypot { position: absolute !important; left: -9999px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-line { display: flex; flex-direction: column; gap: .3rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 1px solid var(--line); }
.contact-line span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.contact-line a, .contact-line strong { font-family: var(--serif); font-weight: 400; font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: -.01em; }
.contact-line a { transition: color .3s; }
.contact-line a:hover { color: var(--rust); }

/* =================================================================
   Footer
   ================================================================= */
.site-footer { background: var(--ink); color: var(--sand); padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem; }
.site-footer .wordmark { width: clamp(180px, 30vw, 360px); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.site-footer .wordmark path { fill: var(--sand); }

.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2.5rem; }
.footer-col h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(233,226,214,.55); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { color: rgba(233,226,214,.85); transition: color .3s; font-size: .95rem; }
.footer-col a:hover { color: var(--clay); }
.footer-bottom {
  margin-top: clamp(3rem, 6vw, 5rem); padding-top: 1.6rem; border-top: 1px solid rgba(233,226,214,.16);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .72rem; letter-spacing: .08em; color: rgba(233,226,214,.5);
}

/* =================================================================
   Scroll reveal
   ================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1024px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .mobile-nav {
    display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
    position: fixed; inset: 0; z-index: 55; background: var(--sand);
    padding: var(--gutter); transform: translateY(-100%); transition: transform .6s var(--ease);
  }
  .site-header.nav-open ~ .mobile-nav, .mobile-nav.is-open { transform: none; }
  .mobile-nav a { font-family: var(--serif); font-size: clamp(2rem, 8vw, 3rem); font-weight: 350; }
  .mobile-nav .coords { font-family: var(--sans); font-size: .72rem; margin-top: 2rem; }

  .split, .contact-grid, .bath { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16 / 11; }
  /* On mobile the bathhouse stacks; the image takes a fixed aspect again */
  .bath__intro { max-width: none; }
  .bath__intro h2 { max-width: none; }
  .bath__feature { order: -1; max-width: 360px; }
  .bath__image { flex: none; }
  .bath__image img { height: auto; aspect-ratio: 4 / 5; }
  .stays { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-a { grid-column: span 2; grid-row: span 1; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: span 2; }
}
@media (max-width: 540px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .cta__form { flex-direction: column; }
  .cta__form button { width: 100%; justify-content: center; border-left: none; border-top: 1px solid var(--ink); }
  .gallery-grid { grid-template-columns: 1fr; }
}
