@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/marcellus-latin-400.woff2") format("woff2");
}

:root {
  --ink: #17130d;
  --espresso: #2b241b;
  --porcelain: #fbf7ee;
  --champagne: #e7dcc6;
  --champagne-2: #d5c4a6;
  --gold: #a78e5a;
  --sea: #294f48;
  --clay: #9a5641;
  --olive: #7c8065;
  --paper: #fffdf8;
  --muted: #675e51;
  --muted-strong: #51483d;
  --muted-soft: #766b5e;
  --scrim: rgba(12, 10, 7, 0.59);
  --scrim-deep: rgba(12, 10, 7, 0.67);
  --soft-champagne: #f4ecdd;
  --line: rgba(23, 19, 13, 0.14);
  --line-light: rgba(251, 247, 238, 0.18);
  --shadow: 0 36px 90px rgba(23, 19, 13, 0.2);
  --max: 1240px;
  --display: "Marcellus", "Didot", "Bodoni 72", Georgia, serif;
  --body: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --type-label: 11px;
  --type-note: 12px;
  --type-small: 13px;
  --type-body: 16px;
  --type-nav-mobile: 18px;
  --type-nav-menu: 40px;
  --type-lead: 21px;
  --type-hero: 140px;
  --type-hero-mobile: 54px;
  --type-page-hero: 84px;
  --type-page-hero-mobile: 34px;
  --type-headline: 70px;
  --type-title: 43px;
  --type-caption-display: 23px;
  --type-reservation: 19px;
  --type-tile-title: 41px;
  --type-proof-title: 38px;
  --type-close: 58px;
  --type-story: 61px;
  --type-inquiry: 97px;
  --type-section-title: 52px;
  --type-social-title: 49px;
  --type-social-title-mobile: 27px;
  --header-height: 66px;
  --mobile-text-gutter: clamp(24px, 7vw, 30px);
  --mobile-media-gutter: 14px;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: #000;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--body);
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.home-page {
  background: #000;
}

body.home-page main {
  background:
    linear-gradient(180deg, rgba(167, 142, 90, 0.055), transparent 28%),
    linear-gradient(90deg, rgba(23, 19, 13, 0.032) 1px, transparent 1px),
    var(--porcelain);
  background-size: 100% 100%, 24vw 100%, auto;
}

body.home-page .hero {
  background: #000;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(167, 142, 90, 0.055), transparent 28%),
    linear-gradient(90deg, rgba(23, 19, 13, 0.032) 1px, transparent 1px);
  background-size: 100% 100%, 24vw 100%;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 400;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--porcelain);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header::after {
  content: none;
}

.site-header.home-header {
  position: absolute;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  color: var(--porcelain);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.home-header.is-scrolled {
  position: fixed;
  opacity: 1;
  pointer-events: auto;
  color: var(--ink);
  background: rgba(251, 247, 238, 0.91);
  box-shadow: 0 16px 44px rgba(23, 19, 13, 0.08);
  backdrop-filter: blur(18px);
  animation: header-drop 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.nav-open .site-header.home-header {
  position: fixed;
  color: var(--porcelain);
  background: rgba(23, 19, 13, 0.98);
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header.inner,
.site-header.is-scrolled {
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  padding-block: 10px;
}

.brand {
  position: relative;
  z-index: 35;
  width: clamp(142px, 13vw, 206px);
}

.site-header.inner .brand,
.site-header.is-scrolled .brand {
  width: clamp(114px, 10.4vw, 165px);
}

body.nav-open .brand img {
  filter: brightness(0) invert(1);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 30px);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-mobile-footer {
  display: none;
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  display: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-cta::after {
  display: none;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
}

.guide-header .brand {
  width: clamp(114px, 10.4vw, 165px);
}

.guide-header span {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px clamp(16px, 2.2vw, 28px);
  align-items: center;
}

.guide-links a {
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-links a.active,
.guide-links a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  color: var(--porcelain);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, var(--scrim), rgba(12, 10, 7, 0.36)),
    linear-gradient(0deg, var(--scrim-deep), rgba(12, 10, 7, 0.06) 62%);
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  align-self: end;
  margin: 0 auto clamp(40px, 7vw, 92px);
  padding-left: 0;
}

.hero-location,
.eyebrow,
.kicker {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1,
.page-hero-copy h1,
.gallery-intro h1,
.inquiry-copy h1 {
  margin: 0;
  max-width: 9ch;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.02em;
  font-size: var(--type-hero);
}

.page-hero-copy h1,
.gallery-intro h1 {
  max-width: 11ch;
  font-size: var(--type-page-hero);
  line-height: 0.96;
}

.hero-copy {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(251, 247, 238, 0.86);
  font-size: var(--type-lead);
  line-height: 1.65;
}

.copy-mobile {
  display: none;
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(28px, 6vw, 82px);
  z-index: 2;
  width: min(320px, 30vw);
  padding: 22px 0 0 24px;
  border-top: 1px solid rgba(251, 247, 238, 0.44);
  color: rgba(251, 247, 238, 0.78);
}

.hero-note span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--display);
  font-size: var(--type-caption-display);
  font-weight: 400;
  line-height: 1.08;
}

.hero-actions,
.booking-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.primary.dark {
  color: var(--porcelain);
  background: var(--ink);
}

.button.ghost {
  color: var(--porcelain);
  border-color: rgba(251, 247, 238, 0.56);
  background: rgba(251, 247, 238, 0.04);
}

.button.dark-text {
  color: var(--ink);
  border-color: rgba(23, 19, 13, 0.22);
  background: transparent;
}

.button.dark-text:hover {
  border-color: rgba(23, 19, 13, 0.44);
  background: rgba(23, 19, 13, 0.04);
}

.reservation-bar {
  position: relative;
  z-index: 5;
  width: min(1240px, calc(100% - 36px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.reservation-bar label {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.reservation-bar span {
  color: var(--muted);
  font-size: var(--type-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reservation-bar input,
.reservation-bar select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: var(--type-reservation);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  appearance: none;
}

.reservation-bar input:focus,
.reservation-bar select:focus {
  outline: 0;
}

.reservation-bar label:focus-within {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.reservation-action {
  display: grid;
  border: 0;
  cursor: pointer;
  min-width: 190px;
  place-items: center;
  color: var(--porcelain);
  background: var(--ink);
  text-align: center;
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.band {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(82px, 11vw, 154px) clamp(20px, 4vw, 44px);
}

.manifest {
  display: grid;
  grid-template-columns: minmax(90px, 170px) minmax(0, 1fr);
  gap: clamp(32px, 8vw, 112px);
  align-items: start;
}

.manifest-seal {
  padding-top: 8px;
}

.manifest-seal img {
  width: 100%;
  opacity: 0.82;
}

h2,
.suite-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-headline);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
}

h3 {
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-title);
  font-weight: 400;
  line-height: 1;
}

p {
  font-size: var(--type-body);
}

.manifest-copy p:last-child,
.suite-editorial-copy p,
.climate-copy p,
.suite-copy p,
.story-copy p,
.inquiry-copy p,
.contact-proof p,
.image-story p,
.proof-item span,
.booking-strip p {
  max-width: 690px;
  color: var(--muted);
}

.suite-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  min-height: clamp(560px, 58vw, 660px);
  background: var(--espresso);
  color: var(--porcelain);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.suite-editorial::before,
.proof-section::before,
.instagram-grid .text-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at 18% 22%, rgba(251, 247, 238, 0.13) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 64%, rgba(251, 247, 238, 0.09) 0 1px, transparent 1.6px),
    linear-gradient(132deg, transparent 0 34%, rgba(251, 247, 238, 0.07) 34.3%, transparent 35.4% 61%, rgba(251, 247, 238, 0.05) 61.4%, transparent 62.2%),
    linear-gradient(24deg, rgba(23, 19, 13, 0.16), transparent 42%, rgba(251, 247, 238, 0.04));
  background-size: 42px 42px, 58px 58px, 100% 100%, 100% 100%;
  mix-blend-mode: screen;
  z-index: 0;
}

.suite-editorial > *,
.proof-section > *,
.instagram-grid .text-tile > * {
  position: relative;
  z-index: 1;
}

.suite-editorial-media,
.suite-editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.suite-editorial-media img {
  object-fit: cover;
}

.suite-editorial-copy {
  align-self: center;
  max-width: 640px;
  padding: clamp(34px, 5vw, 64px);
}

.suite-editorial-copy p {
  color: rgba(251, 247, 238, 0.72);
}

.suite-editorial-copy h2 {
  max-width: 10ch;
  font-size: var(--type-close);
  line-height: 0.96;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 28px 0 8px;
}

.amenity-list span {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  color: rgba(251, 247, 238, 0.82);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.amenity-list svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(167, 142, 90, 0.58);
  border-radius: 999px;
  stroke: var(--gold);
  stroke-width: 1.45;
  fill: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 22px;
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.experience-band {
  padding: clamp(82px, 11vw, 154px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 870px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading p:not(.kicker),
.proof-copy p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.7;
}

.proof-copy p:last-child {
  color: rgba(251, 247, 238, 0.72);
}

.chapter-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.chapter-tile,
.experience-tile {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--porcelain);
}

.chapter-tile img,
.experience-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 700ms ease, opacity 300ms ease;
}

.chapter-tile::after,
.experience-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(23, 19, 13, 0.88), rgba(23, 19, 13, 0.08) 58%);
}

.chapter-tile:hover img,
.experience-tile:hover img {
  transform: scale(1.055);
  opacity: 0.94;
}

.chapter-tile span {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--gold);
  font-size: var(--type-note);
  font-weight: 400;
  letter-spacing: 0.18em;
  z-index: 2;
}

.chapter-tile h3,
.chapter-tile p,
.experience-tile span {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.chapter-tile h3 {
  bottom: 78px;
}

.chapter-tile p {
  bottom: 22px;
  margin: 0;
  color: rgba(251, 247, 238, 0.76);
}

.experience-tile span {
  bottom: 24px;
  font-family: var(--display);
  font-size: var(--type-tile-title);
  line-height: 1;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 98px);
  padding: clamp(82px, 11vw, 154px) clamp(20px, 5vw, 72px);
  background: var(--sea);
  color: var(--porcelain);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.proof-copy {
  max-width: 560px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.proof-item {
  min-height: 190px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-item strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: var(--type-proof-title);
  font-weight: 400;
}

.proof-item span {
  color: rgba(251, 247, 238, 0.76);
}

.cinematic-strip,
.editorial-gallery {
  display: grid;
  grid-template-columns: 0.72fr 1fr 0.72fr;
  gap: 16px;
  padding: clamp(82px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.cinematic-strip img,
.editorial-gallery img {
  width: 100%;
  height: clamp(300px, 36vw, 520px);
  object-fit: cover;
}

.cinematic-strip img:nth-child(2),
.editorial-gallery img:nth-child(2) {
  transform: translateY(44px);
}

.booking-strip {
  max-width: var(--max);
  margin: 0 auto clamp(54px, 8vw, 104px);
  padding: clamp(36px, 5vw, 68px);
  background: var(--champagne);
  color: var(--ink);
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.booking-strip > div {
  max-width: 760px;
}

.booking-strip h2 {
  font-size: var(--type-close);
}

.luxury-close p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(280px, 560px) minmax(280px, auto);
  gap: 34px;
  align-items: center;
  padding: 56px clamp(20px, 5vw, 72px);
  color: var(--porcelain);
  background: var(--ink);
}

.site-footer.compact {
  grid-template-columns: minmax(160px, 230px) auto;
  justify-content: space-between;
}

.site-footer img {
  width: min(161px, 46vw);
}

.site-footer p {
  max-width: 560px;
  color: rgba(251, 247, 238, 0.66);
  line-height: 1.65;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(251, 247, 238, 0.74);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cookie-link {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.footer-cookie-link:hover,
.footer-cookie-link:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--porcelain);
}

@media (max-width: 1400px) {
  .site-footer:not(.compact) {
    grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
    align-items: start;
  }

  .site-footer:not(.compact) p {
    max-width: 640px;
  }

  .site-footer:not(.compact) nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    row-gap: 14px;
  }
}

.page {
  padding-top: var(--header-height);
}

.page-hero,
.video-page-hero {
  position: relative;
  min-height: clamp(540px, 72svh, 760px);
  display: grid;
  align-items: end;
  padding: clamp(100px, 13vw, 176px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 104px);
  color: var(--porcelain);
  overflow: hidden;
}

.page-hero > img,
.video-page-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after,
.video-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 19, 13, 0.78), rgba(23, 19, 13, 0.12)), linear-gradient(90deg, rgba(23, 19, 13, 0.66), transparent);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.page-hero-copy p {
  max-width: 670px;
  color: rgba(251, 247, 238, 0.78);
  font-size: var(--type-lead);
}

.suite-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.suite-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted-strong);
  font-weight: 400;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(82px, 10vw, 138px);
}

.image-story {
  display: grid;
  align-content: start;
  gap: 20px;
}

.image-story img {
  width: 100%;
  height: clamp(310px, 34vw, 520px);
  object-fit: cover;
}

.image-story h2 {
  font-size: var(--type-story);
}

.experience-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 72px);
}

