/* ──────────────────────────────────────────────────────────
   Casa Jardín — v2 dark editorial system
   Built on the brand "garden at night" palette + lemon accent.
   Single source of truth: every -v2 page links here.
   ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Manrope:wght@200;300;400;500&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  /* ─── Dark mode tokens — values are inverted brand semantics
         (--cream becomes the dark page surface, --ink becomes the cream type) */
  --cream:        #1C1B18;
  --paper:        #2A3528;
  --bone:         #2A3528;
  --gold:         #CDC837;          /* lemon yellow — citrus pop on dark */
  --gold-soft:    #DDD96A;
  --sage:         #8A9A7C;
  --leaf:         #4A5E3C;
  --umber:        rgba(240, 236, 228, 0.78);
  --ink:          #F0ECE4;
  --midnight:     #0E0D0B;
  --line:         rgba(240, 236, 228, 0.12);
  --line-soft:    rgba(240, 236, 228, 0.06);
  --muted:        rgba(240, 236, 228, 0.62);

  --pool:         #2C7A8A;
  --pool-deep:    #1F5A68;
  --pool-bright:  #3DA0B5;
  --pool-pale:    #B8DCE2;

  --display:  'Playfair Display', Georgia, serif;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --body:     'Manrope', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);

  --radius-sm:   14px;
  --radius:      22px;
  --radius-lg:   34px;

  --measure:        1440px;
  --measure-wide:   1680px;
  --measure-narrow: 880px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a {
  color: var(--ink);
  text-decoration: none;
  transition: color 280ms var(--ease-out), opacity 280ms var(--ease-out);
}
a:hover { opacity: 0.62; }
::selection { background: var(--gold); color: var(--cream); }
:focus-visible { outline: 1.5px solid var(--ink); outline-offset: 4px; border-radius: 2px; }

/* ── Type ───────────────────────────────────────────────── */
.display, .h-hero {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.h-hero { font-size: clamp(3.4rem, 11vw, 9rem); }
.h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); text-wrap: balance;
}
.h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.18; letter-spacing: -0.012em;
  color: var(--ink);
}
.h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  line-height: 1.25; letter-spacing: -0.01em;
  color: var(--ink);
}
.italic-accent {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; color: var(--gold);
}
.lede {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.45; color: var(--umber);
  max-width: 38ch;
}
.body {
  font-size: clamp(1.0rem, 1.15vw, 1.075rem);
  line-height: 1.75; color: var(--ink);
  font-weight: 300; max-width: 60ch;
}
.body + .body { margin-top: 1rem; }
.muted { color: var(--muted); }
.eyebrow {
  font-family: var(--body);
  font-size: 0.68rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--ink);
  font-weight: 500; display: inline-block;
}
.eyebrow--muted { color: var(--muted); }
.meta {
  font-family: var(--body);
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 400;
}
.num {
  font-family: var(--display); font-style: italic;
  font-weight: 400; color: var(--muted);
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--measure);
  padding: 0 clamp(1.25rem, 3.5vw, 3rem);
  margin: 0 auto;
}
.container--narrow {
  max-width: var(--measure-narrow);
  padding: 0 clamp(1.25rem, 3.5vw, 2rem);
  margin: 0 auto;
}
.container--wide {
  max-width: var(--measure-wide);
  padding: 0 clamp(1.25rem, 3.5vw, 3rem);
  margin: 0 auto;
}

/* True viewport-width bleed for hero/feature images on desktop.
   On phones/tablets it stays inside the container so the rounded
   corners and padding still read correctly. */
