:root {
  --ink: #17110c;
  --ink-soft: #1b1711;
  --green: #20261f;
  --green-deep: #1a201a;
  --paper: #f4eddf;
  --paper-muted: #d7c9b0;
  --gold: #765020;
  --gold-soft: rgba(133, 88, 34, 0.62);
  --max: 1366px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.46;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
p,
blockquote,
figure {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  font: 600 14px/1 var(--sans);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 94px;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 22px;
  padding: 0 clamp(54px, 5vw, 88px) 14px;
  border-bottom: 1px solid rgba(135, 85, 27, 0.9);
  background: #1c1913;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2vw, 38px);
}

.site-nav a {
  color: var(--paper-muted);
  font: 600 clamp(10px, 0.78vw, 13px)/1 var(--sans);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #cf9a5c;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(245, 237, 221, 0.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(29, 34, 28, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(207, 154, 92, 0.9);
  background: #354137;
}

.menu-toggle:focus-visible {
  outline: 2px solid #cf9a5c;
  outline-offset: 3px;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.menu-toggle__icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease, opacity 120ms ease;
}

.menu-toggle__icon span:nth-child(1) {
  top: 0;
}

.menu-toggle__icon span:nth-child(2) {
  top: 6px;
}

.menu-toggle__icon span:nth-child(3) {
  top: 12px;
}

.site-header[data-menu-open="true"] .menu-toggle__icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.site-header[data-menu-open="true"] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.site-header[data-menu-open="true"] .menu-toggle__icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font: 600 13px/1 var(--sans);
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.button--outline {
  border-color: var(--paper-muted);
  background: rgba(19, 15, 11, 0.35);
}

.button--outline:hover {
  color: var(--ink);
  background: var(--paper);
}

.button--booking {
  border-radius: 999px;
  color: #fff;
  background: #242a23;
}

.button--booking:hover {
  background: #354137;
}

.button--header {
  display: none;
  min-height: 44px;
  flex: 0 0 auto;
  padding-inline: 20px;
  border: 1px solid rgba(245, 237, 221, 0.26);
  background: rgba(29, 34, 28, 0.9);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  background: #191813;
  isolation: auto;
}

.hero__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100svh;
  border-block: 1px solid rgba(135, 85, 27, 0.9);
  background-image:
    linear-gradient(90deg, rgba(16, 12, 8, 0.04) 34%, rgba(16, 12, 8, 0.62) 100%),
    url("/assets/canva-hero.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__logo {
  position: absolute;
  z-index: 40;
  top: 50px;
  left: clamp(40px, 3.6vw, 60px);
  display: grid;
  width: clamp(150px, 10vw, 190px);
  min-width: 150px;
  aspect-ratio: 1.22 / 1;
  place-items: center;
  border: 2px solid #fff;
  background: #1c1a15;
}

.hero__logo img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: invert(1) brightness(2.6);
}

.hero__copy {
  position: absolute;
  z-index: 2;
  top: 48%;
  right: clamp(54px, 7vw, 118px);
  width: min(43%, 650px);
  text-align: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--paper-muted);
  font-size: clamp(13px, 1.05vw, 16px);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

.hero__lead {
  margin-bottom: 32px;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ornament span {
  display: block;
  width: 150px;
  height: 19px;
  background: url("/assets/ornament-flourish-designer.png?v=3") center / contain no-repeat;
}

.ornament--line span {
  width: min(465px, calc(100vw - 48px));
  height: 16px;
  background-image: url("/assets/ornament-divider-designer.png?v=3");
}

.ornament--luxury span {
  width: 100px;
  height: 19px;
  background-image: url("/assets/ornament-luxury-designer.png");
}

.ornament--vintage span {
  position: relative;
  width: 100%;
  height: 15px;
  flex: 0 0 100%;
  background: none;
}

.ornament--vintage span::before,
.ornament--vintage span::after {
  position: absolute;
  top: 50%;
  width: calc(50% - 27px);
  height: 1px;
  background: rgba(118, 80, 32, 0.66);
  content: "";
}

.ornament--vintage span::before {
  left: 0;
}

.ornament--vintage span::after {
  right: 0;
}

.ornament--vintage {
  position: relative;
  width: 170px;
  max-width: 70vw;
}

.ornament--vintage::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 54px;
  height: 15px;
  background: url("/assets/ornament-divider-designer.png?v=3") center / 590px auto no-repeat;
  content: "";
  transform: translateX(-50%);
}