.experience-story:nth-of-type(even) {
  background: var(--soft-champagne);
}

.experience-story.flipped {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
}

.experience-story.flipped .story-copy {
  order: 2;
}

.story-images {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 18px;
  align-items: end;
}

.story-images img {
  width: 100%;
  height: clamp(280px, 35vw, 520px);
  object-fit: cover;
}

.story-images img:first-child {
  height: clamp(230px, 28vw, 420px);
}

.gallery-intro {
  max-width: 990px;
  padding: clamp(106px, 14vw, 182px) clamp(20px, 5vw, 72px) 38px;
}

.gallery-intro p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.7;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 238px;
  grid-auto-flow: dense;
  gap: 12px;
  padding: 0 clamp(12px, 3vw, 36px) clamp(82px, 10vw, 138px);
}

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

.masonry-gallery .wide {
  grid-column: span 2;
}

.masonry-gallery .tall {
  grid-row: span 2;
}

.inquiry-page {
  background: var(--porcelain);
}

.inquiry-hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  padding: clamp(82px, 10vw, 138px) clamp(20px, 4vw, 44px);
}

.inquiry-copy h1 {
  color: var(--ink);
  font-size: var(--type-inquiry);
}

.inquiry-form {
  background: var(--paper);
  padding: clamp(25px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inquiry-form .form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(23, 19, 13, 0.18);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font-size: var(--type-body);
  letter-spacing: 0;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(167, 142, 90, 0.16);
  outline: 0;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted-soft);
  font-size: var(--type-small);
}