.bleed-vw {
  width: 100%;
}
@media (min-width: 1100px) {
  .bleed-vw {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
section { position: relative; }
.section-pad   { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-pad-s { padding: clamp(3.5rem, 7vw, 6rem) 0; }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(28, 27, 24, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
  padding-top: env(safe-area-inset-top, 0px);
}
.nav__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 3.5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.nav__brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}
.nav__brand img { height: 30px; width: auto; display: block; }
@media (min-width: 880px) { .nav__brand img { height: 38px; } }
.nav__links {
  display: flex; gap: clamp(1rem, 1.8vw, 1.75rem);
  list-style: none; justify-self: center;
}
.nav__links a {
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 400;
  color: var(--ink);
  transition: color 280ms var(--ease-out);
}
/* Lemon-yellow rollover for menu-style text links */
.nav__links a:hover,
.drawer__links a:hover,
.footer__col a:hover,
.nav__lang a:hover { color: var(--gold); opacity: 1; }

.nav__right {
  justify-self: end;
  display: flex; gap: clamp(0.75rem, 1.25vw, 1.25rem); align-items: center;
}
.nav__lang {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.nav__lang strong { color: var(--ink); font-weight: 500; }
.nav__cta {
  font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--pool); border-radius: 999px;
  color: #F0ECE4;
  background: var(--pool);
  white-space: nowrap;
  transition: background 280ms var(--ease-out), border-color 280ms var(--ease-out), color 280ms var(--ease-out);
}
.nav__cta:hover {
  background: var(--pool-deep); border-color: var(--pool-deep);
  color: #F0ECE4; opacity: 1;
}
.drawer__foot .nav__cta { color: #F0ECE4; }

.nav__toggle {
  appearance: none; background: transparent; border: 0;
  width: 44px; height: 44px;
  display: none; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer;
  margin-left: 0.25rem;
}
.nav__toggle svg { width: 22px; height: 22px; }

/* Active nav link */
.nav__links a.is-active,
.nav__links a[aria-current="page"] { color: var(--gold); }

@media (max-width: 880px) {
  .nav__inner {
    grid-template-columns: 1fr auto;
    padding: 0.75rem clamp(1rem, 4vw, 1.5rem);
    gap: 0.75rem;
  }
  .nav__inner > nav { display: none; }
  .nav__right { gap: 0.5rem; flex-wrap: nowrap; }
  .nav__right .nav__lang { display: none; }
  .nav__cta { padding: 0.55rem 0.95rem; font-size: 0.66rem; letter-spacing: 0.16em; white-space: nowrap; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 420px) {
  .nav__cta { padding: 0.5rem 0.8rem; font-size: 0.62rem; letter-spacing: 0.14em; }
  .nav__inner { gap: 0.5rem; }
  .nav__brand img { height: 24px; }
}

/* ── Mobile drawer ───────────────────────────────────── */
.drawer {
  position: fixed; inset: 0; z-index: 100;
  background: var(--cream);
  transform: translateY(-101%);
  transition: transform 480ms var(--ease-out);
  display: flex; flex-direction: column;
  padding: 1rem clamp(1.25rem, 5vw, 2rem) 2rem;
  visibility: hidden;
}
.drawer.is-open { transform: none; visibility: visible; }
.drawer__top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.25rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.drawer__top img { height: 34px; width: auto; display: block; }
.drawer__close {
  appearance: none; background: transparent; border: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer;
}
.drawer__close svg { width: 22px; height: 22px; }
.drawer__links {
  list-style: none;
  display: grid; gap: 0.25rem;
  margin-top: 1.5rem; flex: 1;
}
.drawer__links a {
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 2.6rem);
  line-height: 1.15; letter-spacing: -0.015em;
  color: var(--ink);
  padding: 0.45rem 0; display: block;
  transition: color 280ms var(--ease-out);
}
.drawer__links em {
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-weight: 400;
}
.drawer__foot {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
body.is-locked { overflow: hidden; }

/* ── Hero (homepage) ────────────────────────────────────── */
.hero {
  padding-top: calc(clamp(5rem, 9vw, 7rem) + env(safe-area-inset-top, 0px));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 78svh;
  background: var(--bone);
}
@media (min-width: 720px) { .hero__media { aspect-ratio: 16 / 11; max-height: 82vh; } }
@media (min-width: 1100px) {
  .hero__media {
    aspect-ratio: 16 / 9;
    max-height: 86vh;
  }
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3.4rem, 14vw, 10.5rem);
  line-height: 0.92; letter-spacing: -0.035em;
  color: var(--ink); text-wrap: balance;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.hero__title em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; color: var(--gold);
}
.hero__sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  color: var(--umber);
  max-width: 42ch; line-height: 1.4;
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* ── Page header (interior pages) ───────────────────────── */
/* A smaller hero pattern for interior pages: eyebrow + title + lede,
   then a single rounded image below. Kept editorial without competing
   with the homepage's giant hero. */
.page-header {
  padding-top: calc(clamp(5rem, 9vw, 7rem) + env(safe-area-inset-top, 0px));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-header__eyebrow { display: block; margin-bottom: clamp(1rem, 2vw, 1.5rem); }
.page-header__top {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 880px) {
  .page-header__top { grid-template-columns: 1.4fr 1fr; gap: clamp(3rem, 5vw, 4rem); }
}
.page-header__lede {
  /* Lede sits at the bottom of the title row so its last line aligns with
     the title baseline — visually paired but not pushing the title down. */
  align-self: end;
}
.page-header__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98; letter-spacing: -0.025em;
  color: var(--ink); text-wrap: balance;
}
.page-header__title em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; color: var(--gold);
}
.page-header__lede { align-self: end; }
.page-header__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bone);
}
@media (max-width: 720px) {
  .page-header__media { aspect-ratio: 4 / 5; }
}
.page-header__media img { width: 100%; height: 100%; object-fit: cover; }
.page-header__caption {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 1.25rem; align-items: center;
  margin-top: 1rem;
}
.page-header__caption .rule { height: 1px; background: var(--line); }
@media (max-width: 480px) {
  .page-header__caption { grid-template-columns: auto 1fr; }
  .page-header__caption .rule:last-child { display: none; }
}

