@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f4f1ea;
  --paper-strong: #fffcf6;
  --ink: #1c1b18;
  --ink-soft: #514c44;
  --bronze: #a47a44;
  --bronze-light: #c7a777;
  --line: rgba(28, 27, 24, 0.18);
  --shell: min(1440px, calc(100vw - 112px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.72, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-dialog-open {
  overflow: hidden;
}

img,
picture {
  display: block;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--bronze-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper-strong);
  color: var(--ink);
  text-decoration: none;
  transition: top 160ms ease;
}

.skip-link:focus-visible {
  top: 16px;
}

[id] {
  scroll-margin-top: 88px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 11vw, 176px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--bronze-light);
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

h2 {
  font-size: clamp(52px, 6.6vw, 104px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 16px clamp(24px, 4vw, 64px);
  color: var(--paper-strong);
  transition: min-height 280ms var(--ease), background-color 280ms var(--ease), color 280ms var(--ease), box-shadow 280ms var(--ease);
}

.site-header::after {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 0;
  left: clamp(24px, 4vw, 64px);
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  transition: opacity 280ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(244, 241, 234, 0.96);
  box-shadow: 0 8px 40px rgba(28, 27, 24, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.92);
}

.brand__mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.is-scrolled .brand__mark,
.brand--footer .brand__mark {
  border-color: var(--line);
  background: var(--paper-strong);
}

.site-nav {
  display: flex;
  justify-self: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 13px;
}

.site-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 100px;
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease);
}

.header-action:hover {
  transform: translateY(-2px);
  background: #fff;
}

.is-scrolled .header-action {
  background: var(--ink);
  color: var(--paper-strong);
}

.is-scrolled .header-action img {
  filter: invert(1);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(720px, 100svh, 980px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-strong);
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero__scrim {
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 15, 12, 0.72) 0%, rgba(17, 15, 12, 0.4) 48%, rgba(17, 15, 12, 0.1) 78%), linear-gradient(0deg, rgba(17, 15, 12, 0.46) 0%, transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(720px, 100svh, 980px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-block: 160px clamp(86px, 10vh, 120px);
}

.hero__eyebrow {
  color: #e4c99f;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(62px, 8.6vw, 132px);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.2);
}

.hero__summary {
  max-width: 660px;
  margin: 30px 0 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
}

.hero__price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin: 28px 0 0;
}

.hero__price strong {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__price span {
  color: rgba(255, 252, 246, 0.78);
  font-size: 15px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: var(--paper-strong);
  color: var(--ink);
}

.button--light:hover {
  background: #fff;
}

.button--dark {
  background: var(--ink);
  color: var(--paper-strong);
}

.button--dark img {
  filter: invert(1);
}

.button--dark:hover {
  background: #35322c;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-block: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.text-link span {
  border-bottom: 1px solid currentColor;
}

.text-link--light img {
  filter: invert(1);
}

.hero__credit {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 3vw, 48px);
  bottom: 26px;
  margin: 0;
  color: rgba(255, 252, 246, 0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.fact-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.fact-strip p {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 28px clamp(20px, 3vw, 46px);
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
}

.fact-strip p:first-child {
  padding-left: 0;
}

.fact-strip p:last-child {
  padding-right: 0;
  border-right: 0;
}

.fact-strip span {
  align-self: flex-start;
  padding-top: 4px;
  color: var(--bronze);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}

.editorial-intro h2 {
  max-width: 11ch;
}

.editorial-intro__copy {
  max-width: 520px;
  padding-bottom: 10px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 19px);
}

.editorial-intro__copy p {
  margin: 0;
}

.editorial-intro__copy p + p {
  margin-top: 24px;
}

.art-break {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr) minmax(0, 1fr);
  min-height: 620px;
  background: #151412;
  color: var(--paper-strong);
}

.art-break picture {
  min-height: 100%;
  overflow: hidden;
}

.art-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-break picture:first-child img {
  object-position: 46% center;
}

.art-break picture:last-child img {
  object-position: 54% center;
}

.art-break blockquote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 64px clamp(34px, 5vw, 78px);
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 68px);
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.art-break blockquote span {
  margin-bottom: 22px;
  color: var(--bronze-light);
  font-size: 94px;
  line-height: 0.4;
}

.gallery-section {
  background: var(--paper-strong);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.55fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 100px);
}

.section-head h2 {
  max-width: 10ch;
}

.section-head > p {
  max-width: 500px;
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 17px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 26px);
}

.gallery-tile {
  position: relative;
  grid-column: span 6;
  aspect-ratio: 4 / 3;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #d7d0c4;
  color: var(--paper-strong);
  cursor: zoom-in;
  text-align: left;
}

.gallery-tile--wide {
  grid-column: span 8;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: clamp(520px, 64vw, 860px);
}