.inquiry-form .privacy-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 14px 0 20px;
  color: var(--muted-soft);
  font-size: var(--type-small);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.inquiry-form .privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--ink);
}

.inquiry-form .privacy-check a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  left: clamp(14px, 3vw, 34px);
  z-index: 90;
  color: var(--ink);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: clamp(22px, 4vw, 48px);
  width: min(100%, 1020px);
  margin-left: auto;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(23, 19, 13, 0.12);
  background: rgba(251, 247, 238, 0.96);
  box-shadow: 0 34px 100px rgba(23, 19, 13, 0.2);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.cookie-consent__mark {
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2.2vw, 30px);
  width: clamp(38px, 4.6vw, 58px);
  height: auto;
  opacity: 0.58;
  pointer-events: none;
}

.cookie-consent h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.cookie-consent p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.62;
}

.cookie-consent__details {
  margin-top: 14px;
  padding: 0 0 6px;
  color: var(--gold);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font: 400 var(--type-label) / 1.2 var(--body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-consent__choices {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.cookie-consent__details-panel {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 19, 13, 0.12);
  border-bottom: 1px solid rgba(23, 19, 13, 0.12);
}

.cookie-consent__details-panel[hidden] {
  display: none;
}

.cookie-consent__details-panel label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-size: var(--type-small);
  line-height: 1.45;
}

.cookie-consent__details-panel input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ink);
}

.cookie-consent__details-panel small {
  display: block;
  margin-top: 2px;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.45;
}

.cookie-consent__details-panel a {
  width: fit-content;
  color: var(--ink);
  font-size: var(--type-small);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-consent button:focus-visible,
.cookie-consent a:focus-visible,
.footer-cookie-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .cookie-consent {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
  }

  .cookie-consent__panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 24px - env(safe-area-inset-bottom));
    margin: 0;
    padding: 18px 18px 16px;
    overflow: auto;
  }

  .cookie-consent__mark {
    top: 15px;
    right: 16px;
    width: 36px;
    opacity: 0.5;
  }

  .cookie-consent .eyebrow {
    margin-bottom: 8px;
    padding-right: 48px;
    font-size: 10px;
  }

  .cookie-consent h2 {
    max-width: 13ch;
    padding-right: 48px;
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.02;
  }

  .cookie-consent p {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cookie-consent__details {
    margin-top: 12px;
    padding-bottom: 4px;
    font-size: 10px;
  }

  .cookie-consent__choices {
    gap: 12px;
  }

  .cookie-consent__details-panel {
    gap: 10px;
    padding: 12px 0;
  }

  .cookie-consent__details-panel label {
    grid-template-columns: 17px minmax(0, 1fr);
    font-size: 12px;
  }

  .cookie-consent__details-panel input {
    width: 17px;
    height: 17px;
  }

  .cookie-consent__details-panel small {
    font-size: 11px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .cookie-consent__actions .button {
    width: 100%;
    min-height: 42px;
    padding: 11px 14px;
    font-size: 10px;
  }
}

.contact-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  padding: 0 clamp(20px, 5vw, 72px) clamp(82px, 10vw, 138px);
  background: var(--porcelain);
}