/* ── Section heads ──────────────────────────────────────── */
.section-head {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 4rem); }
}
.section-head .lede { align-self: end; max-width: 100%; }
.section-head--center { grid-template-columns: 1fr; text-align: center; }
.section-head--center .lede { max-width: 56ch; margin: 0 auto; }

/* ── Editorial intro ────────────────────────────────────── */
.editorial { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.editorial__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bone);
}
.editorial__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1400ms var(--ease-out);
}
.editorial__media:hover img { transform: scale(1.03); }
.editorial__caption {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.25rem;
  padding-top: 0.75rem;
}
.editorial__caption .rule { height: 1px; background: var(--line); }
.editorial__copy {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; margin: clamp(2rem, 4vw, 3rem) 0 0;
}
@media (min-width: 880px) {
  .editorial__copy { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 4rem); align-items: start; }
}
.editorial__copy .body, .diptych-copy .body { color: var(--ink); max-width: none; }
.editorial__copy .body.muted, .diptych-copy .body.muted { color: var(--ink); }
/* When .body paragraphs are siblings inside the side-by-side editorial grid,
   the .body + .body rule was pushing the right column down. Reset it so the
   columns top-align cleanly. The single-column (mobile) view falls back to
   the standard 2rem grid gap below. */
@media (min-width: 880px) {
  .editorial__copy .body + .body,
  .diptych-copy .body + .body { margin-top: 0; }
}

/* ── In-text links / arrow links ─────────────────────────── */
.room-row__link {
  font-family: var(--body);
  font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.25rem;
  display: inline-block; width: fit-content;
  margin-top: 0.25rem;
  transition: color 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.room-row__link:hover {
  color: var(--pool); border-color: var(--pool);
  opacity: 1;
}

/* ── Rooms carousel ─────────────────────────────────────── */
.carousel { position: relative; }
.carousel__track-wrap { position: relative; margin-right: calc(50% - 50vw); }
.carousel__track {
  display: flex; gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 0.5rem 0 1rem;
  padding-right: clamp(2rem, 8vw, 6rem);
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 auto;
  width: clamp(280px, 78vw, 460px);
  scroll-snap-align: start;
  display: grid; gap: 1.25rem;
  color: var(--ink);
}
@media (min-width: 880px) { .carousel__slide { width: clamp(360px, 38vw, 520px); } }
.carousel__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bone);
}
.carousel__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1400ms var(--ease-out);
}
.carousel__slide:hover .carousel__media img { transform: scale(1.04); }
.carousel__caption {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1rem;
}
.carousel__caption .rule { height: 1px; background: var(--line); }
.carousel__body { display: grid; gap: 0.6rem; }
.carousel__title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.015em;
}
.carousel__desc {
  font-family: var(--body);
  font-size: 0.92rem; line-height: 1.65;
  color: var(--muted); max-width: 38ch;
}
.carousel__controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}
.carousel__index { display: flex; gap: 0.5rem; align-items: center; flex: 1; flex-wrap: wrap; }
.carousel__index button {
  appearance: none; background: transparent; border: 0;
  padding: 0.5rem 0.25rem;
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: color 280ms var(--ease-out);
  position: relative;
}
.carousel__index button::after {
  content: ''; display: block;
  height: 1px; width: 22px; background: var(--line);
  margin-top: 0.4rem;
  transition: background 280ms var(--ease-out), width 320ms var(--ease-out);
}
.carousel__index button.is-active { color: var(--pool); }
.carousel__index button.is-active::after { background: var(--pool); width: 38px; }
.carousel__index button:hover { color: var(--pool); }
.carousel__nav { display: flex; gap: 0.6rem; }
.carousel__btn {
  appearance: none; background: transparent;
  border: 1px solid var(--ink);
  width: 48px; height: 48px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
  transition: background 280ms var(--ease-out), color 280ms var(--ease-out), border-color 280ms var(--ease-out), opacity 280ms var(--ease-out);
}
.carousel__btn:hover { background: var(--pool); border-color: var(--pool); color: #F0ECE4; }
.carousel__btn:disabled { opacity: 0.28; cursor: default; }
.carousel__btn:disabled:hover { background: transparent; border-color: var(--ink); color: var(--ink); }
.carousel__btn svg { width: 18px; height: 18px; }

/* ── Diptych ─────────────────────────────────────────── */
.diptych { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.5vw, 2rem); }
@media (min-width: 720px) { .diptych { grid-template-columns: 1fr 1fr; } }
.diptych__cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bone);
}
.diptych__cell img { width: 100%; height: 100%; object-fit: cover; }
.diptych__cell--zoom img { transform: scale(1.045); transform-origin: center; }
.diptych-copy {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; margin-top: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 880px) {
  .diptych-copy { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 4rem); }
}

