/* ============ Tokens ============ */
:root {
  --paper: #F5F2EC;
  --paper-2: #ECE6DC;
  --ink: #171512;
  --ink-soft: #3F3A33;
  --muted: #6A6358;
  --bronze: #7A5B36;
  --line: rgba(23, 21, 18, .14);

  --night: #12110F;
  --night-2: #1C1A17;
  --on-night: #EDE8DF;
  --on-night-muted: #A99F91;
  --bronze-light: #C9AB82;
  --line-night: rgba(237, 232, 223, .16);

  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1320px;
  --section: clamp(88px, 12vw, 176px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 300 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.1em; }
h1, h2, h3 { margin: 0; font-weight: 300; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--bronze-light); outline-offset: 3px; }

.skip {
  position: absolute; left: 16px; top: -100px; z-index: 1000;
  background: var(--ink); color: var(--paper); padding: 12px 18px; text-decoration: none;
}
.skip:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ============ Type ============ */
.eyebrow {
  font: 400 12px/1.4 var(--sans);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--bronze-light); }
.hero .eyebrow--light { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6.2vw, 92px);
  line-height: 1.02;
  letter-spacing: -.015em;
}
.display--md { font-size: clamp(34px, 4.6vw, 66px); line-height: 1.06; }
.display em, .hero__title em { font-style: italic; }
.lead { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.6; color: var(--ink-soft); }
.muted { color: var(--muted); }
.index {
  display: block;
  font: 300 13px/1 var(--sans);
  letter-spacing: .2em;
  color: var(--muted);
}
.list-title {
  font: 400 12px/1.4 var(--sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 48px; padding: 0 28px;
  font: 400 13px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 1px solid transparent; border-radius: 0;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  touch-action: manipulation;
}
.btn--light { background: var(--on-night); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--block { width: 100%; }

/* ============ Topbar ============ */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  color: #fff;
  transition: background-color .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.topbar__inner {
  max-width: 1600px; margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border: 1px solid currentColor;
  font: 300 15px/1 var(--sans); letter-spacing: .08em;
}
.brand__text { font: 400 11px/1.35 var(--sans); letter-spacing: .24em; text-transform: uppercase; }
.nav { display: flex; gap: 34px; margin-left: auto; }
.nav a {
  font: 400 12px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; padding: 14px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.topbar__cta { min-height: 44px; padding: 0 22px; font-size: 12px; }

.topbar.is-solid { background: rgba(245, 242, 236, .96); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
@supports (backdrop-filter: blur(10px)) {
  .topbar.is-solid { background: rgba(245, 242, 236, .94); backdrop-filter: blur(14px); }
}
.topbar.is-solid .btn--ghost { border-color: var(--ink); color: var(--ink); }
.topbar.is-solid .btn--ghost:hover { background: var(--ink); color: var(--paper); }

.menu-toggle {
  display: none; margin-left: auto; width: 48px; height: 48px;
  background: none; border: 0; color: inherit; cursor: pointer; position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1px; background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.menu-toggle span:first-child { top: 20px; }
.menu-toggle span:last-child { top: 28px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 24px; transform: rotate(-45deg); }

.menu-mobile {
  background: var(--paper); color: var(--ink);
  padding: 8px var(--gutter) 28px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  min-height: calc(100dvh - 80px);
}
.menu-mobile a {
  font: 300 32px/1.2 var(--serif); text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.menu-mobile .menu-mobile__cta {
  margin-top: 28px; border: 0; background: var(--ink); color: var(--paper);
  font: 400 13px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  padding: 18px; text-align: center;
}
.topbar.menu-open { background: var(--paper); color: var(--ink); }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden; background: var(--night);
}
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: 50% 45%; animation: heroZoom 2.4s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,.55) 0%, rgba(10,9,8,0) 22%),
    linear-gradient(90deg, rgba(10,9,8,.5) 0%, rgba(10,9,8,.18) 45%, rgba(10,9,8,0) 70%),
    linear-gradient(0deg, rgba(10,9,8,.82) 0%, rgba(10,9,8,.35) 38%, rgba(10,9,8,0) 62%);
}
.hero__content { position: relative; padding-top: 140px; padding-bottom: 40px; }
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 8.4vw, 136px); line-height: .96; letter-spacing: -.02em;
  max-width: 12ch; margin-bottom: 36px;
}
.hero__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px; }
.hero__price { margin: 0; font: 300 clamp(22px, 2.2vw, 30px)/1 var(--sans); letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.hero__price span {
  display: block; margin-bottom: 8px;
  font: 400 11px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--bronze-light);
}
.facts {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.28);
  padding-top: 22px; padding-bottom: 30px;
}
.facts li { padding-right: 16px; }
.facts li + li { padding-left: clamp(12px, 2vw, 32px); border-left: 1px solid rgba(255,255,255,.2); }
.facts strong { display: block; font: 300 clamp(22px, 2.6vw, 38px)/1.15 var(--sans); letter-spacing: -.01em; white-space: nowrap; margin-bottom: 4px; }
.facts span { font: 400 11px/1.4 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.78); }