.contact-proof img {
  width: 100%;
  max-height: 630px;
  object-fit: cover;
}

.suite-preview {
  padding-top: clamp(70px, 9vw, 124px);
}

.suite-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.suite-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  isolation: isolate;
  color: var(--porcelain);
  background: var(--ink);
}

.suite-card img,
.suite-slider img,
.blog-card img,
.instagram-grid img,
.instagram-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-card img {
  position: absolute;
  inset: 0;
  opacity: 0.78;
  transition: transform 700ms ease, opacity 260ms ease;
}

.suite-card::after,
.linked-gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 19, 13, 0.84), transparent 58%);
  z-index: 1;
}

.suite-card:hover img {
  opacity: 0.96;
  transform: scale(1.045);
}

.suite-card span,
.suite-card strong,
.suite-card-price {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 2;
}

.suite-card span {
  bottom: 74px;
  color: var(--porcelain);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.suite-card strong {
  bottom: 24px;
  font-family: var(--display);
  font-size: var(--type-title);
  font-weight: 400;
  line-height: 1;
}

.suite-card-price {
  top: 22px;
  left: auto;
  right: 22px;
  color: rgba(251, 247, 238, 0.82);
  font-size: var(--type-label);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px color-mix(in srgb, var(--ink) 34%, transparent);
}

.suite-catalog {
  display: grid;
  gap: 1px;
  padding: clamp(20px, 5vw, 72px) clamp(20px, 5vw, 72px) clamp(82px, 10vw, 138px);
  background: var(--line);
}

.suite-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  min-height: 520px;
  background: var(--porcelain);
}

.suite-detail:nth-child(even) {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.9fr);
}

.suite-detail:nth-child(even) .suite-slider {
  order: 2;
}

.suite-detail > div:not(.suite-slider) {
  align-self: center;
  padding: clamp(34px, 6vw, 78px);
}

.suite-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--espresso);
  isolation: isolate;
}

.suite-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 320ms ease, transform 720ms ease;
}

.suite-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.suite-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  color: var(--porcelain);
}

.suite-slider-controls button {
  position: absolute;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.suite-slider-controls [data-slide-prev] {
  left: 18px;
}

.suite-slider-controls [data-slide-next] {
  right: 18px;
}

.suite-slider-controls button:hover,
.suite-slider-controls button:focus-visible {
  background: color-mix(in srgb, var(--ink) 18%, transparent);
  transform: translateY(-50%) scale(1.04);
}

.suite-slider-controls button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.suite-slider-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.suite-slider-controls span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.suite-detail span,
.blog-card span,
.instagram-notes strong {
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.suite-detail h2,
.blog-card h2,
.guide-grid h2,
.instagram-notes h2 {
  margin-top: 14px;
  font-size: var(--type-section-title);
}

.suite-detail p,
.blog-card p,
.guide-grid p,
.instagram-notes p {
  color: var(--muted);
}

.suite-detail .suite-price-line,
.suite-article-price {
  margin: 14px 0 0;
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.suite-article-price {
  margin-bottom: 18px;
}

.suite-article .article-hero-copy {
  max-width: 820px;
}

.suite-article .article-hero-copy h1 {
  max-width: 11ch;
}

.suite-article-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(22px, 4vw, 46px);
  margin-top: 34px;
  background: transparent;
}

.suite-article-facts span {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 22px 0;
  color: var(--muted-strong);
  background: transparent;
  border-top: 1px solid var(--line);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.blog-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.blog-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(430px, 48vw, 620px);
  overflow: hidden;
  isolation: isolate;
  color: var(--porcelain);
  background: var(--ink);
  box-shadow: 0 18px 60px rgba(23, 19, 13, 0.08);
}

.blog-card.featured {
  grid-column: 1 / -1;
  min-height: clamp(520px, 58vw, 720px);
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(23, 19, 13, 0.86), rgba(23, 19, 13, 0.22) 62%, rgba(23, 19, 13, 0.06)),
    linear-gradient(90deg, rgba(23, 19, 13, 0.5), transparent 58%);
}

.blog-card img {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: transform 700ms ease, opacity 260ms ease;
}

.blog-card:hover img,
.blog-card:focus-within img {
  opacity: 1;
  transform: scale(1.035);
}

.blog-card > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(28px, 5vw, 68px);
}

.blog-card p {
  color: rgba(251, 247, 238, 0.8);
}

.blog-card h2 {
  color: var(--porcelain);
}

.blog-card .text-link {
  color: var(--champagne-2);
}

.linked-gallery a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--porcelain);
  background: var(--ink);
}

.linked-gallery a img {
  transition: transform 520ms ease, opacity 220ms ease;
}

.linked-gallery a:hover img,
.linked-gallery a:focus-visible img {
  transform: scale(1.045);
  opacity: 0.72;
}

.linked-gallery a span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  color: var(--porcelain);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.linked-gallery a:hover span,
.linked-gallery a:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.blog-masonry a {
  text-decoration: none;
}

.blog-masonry a::after {
  background:
    linear-gradient(0deg, rgba(23, 19, 13, 0.88), rgba(23, 19, 13, 0.42) 48%, rgba(23, 19, 13, 0.04) 78%),
    linear-gradient(90deg, rgba(23, 19, 13, 0.34), transparent 58%);
}

.blog-masonry a > div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  max-width: 560px;
}

.blog-masonry a > span {
  display: none;
}

.blog-masonry span {
  position: static;
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 700;
  opacity: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: none;
}

.blog-masonry a > div > span {
  position: static;
  inset: auto;
  font-weight: 700;
  opacity: 1;
  transform: none;
}

.blog-masonry h2 {
  margin: 0;
  color: var(--porcelain);
  font-size: var(--type-section-title);
  line-height: 1;
}