.gallery-tile--portrait {
  grid-column: span 4;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: clamp(520px, 64vw, 860px);
}

.gallery-tile--city {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.gallery-tile picture,
.gallery-tile img {
  width: 100%;
  height: 100%;
}

.gallery-tile img {
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 300ms var(--ease);
}

.gallery-tile--portrait img {
  object-position: center 44%;
}

.gallery-tile::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(12, 11, 10, 0.62), transparent);
  content: "";
  pointer-events: none;
}

.gallery-tile > span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  font-size: 13px;
  font-weight: 500;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.gallery-section__action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.room-story {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 8vw, 132px);
  padding-right: max(56px, calc((100vw - 1440px) / 2));
  background: #ded9d0;
}

.room-story__media {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  min-height: min(820px, 74vw);
}

.room-story__media picture {
  min-height: 100%;
  overflow: hidden;
}

.room-story__media picture:last-child {
  align-self: end;
  min-height: 58%;
}

.room-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-story__copy h2 {
  max-width: 9ch;
}

.room-story__copy > p:last-child {
  max-width: 520px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.bedroom-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr) minmax(210px, 0.36fr);
  grid-template-rows: auto minmax(160px, 0.35fr);
  gap: clamp(18px, 2.5vw, 38px);
  align-items: start;
}

.bedroom-story__copy {
  grid-row: 1 / 3;
  align-self: center;
  padding-right: clamp(20px, 4vw, 68px);
}

.bedroom-story__copy h2 {
  max-width: 8ch;
}

.bedroom-story__copy > p:last-child {
  max-width: 420px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.bedroom-story__main {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.bedroom-story__detail {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.bedroom-story__main img,
.bedroom-story__detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bathroom-story {
  background: #cbc1b3;
}

.bathroom-story__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.48fr);
  gap: clamp(48px, 10vw, 150px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.bathroom-story__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.bathroom-story__intro h2 {
  max-width: 10ch;
}

.bathroom-story__intro > p:last-child {
  margin: 0 0 12px;
  color: #4d463e;
  font-size: 17px;
}

.bathroom-story__images {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
  gap: clamp(16px, 2vw, 30px);
  align-items: end;
}

.bathroom-story__images picture:first-child {
  aspect-ratio: 16 / 9;
}

.bathroom-story__images picture:last-child {
  aspect-ratio: 4 / 5;
}

.bathroom-story__images picture {
  overflow: hidden;
}

.bathroom-story__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.terms {
  background: var(--ink);
  color: var(--paper-strong);
}

.terms__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.66fr);
  gap: clamp(56px, 10vw, 160px);
  align-items: end;
}

.terms h2 {
  max-width: 8ch;
  font-size: clamp(68px, 9vw, 142px);
}

.terms h2 span {
  display: block;
  margin-top: 20px;
  color: rgba(255, 252, 246, 0.68);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.terms__copy {
  max-width: 560px;
  color: rgba(255, 252, 246, 0.78);
  font-size: 17px;
}

.terms__copy p {
  margin: 0;
}

.terms__copy p + p {
  margin-top: 22px;
}

.terms__copy .button {
  margin-top: 36px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  min-height: 126px;
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #0d0c0b;
  color: var(--paper-strong);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 3vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.lightbox__eyebrow,
.lightbox__counter {
  margin: 0;
}

.lightbox__eyebrow {
  color: rgba(255, 252, 246, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox__counter {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background-color 180ms var(--ease), transform 180ms var(--ease);
}

.icon-button img {
  filter: invert(1);
}

.icon-button:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.16);
}

.lightbox__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 2vw, 34px);
  align-items: center;
  min-height: 0;
  padding: 20px clamp(14px, 2.5vw, 38px);
}

.lightbox__stage figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
}

.lightbox__stage figure > img {
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100svh - 238px);
  align-self: center;
  object-fit: contain;
}

.lightbox__stage figcaption {
  margin-top: 12px;
  color: rgba(255, 252, 246, 0.7);
  font-size: 13px;
  text-align: center;
}

.lightbox__thumbs {
  display: flex;
  gap: 8px;
  min-height: 96px;
  padding: 11px clamp(18px, 3vw, 44px) 16px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  scrollbar-color: rgba(255, 255, 255, 0.36) transparent;
}

.lightbox__thumbs button {
  width: 74px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: #26231f;
  cursor: pointer;
  opacity: 0.56;
  transition: border-color 180ms var(--ease), opacity 180ms var(--ease);
}

.lightbox__thumbs button.is-active {
  border-color: var(--bronze-light);
  opacity: 1;
}