/* ── Triptych — 3-image row for richer galleries ──────── */
.triptych {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 720px) {
  .triptych { grid-template-columns: 1fr 1fr 1fr; }
}
.triptych__cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bone);
}
.triptych__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1400ms var(--ease-out); }
.triptych__cell:hover img { transform: scale(1.04); }

/* ── Gallery — flexible mosaic ────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
.gallery__cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bone);
}
.gallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1400ms var(--ease-out); }
.gallery__cell:hover img { transform: scale(1.04); }
.gallery__cell--wide { aspect-ratio: 16 / 11; }
@media (min-width: 720px) {
  .gallery__cell--wide { grid-column: span 2; }
}

/* ── Full bleed image ─────────────────────────────────── */
.full-bleed {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--bone);
}
.full-bleed img { width: 100%; height: 100%; object-fit: cover; }

/* ── Stories ────────────────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}
@media (min-width: 720px) { .story-grid { grid-template-columns: repeat(3, 1fr); } }
.story { display: grid; gap: 1.25rem; }
.story__media {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--bone);
}
.story__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1400ms var(--ease-out);
}
.story:hover .story__media img { transform: scale(1.04); }
.story__meta { display: flex; gap: 1rem; align-items: center; }
.story__rule { height: 1px; flex: 1; background: var(--line); }
.story__title {
  font-family: var(--display); font-weight: 400;
  font-size: 1.35rem; line-height: 1.2;
  letter-spacing: -0.012em; color: var(--ink);
}
.story__desc {
  font-size: 0.92rem; line-height: 1.65;
  color: var(--muted); max-width: 36ch;
}

/* ── Long-form story article ──────────────────────────── */
.article {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
.article > .body { max-width: 100%; }
.article h2, .article h3 {
  margin-top: 1.5rem;
  font-family: var(--display);
  font-weight: 400;
}
.article h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); line-height: 1.2; letter-spacing: -0.015em; }
.article h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); line-height: 1.25; }
.article figure { margin: 1.5rem 0; }
.article figure img { border-radius: var(--radius); }
.article blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.4;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
}

/* ── Fact grid — icon + title + description tiles ───── */
.fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
@media (min-width: 720px) { .fact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .fact-grid { grid-template-columns: repeat(3, 1fr); } }
/* Variant: four equal columns from tablet up — used by the seasons block */
.fact-grid--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .fact-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .fact-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.fact {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}
.fact__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fact__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fact__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 36ch;
  font-weight: 300;
}