.blog-masonry p {
  max-width: 48ch;
  margin: 12px 0 0;
  color: color-mix(in srgb, var(--porcelain) 82%, transparent);
  font-size: var(--type-small);
  line-height: 1.6;
}

.article-hero {
  position: relative;
  min-height: clamp(560px, 74svh, 780px);
  display: grid;
  align-items: end;
  padding: clamp(110px, 13vw, 176px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 104px);
  color: var(--porcelain);
  overflow: hidden;
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(23, 19, 13, 0.84), rgba(23, 19, 13, 0.18) 62%),
    linear-gradient(90deg, rgba(23, 19, 13, 0.68), transparent 62%);
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.article-hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-hero);
  font-weight: 400;
  line-height: 0.9;
}

.article-hero-copy p:last-child {
  max-width: 690px;
  color: rgba(251, 247, 238, 0.8);
  font-size: var(--type-lead);
}

body:not(.suite-article) .article-hero-copy {
  max-width: 760px;
}

body:not(.suite-article) .article-hero-copy h1 {
  max-width: 9.6ch;
  font-size: clamp(64px, 7vw, 108px);
  line-height: 0.92;
}

body:not(.suite-article) .article-hero-copy p:last-child {
  max-width: 580px;
  margin-top: 24px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 72px);
}

.article-meta {
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-copy {
  max-width: 760px;
}

.article-copy p {
  color: var(--muted-strong);
  font-size: var(--type-lead);
  line-height: 1.72;
}

.article-copy h2 {
  margin-top: 48px;
  font-size: var(--type-close);
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(12px, 3vw, 36px) clamp(82px, 10vw, 138px);
}

.article-gallery img {
  width: 100%;
  height: clamp(260px, 32vw, 500px);
  object-fit: cover;
}

.article-gallery img.wide {
  grid-column: span 2;
}

.legal-page {
  background: var(--porcelain);
}

.legal-hero {
  padding-bottom: clamp(52px, 7vw, 92px);
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr);
  gap: 1px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px) clamp(82px, 10vw, 138px);
}

.legal-block {
  padding: clamp(30px, 5vw, 58px) 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.legal-block:first-child {
  border-top: 0;
}

.legal-block h2 {
  max-width: 14ch;
  margin-bottom: 24px;
  font-size: clamp(32px, 4.6vw, 58px);
}

.legal-block p,
.legal-block address,
.legal-block dd,
.credit-list {
  color: var(--muted-strong);
  font-family: var(--sans);
  font-size: var(--type-body);
  font-style: normal;
  line-height: 1.75;
}

.legal-block a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--gold) 72%, transparent);
  text-underline-offset: 0.18em;
}

.legal-block dl {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.legal-block dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 0.72fr);
  gap: 20px;
}

.legal-block dt {
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.credit-list {
  display: grid;
  gap: 10px;
  padding-left: 1.1em;
}

.instagram-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 0 clamp(20px, 5vw, 72px) clamp(82px, 10vw, 138px);
}

.instagram-system,
.instagram-grid,
.instagram-notes,
.guide-grid,
.suite-card-grid,
.blog-index {
  min-width: 0;
}

.instagram-grid article,
.guide-grid article,
.blog-card,
.suite-card {
  min-width: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.instagram-grid article {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--espresso);
}

.instagram-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 19, 13, 0.6), transparent 56%);
}

.instagram-grid span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.instagram-grid .text-tile {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--sea);
  position: relative;
  isolation: isolate;
}

.instagram-grid .text-tile.gold {
  color: var(--ink);
  background: var(--gold);
}

.instagram-grid .text-tile::after {
  display: none;
}

.instagram-grid .text-tile small {
  color: inherit;
  font-size: var(--type-label);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.74;
}

.instagram-grid .text-tile strong {
  display: block;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(30px, 2.55vw, 40px);
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.instagram-grid .text-tile p {
  margin: 0;
  color: inherit;
  max-width: 22ch;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.45;
}

.instagram-notes {
  position: sticky;
  top: 110px;
  padding: 30px;
  background: var(--champagne);
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.guide-section.stacked {
  display: block;
}

.guide-section h2 {
  margin: 10px 0 0;
  max-width: 12ch;
  font-size: clamp(34px, 5vw, 62px);
}

.guide-section > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.guide-section:not(.stacked) > p {
  max-width: 650px;
  margin-top: clamp(40px, 4.8vw, 68px);
}

.guide-section .button {
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
}

.guide-token-grid,
.type-specimen,
.spacing-rules,
.surface-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 4vw, 52px);
  background: var(--line);
}

.guide-token-grid article,
.type-specimen article,
.spacing-rules article,
.surface-examples article {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
}

.color-tokens article {
  display: grid;
  gap: 12px;
  align-content: start;
}

.color-tokens span {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  background: var(--swatch);
  border: 1px solid var(--line);
}

.color-tokens strong,
.spacing-rules strong,
.surface-examples strong {
  display: block;
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.color-tokens small,
.spacing-rules span,
.type-specimen span {
  display: block;
  color: var(--gold);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.spacing-rules span {
  margin-top: 10px;
}

.type-specimen strong {
  display: block;
  margin: 12px 0 16px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.type-specimen p,
.spacing-rules p,
.surface-examples p {
  margin: 14px 0 0;
  color: var(--muted);
}

.surface-examples article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--porcelain);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.surface-examples p {
  color: rgba(251, 247, 238, 0.76);
}

.surface-examples .overlay-sample {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(251, 247, 238, 0.94), rgba(251, 247, 238, 0.72)),
    linear-gradient(0deg, rgba(251, 247, 238, 0.9), rgba(251, 247, 238, 0.54) 62%),
    url("../optimized/honeymoon/stories/couple-151.jpg") center / cover;
}

.surface-examples .overlay-sample p {
  color: var(--muted);
}

.texture-sample.dark,
.texture-sample.green {
  background:
    radial-gradient(circle at 18% 22%, rgba(251, 247, 238, 0.13) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 64%, rgba(251, 247, 238, 0.09) 0 1px, transparent 1.6px),
    linear-gradient(132deg, transparent 0 34%, rgba(251, 247, 238, 0.07) 34.3%, transparent 35.4% 61%, rgba(251, 247, 238, 0.05) 61.4%, transparent 62.2%),
    linear-gradient(24deg, rgba(23, 19, 13, 0.16), transparent 42%, rgba(251, 247, 238, 0.04)),
    var(--espresso);
  background-size: 42px 42px, 58px 58px, 100% 100%, 100% 100%, auto;
}

.texture-sample.green {
  background-color: var(--sea);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(82px, 10vw, 138px);
  background: var(--line);
}

.guide-grid article {
  min-height: 280px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper);
}