.statement {
  padding: clamp(44px, 5.1vw, 76px) 24px;
  text-align: center;
}

.statement p {
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(22px, 2vw, 30px);
  font-style: italic;
  line-height: 1.24;
}

.statement p:first-of-type {
  text-transform: uppercase;
}

.statement--green {
  border-block: 1px solid rgba(118, 80, 32, 0.32);
  background: var(--green);
}

.statement--opening .ornament:first-child {
  margin-bottom: 17px;
}

.statement--opening .ornament:last-child {
  margin-top: 21px;
}

.statement--opening {
  padding-block: clamp(34px, 3.8vw, 56px);
  border-bottom: 0;
}

.ruben {
  background: var(--ink-soft);
}

.ruben__intro {
  padding: 34px 24px 38px;
  background: var(--ink);
  text-align: center;
}

.ruben__intro h2 {
  margin: 0 auto;
  color: #c89052;
  font-size: clamp(22px, 1.8vw, 30px);
  font-style: italic;
  font-weight: 600;
}

.sticky-scene {
  position: relative;
  height: 180vh;
  height: 180svh;
  isolation: isolate;
}

.sticky-scene::after {
  display: none;
}

.sticky-scene__image {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  border-block: 1px solid rgba(118, 80, 32, 0.42);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__content {
  position: absolute;
  z-index: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  pointer-events: none;
}

.hero__content a {
  pointer-events: auto;
}

.sticky-scene__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.ruben__image {
  aspect-ratio: 2 / 1;
  background-image:
    linear-gradient(90deg, rgba(19, 14, 9, 0.22), transparent 38%, rgba(19, 14, 9, 0.18)),
    url("/assets/canva-ruben.webp");
}

.ruben__content blockquote {
  position: absolute;
  top: 66vh;
  top: 66svh;
  left: 63.2%;
  margin: 0;
  font-size: clamp(19px, 1.8vw, 31px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.12;
}

.history {
  background: #130f0b;
}

.history__intro {
  overflow: hidden;
  padding-block: clamp(52px, 4.6vw, 72px);
  border-block: 1px solid rgba(118, 80, 32, 0.38);
  background: var(--green);
}

.story-copy {
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

.story-copy h2 {
  margin-bottom: 8px;
  color: var(--paper-muted);
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.story-copy p {
  color: var(--paper-muted);
  font-size: clamp(18px, 1.55vw, 24px);
}

.story-copy--wide {
  position: relative;
  max-width: 1120px;
  padding-block: clamp(54px, 4.2vw, 66px);
  background: #130f0b;
  box-shadow: 0 0 0 100vmax #130f0b;
  clip-path: inset(0 -100vmax);
}

.story-copy--wide::before,
.story-copy--wide::after {
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: rgba(118, 80, 32, 0.38);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.story-copy--wide::before {
  top: 0;
}

.story-copy--wide::after {
  bottom: 0;
}

.story-copy--wide p:last-child {
  margin-top: 34px;
  margin-bottom: 0;
}

.story-copy--wide .ornament {
  margin: 17px auto 20px;
}

.history__image {
  aspect-ratio: 3 / 2;
  background-image:
    linear-gradient(180deg, rgba(35, 22, 12, 0.02), rgba(15, 11, 8, 0.48)),
    url("/assets/canva-history.webp");
}

.framed-copy {
  border: 2px solid var(--gold-soft);
  color: var(--paper-muted);
  background: rgba(25, 18, 12, 0.84);
  text-align: center;
}

.framed-copy p:last-child {
  margin-bottom: 0;
}

.framed-copy--history {
  position: absolute;
  top: 66vh;
  top: 66svh;
  left: 5%;
  width: min(38%, 500px);
  padding: clamp(12px, 1.5vw, 24px);
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.3;
}

.framed-copy--history p {
  margin-bottom: 4px;
}

.restoration {
  overflow: hidden;
  padding-bottom: clamp(55px, 6vw, 92px);
  background: #110d09;
}

.story-copy--compact {
  max-width: 980px;
  padding-block: clamp(48px, 5vw, 76px) clamp(38px, 4vw, 60px);
}

.story-copy--compact h2,
.story-copy--compact p {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: clamp(19px, 1.45vw, 24px);
}

.story-copy--compact .ornament:first-child {
  margin-bottom: 18px;
}

.story-copy--compact .ornament:last-child {
  margin-top: 18px;
}

.restoration__grid {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  grid-template-columns: 37.5% minmax(0, 1fr);
  column-gap: clamp(30px, 3.5vw, 56px);
  isolation: isolate;
}

.restoration__grid::before {
  position: absolute;
  z-index: -1;
  top: clamp(72px, 7.3vw, 115px);
  left: 50%;
  width: 100vw;
  height: clamp(132px, 12.4vw, 195px);
  background: #51341a;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.restoration__grid img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(143, 91, 28, 0.82);
  object-fit: cover;
}

.restoration__worker {
  object-position: center;
}

.restoration__right {
  display: grid;
  grid-template-rows: auto 1fr;
}

.restoration__right > img {
  aspect-ratio: 4 / 2.4;
}

.restoration__copy {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(26px, 3.4vw, 54px) clamp(34px, 5vw, 90px);
}

.restoration__copy p {
  max-width: 670px;
  margin: 12px 0;
  color: var(--paper-muted);
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.35;
  text-align: center;
}

.section-divider {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-block: 1px solid rgba(118, 80, 32, 0.24);
  background: var(--green);
}

.family {
  position: relative;
  padding: clamp(40px, 5vw, 74px) 24px clamp(42px, 5vw, 76px);
  background: var(--ink);
}

.family__corner {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(96px, 11vw, 160px);
  aspect-ratio: 200 / 190;
  background: url("/assets/ornament-corner-designer.webp") left top / contain no-repeat;
  opacity: 0.19;
  pointer-events: none;
}

.family__corner--tl {
  top: 30px;
  left: 24px;
}

.family__corner--tr {
  top: 30px;
  right: 24px;
  transform: scaleX(-1);
}

.family__corner--br {
  right: 24px;
  bottom: 30px;
  transform: scale(-1);
}

.family__corner--bl {
  bottom: 30px;
  left: 24px;
  transform: scaleY(-1);
}

.family h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  color: var(--paper-muted);
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.family__gallery {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(88vw, 1280px);
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.4vw, 38px);
}

.family__gallery figure {
  margin: 0;
}

.family__gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 450 / 800;
  border: 1px solid rgba(143, 91, 28, 0.88);
  object-fit: cover;
}

.quote-card {
  position: absolute;
  z-index: 3;
  margin: 0;
  padding: 17px 20px;
  border: 1px solid rgba(143, 91, 28, 0.9);
  color: #fff;
  background: var(--green);
  font-size: clamp(14px, 1.25vw, 21px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.14;
  text-align: center;
}

.quote-card--left {
  top: 38%;
  left: -13%;
  width: clamp(180px, 12.6vw, 250px);
}

.quote-card--right {
  top: 61%;
  right: auto;
  left: 84.5%;
  width: clamp(260px, 22vw, 390px);
}

.family__closing {
  margin: 28px auto 0;
  color: var(--paper-muted);
  font-size: clamp(20px, 1.65vw, 27px);
  text-align: center;
}

.progress {
  overflow-x: clip;
  border-block: 1px solid rgba(118, 80, 32, 0.56);
  background: #15110d;
}

.progress > .ornament {
  min-height: 58px;
  border-bottom: 1px solid rgba(118, 80, 32, 0.56);
  background: var(--green);
}

.progress__row {
  position: relative;
  z-index: 0;
  display: grid;
  width: min(calc(100% - 48px), 985px);
  margin-inline: auto;
  grid-template-columns: 1.075fr 1fr;
  gap: clamp(90px, 8.15vw, 155px);
  isolation: isolate;
  transform: translateX(clamp(0px, 4vw, 76px));
}

.progress__row::before {
  position: absolute;
  z-index: -1;
  left: calc(50% - clamp(0px, 4vw, 76px));
  width: 100vw;
  border-block: 1px solid rgba(118, 80, 32, 0.58);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.progress__row--first::before {
  top: 44%;
  height: 44%;
  background: var(--green);
}

.progress__row--second::before {
  top: 4%;
  height: 43%;
  background: rgba(81, 52, 26, 0.42);
}

.progress__row img {
  width: 100%;
  border: 1px solid rgba(143, 91, 28, 0.98);
  object-fit: cover;
}

.progress__row--second > img {
  transform: scaleX(-1);
}

.progress__row--first {
  padding-block: 26px 0;
}

.progress__row--second {
  padding-block: 10px 48px;
}

.progress__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-block: 48px;
}

.progress__copy h2,
.progress__copy > p:not(.framed-copy) {
  color: var(--paper-muted);
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.progress__copy .framed-copy {
  margin: 30px 0 0;
  padding: 20px 24px;
  border-width: 3px;
  border-color: rgba(118, 80, 32, 0.72);
  font-size: clamp(17px, 1.2vw, 20px);
}

.chapter-line {
  padding: 22px 24px;
  border-block: 1px solid rgba(118, 80, 32, 0.25);
  background: #1b1813;
  text-align: center;
}

.chapter-line p {
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(20px, 1.55vw, 25px);
}

.landscape {
  background: var(--ink);
}

.sticky-scene--landscape {
  height: 235vh;
  height: 235svh;
}

.sticky-scene--landscape::after {
  display: none;
}

.landscape__image {
  aspect-ratio: 16 / 9;
  background-image:
    linear-gradient(180deg, rgba(17, 12, 8, 0.02), rgba(17, 12, 8, 0.16)),
    url("/assets/canva-aerial.webp");
}

.landscape__copy {
  position: absolute;
  width: min(24%, 340px);
  padding: clamp(14px, 1.8vw, 26px);
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.2;
  text-align: center;
}

.landscape__copy--top {
  top: 25vh;
  top: 25svh;
  right: 5%;
}

.landscape__copy--bottom {
  top: 104vh;
  top: 104svh;
  left: 5.5%;
}

.future-quote {
  padding: clamp(26px, 2.2vw, 38px) 24px clamp(34px, 2.7vw, 46px);
  background: #120e0a;
  text-align: center;
}

.future-quote blockquote {
  max-width: 1240px;
  margin: 0 auto;
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 400;
  line-height: 1.25;
}

.rooms {
  padding: 18px 8px 0;
  background: #120e0a;
}

.rooms__gallery {
  display: grid;
  width: 100%;
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.rooms__gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.32 / 1;
  border: 1px solid rgba(143, 91, 28, 0.9);
  object-fit: cover;
}

.story-continuation {
  display: grid;
  min-height: clamp(76px, 7vw, 96px);
  place-items: center;
  border-block: 1px solid rgba(143, 91, 28, 0.64);
  background: #76531f;
  text-align: center;
}

.story-continuation p {
  margin: 0;
  padding: 18px 24px;
  color: var(--paper);
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 600;
}

.room-intro {
  position: relative;
  min-height: clamp(390px, 35vw, 520px);
  padding: clamp(72px, 7vw, 104px) 5vw clamp(92px, 9vw, 132px);
  background: #120e0a;
}

.room-intro__welcome,
.room-intro__friend,
.room-intro blockquote {
  color: var(--paper-muted);
  font-style: italic;
  font-weight: 600;
}

.room-intro__welcome {
  margin: 0 0 12px;
  font-size: clamp(19px, 1.5vw, 24px);
}

.room-intro h2 {
  width: min(80%, 1100px);
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
  white-space: nowrap;
}

.room-intro__friend {
  width: min(72%, 900px);
  margin: 18px 0 0;
  font-size: clamp(18px, 1.5vw, 23px);
  text-align: right;
}

.room-intro blockquote {
  position: absolute;
  top: 70px;
  right: 4.5vw;
  width: min(16vw, 230px);
  margin: 0;
  font-size: clamp(17px, 1.35vw, 22px);
  font-style: normal;
  line-height: 1.35;
  text-align: center;
}

.room-showcase {
  background: #120e0a;
}

.room-card {
  --room-strip: #423a28;
  --room-heading: #433c29;
  --room-label: #1e1b12;
  margin: 0;
  padding-top: clamp(88px, 6.3vw, 104px);
  background: #1a140d;
}

.room-card--brown {
  --room-strip: #42342a;
  --room-heading: #42342a;
  --room-label: #1e1611;
}

.room-card--beige {
  --room-strip: #9a8669;
  --room-heading: #9f8a6c;
  --room-label: #b8a796;
}

.room-card--blue {
  --room-strip: #282b30;
  --room-heading: #282b30;
  --room-label: #1e323b;
}

.room-card--yellow {
  --room-strip: #986d29;
  --room-heading: #9c702a;
  --room-label: #ab823c;
}

.room-card--pink {
  --room-strip: #6b4737;
  --room-heading: #6d4939;
  --room-label: #653435;
  padding-bottom: clamp(56px, 4.5vw, 74px);
  background: #1a140d;
}

.room-card + .room-card {
  padding-top: clamp(72px, 4.8vw, 84px);
}

.room-card.room-card--beige,
.room-card.room-card--blue {
  padding-top: clamp(88px, 6.3vw, 104px);
}

.room-card__heading {
  position: relative;
  min-height: clamp(56px, 3.9vw, 64px);
  border-block: 1px solid rgba(143, 91, 28, 0.76);
  background: var(--room-heading, var(--room-strip));
}

.room-card--green .room-card__heading {
  min-height: 56px;
}

.room-card__heading h3 {
  position: absolute;
  right: 17%;
  top: 0;
  min-width: min(310px, 32vw);
  margin: 0;
  padding: 15px 38px;
  transform: translateY(-50%);
  border: 1px solid rgba(177, 137, 68, 0.9);
  border-radius: 20px;
  background: var(--room-label);
  color: #fff;
  font-size: clamp(23px, 2vw, 32px);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.room-card--left .room-card__heading h3 {
  right: auto;
  left: 17%;
}

.room-card--pink .room-card__heading h3 {
  left: 18.5%;
  min-width: min(300px, 32vw);
  padding: 17px 30px;
}

.room-card__gallery {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
  border-block: 1px solid #9a6629;
}

.room-card__panel {
  position: relative;
  min-width: 0;
  height: clamp(300px, 30.9vw, 469px);
  overflow: hidden;
  border-left: 1px solid #9a6629;
}

.room-card__panel:first-child {
  border-left: 0;
}

.room-card__panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card__panel--crop-top-brown img {
  transform: scale(1.095);
  transform-origin: center bottom;
}

.room-card__panel--crop-top-beige img {
  transform: scale(1.07);
  transform-origin: center bottom;
}

.room-card__panel--crop-top-pink img {
  transform: scale(1.06);
  transform-origin: center bottom;
}

.room-card__panel--crop-left-blue img {
  transform: scale(1.04);
  transform-origin: right center;
}

.room-card__panel--split-green {
  container-type: inline-size;
}

.room-card__panel--split-green::after {
  position: absolute;
  top: calc(50% + 9.4cqw);
  right: 0;
  left: 0;
  z-index: 1;
  height: 8px;
  background: #9a6629;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}

.room-card__description {
  display: grid;
  min-height: 76px;
  margin: 0;
  padding: 14px clamp(22px, 5vw, 80px);
  place-items: center;
  border-block: 1px solid rgba(143, 91, 28, 0.6);
  background: var(--room-strip);
  color: #fff;
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.room-showcase__booking {
  display: grid;
  min-height: clamp(180px, 18vw, 280px);
  padding: 58px 24px;
  place-items: center;
  border-top: 1px solid rgba(143, 91, 28, 0.64);
  background: #120e0a;
}

.room-showcase__button {
  min-width: min(360px, calc(100vw - 44px));
  padding: 20px 42px;
  border: 1px solid rgba(177, 137, 68, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 1.5vw, 25px);
  font-style: italic;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(118, 80, 32, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(112, 80, 40, 0.16), transparent 42%),
    linear-gradient(145deg, #20261f 0%, #1a201a 58%, #151912 100%);
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  z-index: 0;
  top: 112px;
  width: 220px;
  height: 220px;
  opacity: 0.13;
  background: url("/assets/ornament-corner-designer.webp") center / contain no-repeat;
  content: "";
  pointer-events: none;
}

.site-footer::before {
  left: -42px;
}

.site-footer::after {
  right: -42px;
  transform: scaleX(-1);
}

.site-footer__opening {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 82px;
  place-items: center;
  border-bottom: 1px solid rgba(118, 80, 32, 0.48);
  background: rgba(12, 15, 11, 0.24);
}

.site-footer__opening .ornament--line span {
  opacity: 0.78;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 72px), 1220px);
  margin-inline: auto;
  padding: clamp(68px, 7vw, 108px) 0 clamp(58px, 6vw, 92px);
  align-items: center;
  grid-template-columns: 0.78fr 1.35fr 0.9fr;
  gap: clamp(42px, 6vw, 92px);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  color: var(--paper-muted);
  text-align: center;
  text-decoration: none;
}

.site-footer__mark {
  display: grid;
  width: 158px;
  aspect-ratio: 1.22 / 1;
  place-items: center;
  border: 1px solid rgba(244, 237, 223, 0.72);
  background: #171712;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.site-footer__brand:hover .site-footer__mark {
  border-color: #cf9a5c;
  transform: translateY(-3px);
}

.site-footer__mark img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: invert(1) brightness(2.6);
}

.site-footer__home {
  max-width: 180px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.2;
}

.site-footer__message {
  text-align: center;
}

.site-footer__eyebrow {
  margin-bottom: 17px;
  color: #cf9a5c;
  font: 600 12px/1.2 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__message h2 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.site-footer__message > p:last-of-type {
  margin-bottom: 22px;
  color: var(--paper-muted);
  font-size: 19px;
  font-style: italic;
}

.site-footer__message .ornament--vintage {
  margin-inline: auto;
}

.site-footer__action {
  display: flex;
  min-height: 196px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(28px, 3vw, 46px);
  border-left: 1px solid rgba(118, 80, 32, 0.62);
}

.site-footer__contact {
  display: flex;
  margin-bottom: 24px;
  flex-direction: column;
  gap: 5px;
  color: var(--paper-muted);
  font-size: 16px;
  font-style: normal;
  line-height: 1.35;
}

.site-footer__contact-name {
  margin-bottom: 3px;
  color: var(--paper);
  font-size: 20px;
}

.site-footer__contact a {
  color: var(--paper);
  font: 700 13px/1.4 var(--sans);
  letter-spacing: 0.035em;
  text-decoration-color: rgba(207, 154, 92, 0.5);
  text-underline-offset: 5px;
  transition: color 160ms ease;
}

.site-footer__booking {
  min-width: 182px;
  margin-bottom: 18px;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible,
.site-footer__base a:hover,
.site-footer__base a:focus-visible {
  color: #cf9a5c;
}

.site-footer__base {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(calc(100% - 72px), 1220px);
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-top: 1px solid rgba(118, 80, 32, 0.5);
  color: rgba(215, 201, 176, 0.72);
  font: 500 10px/1.4 var(--sans);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__base p {
  margin: 0;
}

.site-footer__base nav {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
}

.site-footer__base a {
  text-decoration: none;
  transition: color 160ms ease;
}

@media (max-width: 1180px) {
  .family__gallery {
    width: min(88vw, 1040px);
  }
}

@media (max-width: 900px) {
  .site-header {
    justify-content: flex-end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 106px);
    right: clamp(54px, 5vw, 88px);
    display: grid;
    width: min(282px, calc(100vw - 32px));
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(207, 154, 92, 0.48);
    border-radius: 12px;
    background: rgba(22, 24, 20, 0.98);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    pointer-events: none;
    backdrop-filter: blur(14px);
  }

  .site-header[data-menu-open="true"] .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(245, 237, 221, 0.12);
    font-size: 12px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .button--header {
    display: inline-flex;
    order: 1;
  }

  .room-intro h2 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .site-header {
    top: 18px;
    right: 16px;
    left: auto;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    transform: none;
  }

  .site-nav {
    top: calc(100% + 64px);
    right: 0;
  }

  .button--header {
    min-height: 41px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .hero {
    padding: 0;
  }

  .hero__frame {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    border-inline: 0;
    background-image:
      linear-gradient(180deg, rgba(17, 13, 9, 0.05) 20%, rgba(17, 13, 9, 0.5) 54%, rgba(17, 13, 9, 0.97) 83%),
      url("/assets/canva-hero.webp");
    background-position: center, 39% center;
    background-size: 100% 100%, auto 108%;
  }

  .hero__logo {
    top: 18px;
    left: 18px;
    width: 136px;
    min-width: 0;
  }

  .hero__copy {
    top: auto;
    right: 24px;
    bottom: 38px;
    left: 24px;
    width: auto;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.95);
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero__lead {
    max-width: 300px;
    margin: 0 auto 28px;
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: min(100%, 330px);
    margin-inline: auto;
  }

  .statement {
    padding-inline: 26px;
  }

  .statement p {
    font-size: 22px;
  }

  .sticky-scene::after,
  .sticky-scene--landscape::after {
    display: none;
  }

  .ruben__image {
    height: 118vw;
    max-height: 740px;
    aspect-ratio: auto;
    background-position: 49% center;
  }

  .ruben__content blockquote {
    top: 62vh;
    top: 62svh;
    right: 20px;
    bottom: auto;
    left: 20px;
    font-size: 24px;
    text-align: center;
  }

  .story-copy--wide {
    padding-block: 68px;
  }

  .story-copy p {
    font-size: 19px;
  }

  .history__image {
    min-height: 112vw;
    aspect-ratio: auto;
    background-position: 58% center;
  }

  .framed-copy--history {
    top: 62vh;
    top: 62svh;
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    font-size: 18px;
  }

  .restoration__grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .restoration__worker {
    max-height: 720px;
  }

  .restoration__right > img {
    border-top: 0;
    border-left: 1px solid rgba(143, 91, 28, 0.82);
  }

  .restoration__copy {
    padding: 36px 20px;
  }

  .restoration__copy p {
    font-size: 19px;
  }

  .family__ornaments {
    display: none;
  }

  .family__gallery {
    width: min(100%, 390px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .family__gallery img {
    max-height: 650px;
  }

  .quote-card {
    position: relative;
    inset: auto;
    width: auto;
    text-align: center;
  }

  .quote-card--left {
    grid-row: 2;
  }

  .quote-card--right {
    grid-row: 6;
  }

  .progress__row {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 0;
    transform: none;
  }

  .progress__row::before {
    left: 50%;
  }

  .progress__row--second .progress__copy {
    order: 2;
  }

  .progress__copy {
    padding-block: 36px;
  }

  .progress__copy .framed-copy {
    text-align: center;
  }

  .landscape__image {
    min-height: 130vw;
    aspect-ratio: auto;
    background-position: center;
  }

  .landscape__copy {
    right: 18px;
    left: 18px;
    width: auto;
    font-size: 18px;
  }

  .landscape__copy--top {
    top: 25vh;
    top: 25svh;
  }

  .landscape__copy--bottom {
    top: 104vh;
    top: 104svh;
    bottom: auto;
  }

  .sticky-scene__image,
  .ruben__image,
  .history__image,
  .landscape__image {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
  }

  .rooms {
    padding: 12px 12px 0;
  }

  .rooms__gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-continuation {
    min-height: 72px;
  }

  .room-intro {
    min-height: 520px;
    padding: 64px 22px 126px;
    text-align: center;
  }

  .room-intro h2,
  .room-intro__friend {
    width: 100%;
  }

  .room-intro h2 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .room-intro__friend {
    text-align: center;
  }

  .room-intro blockquote {
    position: static;
    width: min(100%, 330px);
    margin: 54px auto 0;
  }

  .room-card__heading {
    min-height: 78px;
  }

  .room-card__heading h3,
  .room-card--left .room-card__heading h3 {
    right: 50%;
    left: auto;
    width: min(calc(100% - 40px), 320px);
    min-width: 0;
    translate: 50% -50%;
    transform: none;
  }

  .room-card__gallery {
    grid-template-columns: 1fr 1.45fr 1fr;
    gap: 0;
  }

  .room-card__panel {
    height: clamp(180px, 57vw, 280px);
  }

  .room-card__panel img {
    width: calc(100% + 6px);
    max-width: none;
    height: calc(100% + 6px);
    margin: -3px;
  }

  .room-card__panel--split-green::after {
    top: 56.25%;
  }

  .room-card__description {
    min-height: 112px;
    padding: 24px 22px;
    font-size: clamp(18px, 5vw, 22px);
  }

  .room-card {
    padding-top: 56px;
  }

  .room-card.room-card--beige,
  .room-card.room-card--blue {
    padding-top: 56px;
  }

  .room-card--pink {
    padding-bottom: 48px;
  }

  .room-card .room-card__heading {
    min-height: 78px;
  }

  .room-card .room-card__heading h3 {
    top: 50%;
  }

  .room-card--pink .room-card__heading h3 {
    left: auto;
    min-width: 0;
    padding: 15px 30px;
  }

  .room-card .room-card__description {
    min-height: 112px;
    padding: 24px 22px;
  }

  .room-showcase__booking {
    min-height: 190px;
    padding: 50px 20px;
  }

  .room-showcase__button {
    min-width: 0;
    width: min(100%, 360px);
    padding: 18px 24px;
  }

  .site-footer::before,
  .site-footer::after {
    display: none;
  }

  .site-footer__opening {
    min-height: 66px;
  }

  .site-footer__inner {
    width: min(calc(100% - 40px), 420px);
    padding: 58px 0 52px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer__mark {
    width: 146px;
  }

  .site-footer__message h2 {
    font-size: clamp(38px, 11.5vw, 48px);
  }

  .site-footer__action {
    min-height: 0;
    align-items: center;
    padding: 38px 0 0;
    border-top: 1px solid rgba(118, 80, 32, 0.62);
    border-left: 0;
    text-align: center;
  }

  .site-footer__base {
    width: calc(100% - 40px);
    padding: 26px 0 30px;
    align-items: center;
    flex-direction: column-reverse;
    gap: 25px;
    text-align: center;
  }

  .site-footer__base nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 380px) {
  .button--header {
    padding-inline: 8px;
    font-size: 10px;
  }
}

@media (max-width: 340px) {
  .hero__logo {
    width: 108px;
  }

  .button--header {
    padding-inline: 6px;
    font-size: 9.5px;
  }
}