/* ============ Frames ============ */
.frame { margin: 0; position: relative; }
.frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; background: var(--paper-2); }
.frame--tall img { aspect-ratio: 4 / 5; }
.frame--wide img { aspect-ratio: 21 / 10; }
.frame figcaption {
  margin-top: 14px;
  font: 400 11px/1.4 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.frame figcaption::before { content: ""; display: inline-block; width: 24px; height: 1px; background: currentColor; vertical-align: middle; margin-right: 12px; }

/* ============ Intro ============ */
.intro { padding-top: var(--section); padding-bottom: var(--section); }
.intro__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 6vw, 110px); align-items: end; }
.intro__text { color: var(--ink-soft); max-width: 46ch; }
.intro__images {
  margin-top: clamp(64px, 9vw, 130px);
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(20px, 4vw, 64px); align-items: end;
}
.intro__images .frame:last-child { margin-bottom: clamp(0px, 8vw, 120px); }

/* ============ Sections ============ */
.section { padding-block: var(--section); }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--night); color: var(--on-night); }
.section--dark .index, .section--dark .frame figcaption { color: var(--on-night-muted); }
.section--dark .frame img { background: var(--night-2); }
.section__head {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  margin-bottom: clamp(48px, 7vw, 96px); max-width: 1100px;
}
.section__head .index { padding-top: 6px; }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; }
.section__head--row .muted { margin: 0; font-size: 15px; }

.split {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 7vw, 120px);
  align-items: center; margin-top: clamp(64px, 9vw, 130px);
}
.specs li {
  padding: 15px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 16px; align-items: baseline;
}
.specs li::before { content: ""; flex: none; width: 6px; height: 6px; border: 1px solid var(--bronze); transform: rotate(45deg) translateY(-2px); }
.section--dark .specs li { border-color: var(--line-night); }

.tech {
  margin-top: clamp(64px, 9vw, 120px);
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
  padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); max-width: 820px;
}
.tech__icon { width: 64px; height: 64px; color: var(--bronze); }
.tech__title { font: 400 30px/1.1 var(--serif); margin-bottom: 8px; }
.tech p { margin: 0; color: var(--ink-soft); }

/* ============ Bleed ============ */
.bleed { position: relative; height: clamp(520px, 92vh, 980px); overflow: hidden; background: var(--night); }
.bleed__media { position: absolute; inset: -12% 0; will-change: transform; }
.bleed__media img { width: 100%; height: 100%; object-fit: cover; }
.bleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,9,8,.66), rgba(10,9,8,0) 50%); }
.bleed__quote {
  position: absolute; left: 0; right: 0; bottom: clamp(36px, 7vw, 96px); z-index: 1; margin: 0;
  color: #fff; font: 300 clamp(34px, 5vw, 76px)/1.05 var(--serif); font-style: italic;
}

/* ============ Kitchen ============ */
.kitchen { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 7vw, 120px); align-items: start; margin-bottom: clamp(64px, 9vw, 120px); }
.kitchen__list { position: sticky; top: 120px; }
.equip { columns: 2; column-gap: 32px; }
.equip li {
  break-inside: avoid; padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: 16px;
}

/* ============ Suites ============ */
.mosaic {
  display: grid; grid-template-columns: 1.5fr 1fr; grid-template-areas: "a b" "a c" "t c";
  gap: clamp(20px, 3vw, 44px);
}
.mosaic__a { grid-area: a; }
.mosaic__b { grid-area: b; }
.mosaic__c { grid-area: c; align-self: start; }
.mosaic__text { grid-area: t; font: 300 clamp(21px, 2vw, 28px)/1.45 var(--serif); color: var(--on-night); max-width: 34ch; }
.mosaic__a img { aspect-ratio: 4 / 3.3; }
.rail {
  margin-top: clamp(64px, 9vw, 120px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px);
}

