/* Burnish — premium industrial editorial system */

:root {
  --bg: #f6f0e4;
  --paper: #eee5d6;
  --ink: #2b2117;
  --muted: #6b5a48;
  --dim: #786754;
  --faint: #968673;
  --line: rgba(43, 33, 23, 0.16);
  --line-light: rgba(246, 240, 228, 0.24);
  --copper: #a05a2c;
  --copper-dark: #7d4322;
  --white: #fbf6ec;
  --page-pad: clamp(24px, 4.5vw, 72px);
  --sans: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Newsreader', Georgia, serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--copper); color: var(--white); }

.wrap {
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

/* Navigation */
.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(43, 33, 23, 0.13);
}
.nav-in {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-link {
  color: rgba(43, 33, 23, 0.62);
  transition: color 180ms ease;
}
.nav-link:hover,
.nav-link.active { color: var(--ink); }
.nav-link.active { box-shadow: 0 1px 0 var(--copper); }
.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 17px;
  transition: background 180ms ease, color 180ms ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav--inverse { border-color: rgba(251, 246, 236, 0.2); }
.nav--inverse .brand,
.nav--inverse .nav-cta { color: var(--white); }
.nav--inverse .nav-link { color: rgba(251, 246, 236, 0.7); }
.nav--inverse .nav-link:hover,
.nav--inverse .nav-link.active { color: var(--white); }
.nav--inverse .nav-cta:hover { background: var(--white); color: var(--ink); }
.nav--glass {
  background: rgba(246, 240, 228, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* Shared type */
.kicker,
.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.kicker { color: var(--copper-dark); }
.eyebrow { color: var(--copper); }
.kicker--light,
.eyebrow--light { color: #d6a270; }
.sq {
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 11px;
  background: currentColor;
}
.hero-h1,
.display {
  margin: 0;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-script {
  margin: 0 0 10px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.hero-script + .hero-h1 { margin-top: 14px; }
.hero-h1 {
  max-width: 9.5ch;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.93;
}
.hero-h1--wide { max-width: 12ch; }
.hero-home .hero-h1 {
  max-width: 12ch;
  font-size: 104px;
  line-height: 0.98;
}
.hero-h1--career {
  max-width: 14ch;
  font-size: clamp(50px, 6.5vw, 92px);
  line-height: 0.98;
}
.display {
  max-width: 19ch;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
}
.display--compact { font-size: clamp(38px, 4.4vw, 60px); }
.lede {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}
.lede--light { color: rgba(251, 246, 236, 0.78); }
.copy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* Buttons */
.hero-ctas,
.band-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.btn--solid { background: var(--ink); color: var(--white); }
.btn--solid:hover { background: var(--copper); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { border-color: var(--copper); color: var(--copper-dark); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: #d8a16b; }
.btn--ghost-light { border-color: rgba(251, 246, 236, 0.6); color: var(--white); }
.btn--ghost-light:hover { background: var(--white); color: var(--ink); }

/* Full-bleed image heroes */
.image-hero {
  --hero-position: center;
  position: relative;
  min-height: max(700px, 100svh);
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  background-image: var(--hero-image);
  background-position: var(--hero-position);
  background-size: cover;
}
.image-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background:
    linear-gradient(90deg, rgba(246, 240, 228, 0.98) 0%, rgba(246, 240, 228, 0.9) 34%, rgba(246, 240, 228, 0.3) 58%, rgba(246, 240, 228, 0.02) 76%),
    linear-gradient(180deg, rgba(246, 240, 228, 0.2), rgba(246, 240, 228, 0.05) 62%, rgba(43, 33, 23, 0.08));
}
.image-hero--right::before {
  background:
    linear-gradient(270deg, rgba(246, 240, 228, 0.98) 0%, rgba(246, 240, 228, 0.9) 34%, rgba(246, 240, 228, 0.2) 61%, rgba(246, 240, 228, 0.02) 78%),
    linear-gradient(180deg, rgba(246, 240, 228, 0.18), rgba(43, 33, 23, 0.05));
}
.image-hero--right .hero-principles { margin-left: auto; }
.image-hero--dark { color: var(--white); }
.image-hero--dark::before {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.96) 0%, rgba(10, 10, 9, 0.82) 34%, rgba(10, 10, 9, 0.28) 62%, rgba(10, 10, 9, 0.06) 78%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.16), rgba(10, 10, 9, 0.45));
}
.hero-inner {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 150px;
  padding-bottom: clamp(42px, 6vw, 76px);
}
.hero-copy { width: min(690px, 62%); }
.hero-copy--right {
  width: min(630px, 52%);
  margin-left: auto;
}
.hero-copy .hero-h1 { margin-top: 22px; }
.hero-copy .lede { margin-top: 28px; }
.hero-copy .hero-ctas { margin-top: 34px; }
.hero-principles {
  width: min(750px, 68%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(54px, 8vh, 92px);
  border-top: 1px solid rgba(43, 33, 23, 0.24);
}
.hero-principles > div {
  display: grid;
  gap: 8px;
  padding: 17px 22px 0 0;
}
.hero-principles > div + div {
  border-left: 1px solid rgba(43, 33, 23, 0.18);
  padding-left: 22px;
}
.hero-principles .n {
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 10px;
}
.hero-principles .t {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.hero-principles--plain > div { display: block; }
.hero-principles--plain .t { display: block; padding-top: 2px; }
.image-hero--dark .hero-principles { border-color: var(--line-light); }
.image-hero--dark .hero-principles > div + div { border-color: var(--line-light); }
.image-hero--dark .hero-principles .n { color: #d6a270; }

/* Editorial sections */
.section { padding-block: clamp(88px, 10vw, 150px); }
.section--tight { padding-block: clamp(64px, 7vw, 100px); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--white); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(360px, 0.58fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.section-head .lede { padding-top: 7px; }
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 8vw, 106px);
  border-top: 1px solid var(--line);
}
.principle {
  min-height: 280px;
  padding: 30px clamp(24px, 3vw, 42px) 24px 0;
}
.principle + .principle {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 3vw, 42px);
}
.principle .n,
.ledger-row .n {
  display: block;
  margin-bottom: 54px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.principle h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.principle p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Product and lifestyle imagery */
.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.story-copy .display { margin-top: 20px; }
.story-copy .lede { margin-top: 28px; }
.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover { color: var(--copper-dark); border-color: var(--copper-dark); }
.text-link:hover span { transform: translateX(4px); }
.story-media,
.media-card { margin: 0; }
.story-media img,
.media-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.story-media img { aspect-ratio: 4 / 3; }
.story-media figcaption,
.media-card figcaption {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.story-media figcaption {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
  text-transform: uppercase;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 38px);
  margin-top: clamp(58px, 8vw, 100px);
}
.media-card img { aspect-ratio: 4 / 3; }
.media-card figcaption {
  min-height: 108px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding: 14px 4px 0 0;
}
.media-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(58px, 8vw, 100px);
}
.room-grid .media-card img { aspect-ratio: 3 / 2; }
.media-card--quiet figcaption { min-height: 84px; }

/* Homepage room gallery */
.home-benefits { background: var(--bg); }
.home-benefits .display { font-size: clamp(44px, 5.5vw, 72px); }
@media (min-width: 981px) {
  .home-benefits .section-head {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
    gap: clamp(32px, 4vw, 56px);
  }
  .home-benefits .display { max-width: none; text-wrap: balance; }
}
.benefit-grid { margin-top: clamp(58px, 7vw, 92px); }
.benefit-card { min-height: 255px; }
.section--rooms { overflow: hidden; }
.rooms-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.rooms-heading .display { margin-top: 20px; max-width: none; }
.room-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 38vw, 520px);
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(46px, 6vw, 70px);
  padding: 0 max(var(--page-pad), calc((100vw - 1320px) / 2 + var(--page-pad))) 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.room-rail::-webkit-scrollbar { display: none; }
.room-rail:focus-visible { outline: 1px solid var(--copper); outline-offset: 4px; }
.room-card {
  margin: 0;
}
.room-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 4.4;
  border-radius: 18px;
  object-fit: cover;
}
.room-card figcaption {
  margin: 14px 4px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.product-reveal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}
.product-reveal-media { margin: 0; background: var(--paper); }
.product-reveal-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-reveal-copy .display { margin-top: 20px; }
.product-reveal-copy .lede { margin-top: 28px; }
.product-reveal-copy .btn { margin-top: 34px; }

/* Image-backed statement */
.image-statement {
  --statement-position: center;
  position: relative;
  min-height: clamp(620px, 75vw, 820px);
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image: var(--statement-image);
  background-position: var(--statement-position);
  background-size: cover;
  color: var(--white);
}
.image-statement::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background: linear-gradient(90deg, rgba(8, 8, 7, 0.96), rgba(8, 8, 7, 0.82) 34%, rgba(8, 8, 7, 0.18) 66%, rgba(8, 8, 7, 0.04));
}
.statement-copy { width: min(610px, 54%); }
.statement-copy .display { margin-top: 20px; }
.statement-copy .lede { margin-top: 26px; }
.statement-copy .btn { margin-top: 34px; }

/* Page details */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact { padding: 24px 26px 24px 0; }
.fact + .fact { border-left: 1px solid var(--line); padding-left: 26px; }
.fact .label {
  display: block;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fact .value {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}
.ledger { border-top: 1px solid var(--line); }
.ledger-row {
  display: grid;
  grid-template-columns: 86px minmax(220px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(36px, 5vw, 64px);
}
.ledger-row .n { margin: 7px 0 0; }
.ledger-title,
.ledger-title--mono {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.ledger-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.status-note {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 42px;
  border: 1px solid var(--line);
  padding: clamp(30px, 4vw, 54px);
}
.status-note h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Chapter navigation and calls to action */
.chapter-list { border-top: 1px solid var(--line); }
.chapter-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-block: 26px;
  transition: color 180ms ease, padding 180ms ease;
}
.chapter-row:hover { color: var(--copper-dark); padding-left: 8px; }
.chapter-row .n { color: var(--copper); font-family: var(--mono); font-size: 10px; }
.chapter-row .t { font-size: clamp(22px, 2.6vw, 34px); font-weight: 500; letter-spacing: -0.02em; }
.chapter-row .arrow { font-family: var(--mono); }
.band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--ink);
  padding: clamp(38px, 5vw, 68px);
}
.band h2 {
  margin: 0;
  max-width: 24ch;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.band .note {
  margin: 16px 0 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* Waitlist */
.wl-form {
  width: min(570px, 100%);
  display: flex;
  gap: 10px;
  margin-top: 34px;
}
.wl-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(43, 33, 23, 0.55);
  border-radius: 0;
  background: rgba(246, 240, 228, 0.78);
  color: var(--ink);
  outline: none;
  padding: 14px 17px;
  font-family: var(--mono);
  font-size: 14px;
}
.wl-form input:focus { border-color: var(--copper-dark); box-shadow: 0 0 0 1px var(--copper-dark); }
.wl-form button {
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wl-form button:hover { background: var(--copper); }
.wl-note {
  margin-top: 14px;
  color: var(--copper-dark);
  font-family: var(--mono);
  font-size: 11px;
}
.wl-note[hidden] { display: none; }
.waitlist-privacy {
  margin: 14px 0 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
}
.image-hero--dark .wl-form input {
  border-color: rgba(251, 246, 236, 0.48);
  background: rgba(251, 246, 236, 0.92);
}
.image-hero--dark .wl-form button { background: var(--white); color: var(--ink); }
.image-hero--dark .wl-form button:hover { background: #d8a16b; }
.image-hero--dark .wl-note { color: #e2b282; }

/* Footer */
.foot { border-top: 1px solid var(--line); }
.foot-in {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.foot-links { display: flex; gap: 24px; }
.foot a:hover { color: var(--copper-dark); }

/* Backward-compatible spacing helpers */
.pt-80, .pt-96, .pt-100, .pt-110 { padding-top: clamp(88px, 10vw, 140px); }
.pb-110, .pb-140 { padding-bottom: clamp(88px, 10vw, 140px); }

@media (max-width: 980px) {
  .image-hero { --hero-position: 58% center; }
  .hero-copy { width: 68%; }
  .hero-copy--right { width: 60%; }
  .section-head { grid-template-columns: 1fr; gap: 30px; }
  .ledger-row { grid-template-columns: 52px 0.65fr 1fr; gap: 24px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 0.85fr 1.15fr; gap: 48px; }
  .product-reveal-grid { grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 44px; }
  .lifestyle-grid { gap: 20px; }
  .fact:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .fact:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .nav-in { min-height: 70px; }
  .nav-link { display: none; }
  .nav-cta { padding: 9px 12px; font-size: 10px; }
  .image-hero {
    min-height: 880px;
    background-position: 72% center !important;
  }
  .hero-washer { background-position: 16% center !important; }
  .hero-method { background-position: 70% center !important; }
  .hero-careers { background-position: 70% center !important; }
  .hero-waitlist { background-position: 68% center !important; }
  .image-hero::before,
  .image-hero--right::before {
    background:
      linear-gradient(180deg, rgba(246, 240, 228, 0.55) 0%, rgba(246, 240, 228, 0.64) 35%, rgba(246, 240, 228, 0.88) 68%, rgba(246, 240, 228, 0.98) 100%),
      linear-gradient(90deg, rgba(246, 240, 228, 0.72), rgba(246, 240, 228, 0.08));
  }
  .image-hero--dark::before {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.56), rgba(8, 8, 7, 0.78) 55%, rgba(8, 8, 7, 0.96)),
      linear-gradient(90deg, rgba(8, 8, 7, 0.72), rgba(8, 8, 7, 0.12));
  }
  .hero-inner { padding-top: 132px; padding-bottom: 38px; }
  .hero-copy,
  .hero-copy--right { width: 100%; margin-left: 0; }
  .hero-h1 { font-size: clamp(52px, 16vw, 78px); }
  .hero-home .hero-h1 { font-size: clamp(52px, 15vw, 76px); }
  .hero-principles {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 44px;
  }
  .hero-principles > div { grid-template-columns: 38px 1fr; padding: 11px 0; }
  .hero-principles--plain > div { display: block; }
  .hero-principles > div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle { min-height: 0; padding: 28px 0 34px; }
  .principle + .principle { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .principle .n { margin-bottom: 30px; }
  .story-grid,
  .lifestyle-grid,
  .room-grid,
  .product-reveal-grid { grid-template-columns: 1fr; }
  .story-media { margin-top: 12px; }
  .media-card figcaption { min-height: 0; padding-bottom: 30px; }
  .rooms-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .room-rail {
    grid-auto-columns: min(82vw, 380px);
    padding-inline: var(--page-pad);
  }
  .room-grid .media-card img { aspect-ratio: 4 / 3; }
  .image-statement {
    min-height: 700px;
    align-items: flex-end;
    background-position: 68% center;
  }
  .image-statement::before {
    background: linear-gradient(180deg, rgba(8, 8, 7, 0.18), rgba(8, 8, 7, 0.78) 58%, rgba(8, 8, 7, 0.98));
  }
  .statement-copy { width: 100%; padding-bottom: 56px; }
  .facts { grid-template-columns: 1fr; }
  .fact,
  .fact + .fact,
  .fact:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding: 20px 0; }
  .facts .fact:first-child { border-top: 0; }
  .ledger-row { grid-template-columns: 38px 1fr; gap: 18px; }
  .ledger-row p { grid-column: 2; }
  .status-note { grid-template-columns: 1fr; gap: 18px; }
  .chapter-row { grid-template-columns: 40px 1fr auto; gap: 14px; }
  .band { grid-template-columns: 1fr; gap: 30px; }
  .wl-form { flex-wrap: wrap; }
  .wl-form button { width: 100%; min-height: 48px; }
  .foot-in { align-items: flex-start; flex-direction: column; padding-block: 28px; }
  .foot-links { gap: 14px 20px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