.lightbox__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 64px, 1440px);
  }

  .site-nav {
    gap: 24px;
  }

  .fact-strip p {
    min-height: 132px;
    padding-inline: 24px;
    font-size: 25px;
  }

  .room-story {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 44px;
    padding-right: 32px;
  }

  .room-story__media {
    grid-template-columns: 1fr;
    min-height: 680px;
  }

  .room-story__media picture:last-child {
    display: none;
  }

  .bedroom-story {
    grid-template-columns: minmax(240px, 0.55fr) 1fr minmax(160px, 0.3fr);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .site-header {
    min-height: 72px;
    padding: 12px 20px;
  }

  .site-header::after {
    right: 20px;
    left: 20px;
  }

  .brand__text {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero,
  .hero__content {
    min-height: 100svh;
  }

  .hero__content {
    padding-block: 128px 86px;
  }

  .hero__scrim {
    background: linear-gradient(0deg, rgba(17, 15, 12, 0.78) 0%, rgba(17, 15, 12, 0.34) 66%, rgba(17, 15, 12, 0.18) 100%);
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(54px, 14vw, 88px);
  }

  .hero__summary {
    max-width: 520px;
    margin-top: 24px;
    font-size: 17px;
  }

  .hero__credit {
    display: none;
  }

  .fact-strip__inner {
    grid-template-columns: 1fr;
  }

  .fact-strip p,
  .fact-strip p:first-child,
  .fact-strip p:last-child {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-strip p:last-child {
    border-bottom: 0;
  }

  .editorial-intro,
  .section-head,
  .bathroom-story__intro,
  .terms__layout {
    grid-template-columns: 1fr;
  }

  .editorial-intro,
  .section-head,
  .bathroom-story__intro {
    gap: 42px;
  }

  .art-break {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .art-break blockquote {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 420px;
  }

  .art-break picture {
    min-height: 360px;
  }

  .gallery-tile--wide,
  .gallery-tile--portrait {
    min-height: 600px;
  }

  .gallery-tile--wide {
    grid-column: span 7;
  }

  .gallery-tile--portrait {
    grid-column: span 5;
  }

  .room-story {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-right: 0;
  }

  .room-story__media {
    min-height: min(720px, 100vw);
  }

  .room-story__copy {
    width: var(--shell);
    margin-inline: auto;
  }

  .bedroom-story {
    grid-template-columns: 1fr minmax(140px, 0.36fr);
    grid-template-rows: auto auto;
  }

  .bedroom-story__copy {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 0 0 42px;
  }

  .bedroom-story__main {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .bedroom-story__detail {
    display: none;
  }

  .bathroom-story__intro .eyebrow {
    margin-bottom: -20px;
  }

  .bathroom-story__images {
    grid-template-columns: 1fr;
  }

  .bathroom-story__images picture:last-child {
    width: 68%;
    justify-self: end;
  }

  .terms__layout {
    gap: 64px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 34px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 92px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .header-action {
    min-height: 42px;
    padding-inline: 16px;
  }

  .hero__content {
    padding-block: 116px 72px;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero__price {
    flex-direction: column;
    gap: 7px;
  }

  .hero__price strong {
    font-size: 42px;
  }

  .hero__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .fact-strip p {
    gap: 16px;
    font-size: 24px;
  }

  .editorial-intro h2,
  .section-head h2,
  .room-story__copy h2,
  .bedroom-story__copy h2,
  .bathroom-story__intro h2 {
    font-size: 52px;
  }

  .art-break {
    grid-template-columns: 1fr;
  }

  .art-break blockquote {
    min-height: 370px;
    padding: 58px 28px;
    font-size: 48px;
  }

  .art-break picture {
    min-height: 320px;
  }

  .art-break picture:last-child {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-tile,
  .gallery-tile--wide,
  .gallery-tile--portrait,
  .gallery-tile--city {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .gallery-tile--portrait {
    aspect-ratio: 4 / 5;
  }

  .gallery-tile--city {
    aspect-ratio: 16 / 10;
  }

  .room-story__media {
    min-height: 520px;
  }

  .bedroom-story__main {
    aspect-ratio: 4 / 3;
  }

  .bathroom-story__images picture:first-child,
  .bathroom-story__images picture:last-child {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .terms h2 {
    font-size: 68px;
  }

  .terms__copy .button {
    width: 100%;
  }

  .lightbox__bar {
    min-height: 68px;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }

  .lightbox__stage {
    display: block;
    padding: 12px 12px 18px;
  }

  .lightbox__stage figure {
    height: 100%;
  }

  .lightbox__stage figure > img {
    max-height: calc(100svh - 226px);
  }

  .lightbox__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox__arrow:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .lightbox__arrow--prev {
    left: 14px;
  }

  .lightbox__arrow--next {
    right: 14px;
  }

  .lightbox__thumbs {
    min-height: 84px;
    padding-inline: 12px;
  }

  .lightbox__thumbs button {
    width: 62px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