/* ============ Outdoor ============ */
.outdoor { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 7vw, 120px); align-items: start; }
.outdoor__groups { display: grid; gap: 44px; }

/* ============ Gallery ============ */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.gallery li { grid-column: span 4; }
.gallery li:nth-child(7n+1) { grid-column: span 8; grid-row: span 2; }
.gallery li:nth-last-child(-n+2) { grid-column: span 6; }
.gallery button {
  display: block; width: 100%; height: 100%; padding: 0; border: 0; cursor: zoom-in;
  background: var(--paper); overflow: hidden; position: relative;
}
.gallery img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .7s var(--ease), opacity .3s; }
.gallery button:hover img { transform: scale(1.035); }
.gallery button span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 12px; text-align: left;
  font: 400 11px/1.3 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery button:hover span, .gallery button:focus-visible span { opacity: 1; }

/* ============ Place ============ */
.place { background: var(--night); color: var(--on-night); padding-block: clamp(80px, 10vw, 140px); }
.place__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 7vw, 120px); align-items: end; }
.place .index { color: var(--on-night-muted); margin-bottom: 24px; }
.place__lead { margin: 0; color: var(--on-night-muted); font-size: clamp(17px, 1.4vw, 20px); max-width: 44ch; }

/* ============ Ficha ============ */
.ficha { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.ficha .index { margin-bottom: 24px; }
.sheet { margin: 0; border-top: 1px solid var(--ink); }
.sheet div { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--line); }
.sheet dt { font: 400 12px/1.4 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.sheet dd { margin: 0; font: 300 clamp(20px, 2vw, 26px)/1.2 var(--sans); text-align: right; font-variant-numeric: tabular-nums; }
.sheet .sheet__price { border-bottom: 1px solid var(--ink); padding-block: 28px; }
.sheet .sheet__price dd { font-size: clamp(28px, 3vw, 42px); }

/* ============ Visit ============ */
.visit { background: var(--night); color: var(--on-night); padding-block: var(--section); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.visit__intro > p { color: var(--on-night-muted); max-width: 42ch; }
.visit__intro h2 { margin-bottom: 28px; }
.visit__note { font-size: 14px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line-night); }

.whats {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 12px;
  color: var(--on-night); text-decoration: none; min-height: 48px;
}
.whats svg { width: 40px; height: 40px; flex: none; color: var(--bronze-light); }
.whats small { display: block; font: 400 11px/1.4 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--on-night-muted); }
.whats span span { font: 300 22px/1.3 var(--sans); border-bottom: 1px solid transparent; transition: border-color .25s var(--ease); }
.whats:hover span span { border-bottom-color: var(--bronze-light); }
.form__whats { display: inline-block; margin-top: 10px; color: var(--on-night); font: 400 13px/1.4 var(--sans); letter-spacing: .12em; text-transform: uppercase; text-underline-offset: 5px; }
.footer__whats { color: var(--on-night); text-underline-offset: 4px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form { display: grid; gap: 22px; position: relative; }
.field { margin: 0; padding: 0; border: 0; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label, .field legend {
  display: block; margin-bottom: 8px; padding: 0;
  font: 400 11px/1.4 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--on-night-muted);
}
.optional { text-transform: none; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 0;
  background: transparent; color: var(--on-night);
  border: 0; border-bottom: 1px solid rgba(237,232,223,.35); border-radius: 0;
  font: 300 18px/1.4 var(--sans); transition: border-color .25s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 88px; }
.field select {
  cursor: pointer; padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23C9AB82'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
}
.field select option { color: var(--ink); background: var(--paper); }
.field input::placeholder { color: rgba(237,232,223,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--bronze-light); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { box-shadow: 0 1px 0 var(--bronze-light); }
.field.has-error input, .field.has-error select { border-bottom-color: #E59A8A; }
.field__error { margin: 6px 0 0; font-size: 13px; color: #F0AE9F; min-height: 0; }
.field__error:empty { display: none; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.field .chip { display: inline-block; margin: 0; }
.chip span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
  border: 1px solid rgba(237,232,223,.3); color: var(--on-night);
  font: 300 15px/1 var(--sans); letter-spacing: .01em; text-transform: none;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip:hover span { border-color: var(--on-night); }
.chip input:checked + span { background: var(--on-night); color: var(--ink); border-color: var(--on-night); }
.chip input:focus-visible + span { outline: 2px solid var(--bronze-light); outline-offset: 2px; }

.consent { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: var(--on-night-muted); cursor: pointer; line-height: 1.5; }
.consent input { flex: none; width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--bronze-light); }
.form .btn { margin-top: 10px; min-height: 56px; }
.form .btn[disabled] { opacity: .5; cursor: progress; }
.form__status { margin: 0; font-size: 15px; min-height: 1.5em; }
.form__status.is-ok { color: var(--bronze-light); font: 300 24px/1.3 var(--serif); }
.form__status.is-warn { color: #F0AE9F; }

/* ============ Footer ============ */
.footer { background: var(--night); color: var(--on-night-muted); border-top: 1px solid var(--line-night); padding-block: 48px 110px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 20px 48px; align-items: center; justify-content: space-between; }
.brand--footer { margin: 0; color: var(--on-night); }
.footer p { margin: 0; font-size: 13px; }
.footer__legal { max-width: 52ch; }

/* ============ Sticky CTA (mobile) ============ */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 90;
  display: none; align-items: center; justify-content: center; min-height: 54px;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font: 400 13px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  transform: translateY(140%); transition: transform .4s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.sticky-cta.is-visible { transform: none; }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; background: rgba(12,11,10,.96);
  display: grid; grid-template-columns: 72px 1fr 72px; align-items: center;
  animation: fade .25s var(--ease);
}
@keyframes fade { from { opacity: 0; } }
.lightbox__figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; min-width: 0; }
.lightbox__figure img { max-height: 82vh; width: auto; max-width: 100%; object-fit: contain; }
.lightbox__figure figcaption { color: var(--on-night-muted); font: 400 11px/1.4 var(--sans); letter-spacing: .22em; text-transform: uppercase; }
.lightbox button { background: none; border: 0; color: var(--on-night); cursor: pointer; width: 56px; height: 56px; display: grid; place-items: center; justify-self: center; }
.lightbox button svg { width: 28px; height: 28px; }
.lightbox button:hover { color: #fff; }
.lightbox__close { position: absolute; top: 12px; right: 12px; }

/* ============ Reveal ============ */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .topbar__cta { margin-left: auto; }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .topbar__cta { display: none; }
  .menu-toggle { display: block; }
  .intro__grid, .split, .kitchen, .outdoor, .ficha, .visit__grid { grid-template-columns: 1fr; }
  .intro__images { grid-template-columns: 1fr; }
  .intro__images .frame:last-child { margin-bottom: 0; }
  .section__head { grid-template-columns: 1fr; gap: 16px; }
  .kitchen__list { position: static; }
  .mosaic { grid-template-columns: 1fr; grid-template-areas: "a" "t" "b" "c"; }
  .rail {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px;
    margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter);
  }
  .rail .frame { scroll-snap-align: start; }
  .place__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery li, .gallery li:nth-child(7n+1), .gallery li:nth-last-child(-n+2) { grid-column: span 1; grid-row: auto; }
  .gallery li:nth-child(5n+1), .gallery li:last-child { grid-column: span 2; }
  .gallery button span { opacity: 1; font-size: 10px; padding: 24px 10px 8px; }
  .sticky-cta { display: flex; }
  .lightbox { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lightbox__figure { grid-row: 1; padding-inline: 8px; }
  .lightbox__nav { position: absolute; bottom: 20px; }
  .lightbox__nav--prev { left: 20px; }
  .lightbox__nav--next { right: 20px; }
}
@media (max-width: 600px) {
  .facts { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .facts li:nth-child(3) { padding-left: 0; border-left: 0; }
  .field-row { grid-template-columns: 1fr; }
  .equip { columns: 1; }
  .frame--wide img { aspect-ratio: 3 / 2; }
  .frame--tall img { aspect-ratio: 4 / 4.4; }
  .hero__foot .btn { width: 100%; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .tech { grid-template-columns: 1fr; }
  .sheet dd { font-size: 20px; }
}

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