/* ── Spec list (room amenities, contact details, etc.) ─── */
.spec-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.spec-list li {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  align-items: start;
}
.spec-list li:last-child { border-bottom: none; padding-bottom: 0; }
.spec-list li .meta { color: var(--muted); }
.spec-list li > span:not(.meta) { color: var(--ink); }
@media (max-width: 480px) {
  .spec-list li { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* ── Spec / detail two-column section ──────────────────── */
.detail-cols {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) {
  .detail-cols { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 4rem); }
}

/* ── Form — contact ──────────────────────────────────── */
.form { display: grid; gap: 1.5rem; }
.form__row { display: grid; gap: 1.5rem; }
@media (min-width: 720px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.form__field { display: grid; gap: 0.4rem; }
.form__label {
  font-family: var(--body);
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__input, .form__textarea, .form__select {
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  font-family: var(--body); font-size: 1rem;
  color: var(--ink);
  font-weight: 300;
  width: 100%;
  transition: border-color 280ms var(--ease-out);
}
.form__input::placeholder, .form__textarea::placeholder { color: rgba(240,236,228,0.35); }
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
/* Date inputs and selects need explicit colour on Safari/Chrome */
.form__input[type="date"] { color-scheme: dark; }
.form__select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23F0ECE4' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  padding-right: 1.5rem;
  cursor: pointer;
}
.form__select option { background: var(--midnight); color: var(--ink); }
.form__textarea {
  min-height: 140px;
  resize: vertical;
}
.form__submit {
  font-family: var(--body);
  font-size: 0.78rem; letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  background: var(--pool); color: #F0ECE4;
  border: 0; border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.75rem;
  width: fit-content;
  transition: background 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.form__submit:hover { background: var(--pool-deep); transform: translateY(-1px); }

/* ── Booking slab (deepest dark) ───────────────────────── */
.booking {
  background: var(--midnight);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; align-items: end;
  border: 1px solid var(--line-soft);
}
@media (min-width: 880px) {
  .booking { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 4rem); }
}
.booking .h1 { color: var(--ink); }
.booking .h1 em {
  font-family: var(--serif); font-style: italic;
  color: var(--pool-bright);
}
.booking .italic-accent { color: var(--pool-bright); }
.booking .muted { color: rgba(240, 236, 228, 0.62); }
.booking__cta {
  font-family: var(--body);
  font-size: 0.82rem; letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.05rem 1.85rem;
  background: var(--pool); color: #F0ECE4;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.85rem;
  width: fit-content;
  box-shadow: 0 0 0 1px var(--pool), 0 18px 40px -22px rgba(45,122,138,0.55);
  transition: background 280ms var(--ease-out), color 280ms var(--ease-out), transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.booking__cta:hover {
  background: var(--pool-deep);
  box-shadow: 0 0 0 1px var(--pool-deep), 0 24px 50px -22px rgba(31,90,104,0.65);
  transform: translateY(-1px);
  opacity: 1;
}
.booking__small {
  font-family: var(--body);
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 236, 228, 0.55);
  margin-top: 1.25rem;
}
.booking__list { list-style: none; display: grid; gap: 1rem; }
.booking__list li {
  display: grid; grid-template-columns: auto 1fr;
  gap: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(240, 236, 228, 0.12);
  font-size: 0.95rem;
  color: rgba(240, 236, 228, 0.85);
}
.booking__list li .meta { color: rgba(240, 236, 228, 0.5); }

/* ── Footer ─────────────────────────────────────────────── */
.footer { padding: clamp(4rem, 7vw, 6rem) 0 2.5rem; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; } }
.footer__brand { display: grid; gap: 1rem; }
.footer__brand img { height: 48px; width: auto; display: block; }
.footer__brand-tag {
  font-family: var(--body); font-size: 0.95rem;
  color: var(--muted); letter-spacing: 0.04em; max-width: 28ch;
}
.footer__col h4 {
  font-family: var(--body); font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; color: var(--muted);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer__col a {
  font-size: 0.95rem; color: var(--ink);
  transition: color 280ms var(--ease-out);
}
.footer__bottom {
  margin-top: clamp(3rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Reveal ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ── Small-screen polish ──────────────────────────────── */
@media (max-width: 640px) {
  .container, .container--narrow { padding: 0 1.1rem; }
  .booking { padding: 2rem 1.4rem; border-radius: var(--radius); }
  .booking__list li { grid-template-columns: 1fr; gap: 0.25rem; padding-bottom: 0.85rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .editorial__copy, .diptych-copy, .detail-cols { gap: 1.5rem; }
  .section-head { gap: 1rem; }
  .carousel__controls { flex-direction: column; align-items: flex-start; gap: 1rem; padding-right: 1rem; }
  .carousel__nav { align-self: flex-end; }
  .nav__brand img { height: 26px; }
}

/* ── Preview banner ─────────────────────────────────── */
.preview-banner {
  position: fixed; bottom: 1rem; left: 1rem; z-index: 90;
  background: var(--ink); color: var(--cream);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase;
}