.reveal {
  opacity: 0.001;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 760ms var(--ease-luxury), transform 900ms var(--ease-luxury), filter 760ms var(--ease-luxury);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.suite-card.reveal,
.chapter-tile.reveal,
.linked-gallery a.reveal,
.article-gallery img.reveal,
.cinematic-strip img.reveal {
  clip-path: inset(0 0 7% 0);
  transform: translateY(20px) scale(0.99);
  transition:
    opacity 760ms var(--ease-luxury),
    transform 980ms var(--ease-luxury),
    filter 760ms var(--ease-luxury),
    clip-path 980ms var(--ease-luxury);
}

.suite-card.reveal.is-visible,
.chapter-tile.reveal.is-visible,
.linked-gallery a.reveal.is-visible,
.article-gallery img.reveal.is-visible,
.cinematic-strip img.reveal.is-visible {
  clip-path: inset(0);
  transform: translateY(0) scale(1);
}

@media (max-width: 1200px) {
  :root {
    --type-hero: 104px;
    --type-page-hero: 68px;
    --type-headline: 56px;
    --type-title: 38px;
    --type-tile-title: 36px;
    --type-proof-title: 34px;
    --type-close: 52px;
    --type-story: 52px;
    --type-inquiry: 78px;
    --type-section-title: 46px;
    --type-social-title: 42px;
  }

  .site-footer {
    grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
    align-items: start;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    row-gap: 14px;
  }

  .site-footer p {
    max-width: 640px;
  }

  .site-footer.compact {
    grid-template-columns: minmax(160px, 230px) minmax(0, 1fr);
  }

  .site-footer.compact nav {
    grid-column: auto;
    justify-content: flex-end;
  }
}

@media (max-width: 1000px) {
  :root {
    --type-lead: 18px;
    --type-hero: 72px;
    --type-page-hero: 50px;
    --type-headline: 42px;
    --type-title: 32px;
    --type-tile-title: 31px;
    --type-proof-title: 30px;
    --type-close: 42px;
    --type-story: 42px;
    --type-inquiry: 62px;
    --type-section-title: 38px;
    --type-social-title: 34px;
  }

  .hero-note {
    display: none;
  }

  .reservation-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation-action {
    grid-column: span 2;
  }

  .manifest,
  .suite-editorial,
  .proof-section,
  .article-body,
  .suite-layout,
  .suite-detail,
  .suite-detail:nth-child(even),
  .blog-card.featured,
  .instagram-system,
  .experience-story,
  .experience-story.flipped,
  .inquiry-hero,
  .guide-section,
  .contact-proof {
    grid-template-columns: 1fr;
  }

  .manifest-seal {
    position: static;
    width: 112px;
  }

  .suite-editorial {
    min-height: 0;
  }

  .suite-editorial-media {
    height: 64svh;
  }

  .chapter-grid,
  .experience-grid,
  .suite-card-grid,
  .two-up {
    grid-template-columns: 1fr;
  }

  .suite-detail:nth-child(even) .suite-slider {
    order: 0;
  }

  .blog-index,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-token-grid,
  .type-specimen,
  .spacing-rules,
  .surface-examples {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    min-height: 520px;
  }

  .article-meta {
    max-width: 420px;
  }

  .article-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-notes {
    position: static;
  }

  .chapter-tile,
  .experience-tile {
    min-height: 440px;
  }

  .cinematic-strip,
  .editorial-gallery {
    grid-template-columns: 1fr;
  }

  .cinematic-strip img:nth-child(2),
  .editorial-gallery img:nth-child(2) {
    transform: none;
  }

  .experience-story.flipped .story-copy {
    order: 0;
  }

  .inquiry-page {
    background: var(--porcelain);
  }

  .site-footer,
  .site-footer:not(.compact),
  .site-footer.compact {
    grid-template-columns: 1fr;
  }

  .site-footer:not(.compact) nav,
  .site-footer.compact nav {
    grid-column: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  body.nav-open .site-header {
    color: var(--porcelain);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.nav-open .site-header.inner,
  body.nav-open .site-header.is-scrolled {
    color: var(--porcelain);
  }

  .nav-toggle {
    position: relative;
    z-index: 35;
    display: grid;
    gap: 7px;
    width: 48px;
    height: 48px;
    place-content: center;
    color: currentColor;
    background: transparent;
    border: 0;
    border-radius: 0;
    transition: color 240ms ease, transform 420ms var(--ease-luxury);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform 480ms var(--ease-luxury);
  }

  body.nav-open .nav-toggle {
    transform: rotate(90deg);
  }

  body.nav-open .nav-toggle span:not(.sr-only):first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:not(.sr-only):nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: clamp(158px, 22svh, 206px) var(--mobile-text-gutter) calc(24px + env(safe-area-inset-bottom));
    color: var(--porcelain);
    background:
      linear-gradient(180deg, rgba(23, 19, 13, 0.8), rgba(23, 19, 13, 0.94) 68%, rgba(23, 19, 13, 0.99)),
      linear-gradient(90deg, rgba(23, 19, 13, 0.42), transparent 72%),
      url("../media/suite-curated-mobile.jpg") center 47% / cover no-repeat;
    clip-path: inset(0 0 100% 0);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateZ(0);
    transition: clip-path 680ms var(--ease-luxury), visibility 0s linear 680ms;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav::after {
    content: none;
  }

  .site-nav > a {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 68px;
    justify-content: flex-start;
    color: var(--porcelain);
    font-family: var(--display);
    font-size: var(--type-nav-menu);
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 440ms ease, transform 640ms var(--ease-luxury), color 180ms ease;
  }

  .site-nav > a:hover,
  .site-nav > a.active {
    color: var(--porcelain);
  }

  .site-nav > a.active::after {
    content: "";
    position: static;
    display: block;
    width: 34px;
    height: 1px;
    margin-left: 14px;
    background: var(--gold);
  }

  .site-nav > .nav-cta {
    min-height: 48px;
    margin-top: 14px;
    padding: 16px 0 0;
    border: 0;
    border-top: 1px solid rgba(251, 247, 238, 0.24);
    border-radius: 0;
    color: var(--champagne-2);
    font-family: var(--body);
    font-size: var(--type-small);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .nav-mobile-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(251, 247, 238, 0.2);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 420ms ease, transform 620ms var(--ease-luxury);
  }

  .nav-direct {
    display: grid;
    gap: 9px;
  }

  .nav-direct > span {
    color: rgba(251, 247, 238, 0.58);
    font-size: var(--type-label);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .nav-direct a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: var(--porcelain);
    font-size: var(--type-small);
    letter-spacing: 0.04em;
  }

  .nav-direct svg,
  .nav-socials svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav-socials {
    display: flex;
    gap: 8px;
  }

  .nav-socials a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: rgba(251, 247, 238, 0.86);
    border: 1px solid rgba(251, 247, 238, 0.32);
    border-radius: 50%;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .nav-socials a:hover,
  .nav-socials a:focus-visible {
    color: var(--ink);
    background: var(--porcelain);
    border-color: var(--porcelain);
    transform: translateY(-2px);
  }

  .site-nav.is-open {
    clip-path: inset(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav.is-open > a,
  .site-nav.is-open .nav-mobile-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open > a:nth-of-type(1) {
    transition-delay: 170ms;
  }

  .site-nav.is-open > a:nth-of-type(2) {
    transition-delay: 230ms;
  }

  .site-nav.is-open > a:nth-of-type(3) {
    transition-delay: 290ms;
  }

  .site-nav.is-open > a:nth-of-type(4) {
    transition-delay: 350ms;
  }

  .site-nav.is-open .nav-mobile-footer {
    transition-delay: 420ms;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-frame {
    width: auto;
    margin-right: clamp(28px, 5vw, 42px);
    margin-left: clamp(28px, 5vw, 42px);
    padding-left: 0;
  }

  .reservation-bar {
    width: calc(100% - 56px);
  }
}

@media (max-width: 640px) {
  :root {
    --type-lead: 18px;
    --type-hero-mobile: 54px;
    --type-page-hero-mobile: 34px;
    --type-headline: 34px;
    --type-title: 28px;
    --type-tile-title: 30px;
    --type-proof-title: 28px;
    --type-close: 38px;
    --type-story: 38px;
    --type-inquiry: 43px;
    --type-section-title: 36px;
    --type-social-title-mobile: 27px;
  }

  .site-header {
    padding-inline: var(--mobile-text-gutter);
  }

  .brand {
    width: 148px;
  }

  body::before {
    background-size: 100% 100%, 50vw 100%;
  }

  .hero-frame {
    width: auto;
    margin-right: var(--mobile-text-gutter);
    margin-left: var(--mobile-text-gutter);
  }

  .hero h1,
  .page-hero-copy h1,
  .gallery-intro h1,
  .inquiry-copy h1 {
    font-size: var(--type-hero-mobile);
  }

  .page-hero-copy h1,
  .gallery-intro h1 {
    font-size: var(--type-page-hero-mobile);
    line-height: 1;
  }

  .hero-actions,
  .booking-strip {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .reservation-bar {
    width: calc(100% - (var(--mobile-media-gutter) * 2));
    grid-template-columns: 1fr;
    margin-top: -8px;
  }

  .reservation-bar a,
  .reservation-bar label,
  .reservation-action {
    grid-column: auto;
    min-height: 74px;
  }

  .reservation-bar label {
    justify-items: stretch;
    text-align: left;
  }

  .reservation-bar input,
  .reservation-bar select {
    text-align: left;
    text-align-last: left;
  }

  .reservation-action {
    justify-content: center;
    text-align: center;
  }

  .copy-desktop {
    display: none;
  }

  .copy-mobile {
    display: inline;
  }

  .hero-copy {
    max-width: 310px;
    margin-top: 22px;
    line-height: 1.42;
  }

  .page-hero,
  .video-page-hero,
  .article-hero {
    min-height: 76svh;
    padding-right: var(--mobile-text-gutter);
    padding-left: var(--mobile-text-gutter);
  }

  .band,
  .experience-band,
  .proof-section,
  .experience-story,
  .article-body,
  .inquiry-hero,
  .contact-proof,
  .site-footer,
  .site-footer.compact {
    padding-right: var(--mobile-text-gutter);
    padding-left: var(--mobile-text-gutter);
  }

  .guide-header {
    align-items: flex-start;
    padding: 22px var(--mobile-text-gutter);
  }

  .guide-links {
    justify-content: flex-start;
  }

  .guide-section {
    padding-right: var(--mobile-text-gutter);
    padding-left: var(--mobile-text-gutter);
  }

  .guide-section h2 {
    max-width: 13ch;
  }

  .guide-section:not(.stacked) > p {
    max-width: none;
    margin-top: 0;
  }

  .guide-section .button {
    grid-column: auto;
  }

  .gallery-intro {
    padding: 84px var(--mobile-text-gutter) 38px;
  }

  .suite-layout {
    padding-bottom: 28px;
  }

  .suite-layout .suite-media {
    display: none;
  }

  .inquiry-hero {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .inquiry-copy h1 {
    font-size: var(--type-inquiry);
    line-height: 0.95;
  }

  .article-hero-copy h1 {
    font-size: var(--type-inquiry);
    line-height: 0.94;
  }

  .article-body {
    gap: 22px;
  }

  .article-copy p {
    font-size: var(--type-body);
  }

  .legal-content {
    padding-right: var(--mobile-text-gutter);
    padding-left: var(--mobile-text-gutter);
  }

  .legal-block h2 {
    max-width: 12ch;
  }

  .legal-block dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-gallery img,
  .article-gallery img.wide {
    grid-column: auto;
    height: clamp(260px, 76vw, 420px);
  }

  .amenity-list,
  .proof-grid,
  .story-images,
  .form-row {
    grid-template-columns: 1fr;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    padding-inline: var(--mobile-media-gutter);
  }

  .masonry-gallery a,
  .masonry-gallery .wide,
  .masonry-gallery .tall {
    grid-column: auto;
    grid-row: span 1;
  }

  .masonry-gallery a {
    min-height: 360px;
  }

  .masonry-gallery img {
    position: absolute;
    inset: 0;
  }

  .linked-gallery a span {
    opacity: 1;
    transform: none;
  }

  .blog-masonry a > div {
    inset: auto 22px 26px;
  }

  .blog-masonry span {
    margin-bottom: 12px;
  }

  .blog-masonry h2 {
    font-size: clamp(26px, 8.4vw, var(--type-title));
    line-height: 1.06;
  }

  .blog-masonry p {
    display: none;
  }

  .instagram-grid {
    gap: 6px;
  }

  .instagram-grid .text-tile {
    gap: 8px;
    padding: 10px;
  }

  .instagram-grid .text-tile strong {
    font-size: clamp(16px, 4.15vw, 20px);
    line-height: 1.04;
  }

  .instagram-grid .text-tile p {
    max-width: none;
    font-size: 11px;
    line-height: 1.35;
  }

  .suite-card {
    min-height: 320px;
  }

  .suite-card::after {
    background: linear-gradient(0deg, rgba(23, 19, 13, 0.9), rgba(23, 19, 13, 0.22) 72%);
  }

  .suite-card span,
  .suite-card strong,
  .suite-card-price {
    left: 18px;
    right: 18px;
    text-shadow: 0 2px 18px color-mix(in srgb, var(--ink) 36%, transparent);
  }

  .suite-card-price {
    top: 18px;
    left: auto;
  }

  .suite-card strong {
    font-size: var(--type-title);
  }

  .suite-detail {
    position: relative;
    min-height: clamp(420px, 118vw, 560px);
    overflow: hidden;
    color: var(--porcelain);
    background: var(--ink);
    isolation: isolate;
  }

  .suite-slider {
    position: absolute;
    inset: 0;
    min-height: 100%;
    isolation: auto;
  }

  .suite-detail::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(23, 19, 13, 0.9), rgba(23, 19, 13, 0.42) 42%, rgba(23, 19, 13, 0.08) 72%);
  }

  .suite-detail > div:not(.suite-slider) {
    position: relative;
    z-index: 2;
    align-self: end;
    padding: 0 var(--mobile-text-gutter) 30px;
    background: transparent;
    pointer-events: none;
  }

  .suite-detail h2 {
    font-size: clamp(30px, 9.4vw, var(--type-section-title));
    color: var(--porcelain);
  }

  .suite-detail p {
    color: color-mix(in srgb, var(--porcelain) 84%, transparent);
    display: -webkit-box;
    max-width: 24ch;
    margin-top: 8px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .suite-detail .suite-price-line {
    display: block;
    margin: 10px 0 0;
    color: var(--porcelain);
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .suite-detail span {
    color: var(--porcelain);
    font-weight: 700;
  }

  .suite-detail .text-link {
    color: var(--porcelain);
    pointer-events: auto;
  }

  .suite-slider-controls {
    z-index: 4;
  }

  .suite-slider-controls button {
    top: 42%;
    width: 42px;
    height: 42px;
  }

  .suite-slider-controls [data-slide-prev] {
    left: 14px;
  }

  .suite-slider-controls [data-slide-next] {
    right: 14px;
  }

  .article-gallery {
    padding-right: var(--mobile-media-gutter);
    padding-left: var(--mobile-media-gutter);
  }

  .suite-catalog {
    padding-top: 0;
    background: var(--porcelain);
  }

  .suite-article-facts {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .suite-article-facts span {
    min-height: 78px;
    padding: 18px 0;
  }

  .instagram-system {
    padding-right: var(--mobile-text-gutter);
    padding-left: var(--mobile-text-gutter);
  }

  .instagram-notes {
    padding: var(--mobile-text-gutter);
  }

  .booking-strip {
    margin-right: var(--mobile-media-gutter);
    margin-left: var(--mobile-media-gutter);
    padding: 34px var(--mobile-text-gutter);
  }
}

@media (max-width: 360px) {
  :root {
    --type-hero-mobile: 46px;
    --type-page-hero-mobile: 30px;
    --type-headline: 32px;
    --type-title: 26px;
    --type-section-title: 34px;
    --type-social-title-mobile: 23px;
    --type-nav-menu: 34px;
  }

  .nav-mobile-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }
}

@media (max-width: 900px) and (max-height: 700px) {
  .site-nav {
    min-height: 100svh;
    padding-top: 86px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .site-nav > a {
    min-height: 46px;
    font-size: var(--type-nav-menu);
  }

  .site-nav > .nav-cta {
    min-height: 42px;
    margin-top: 8px;
    padding-top: 12px;
  }

  .nav-mobile-footer {
    padding-top: 14px;
  }

  .nav-direct {
    gap: 2px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }

  .site-nav,
  .site-nav > a,
  .nav-mobile-footer,
  .nav-toggle,
  .nav-toggle span:not(.sr-only) {
    transition: none !important;
  }
}
