@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

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

/* On phones the numbered category tabs already provide complete navigation.
   Removing the duplicate counter/arrows keeps the selected guide content in view. */
@media (max-width: 820px) {
  [data-local-carousel] [class*="local-carousel-arrows"] {
    display: none;
  }
}

:root {
  --pdg-terracotta: #9c5544;
  --pdg-cta-terracotta: #bd4c33;
  --pdg-quiet-green: #61735c;
  --pdg-muted-gold: #b3955b;
  --pdg-deep-navy: #14233b;
  --pdg-warm-off-white: #fbf8f1;
  --pdg-soft-beige: #f1e8dc;
  --ivory: var(--pdg-warm-off-white);
  --warm: var(--pdg-soft-beige);
  --sand: #c7b28d;
  --navy: var(--pdg-deep-navy);
  --navy-soft: #2d3c4f;
  --ink: #1b2430;
  --muted: #625d55;
  --gold: var(--pdg-muted-gold);
  --sage: var(--pdg-quiet-green);
  --terracotta: var(--pdg-terracotta);
  --cta-terracotta: var(--pdg-cta-terracotta);
  --stone: var(--pdg-soft-beige);
  --white: #ffffff;
  --line: rgba(20, 35, 59, 0.16);
  --shadow: 0 24px 80px rgba(27, 36, 48, 0.14);
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ldg-psb-background: #ffffff;
  --ldg-psb-border-radius: 0.42em;
  --ldg-psb-box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.1);
  --ldg-psb-padding: 14px;
  --ldg-psb-input-background: #ffffff;
  --ldg-psb-button-border-radius: 0px;
  --ldg-psb-color-primary: #be4c32;
  --ldg-psb-color-primary-lighter: #dfa699;
  --ldg-psb-color-primary-darker: #5f2619;
  --ldg-psb-color-primary-contrast: #ffffff;
  --ldg-semantic-color-primary: #be4c32;
  --ldg-semantic-color-primary-lighter: #dfa699;
  --ldg-semantic-color-primary-darker: #5f2619;
  --ldg-semantic-color-primary-contrast: #ffffff;
  --ldg-component-modal-z-index: 999;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body.has-availability-modal,
body.has-image-viewer,
body.has-detail-modal {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 11px 16px;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(main, section, article)[id] {
  scroll-margin-top: 96px;
}

main[tabindex="-1"]:focus {
  outline: none;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 2px;
  background: rgba(251, 248, 241, 0.08);
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(179, 149, 91, 0.2), var(--gold), rgba(189, 76, 51, 0.74));
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  appearance: none;
  font: inherit;
}

:where(a[href], button:not(:disabled), [role="button"]) {
  cursor: pointer;
}

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 700ms var(--ease-luxury),
    transform 700ms var(--ease-luxury);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 16px 50px rgba(20, 35, 59, 0.12);
  color: var(--navy);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0;
}

.brand-location {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.site-nav button,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid currentColor;
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  border-color: var(--cta-terracotta);
  background: var(--cta-terracotta);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 64px;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: clamp(108px, 14svh, 164px);
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(76px, 10svh, 138px);
  z-index: 1;
  width: min(28vw, 360px);
  border-top: 1px solid rgba(179, 149, 91, 0.48);
  border-right: 1px solid rgba(179, 149, 91, 0.34);
  opacity: var(--hero-frame-opacity, 0.86);
  transform: translate3d(0, var(--hero-frame-y, 0px), 0);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 20, 34, 0.82), rgba(12, 20, 34, 0.3) 54%, rgba(12, 20, 34, 0.08)),
    linear-gradient(0deg, rgba(12, 20, 34, 0.68), rgba(12, 20, 34, 0.08) 46%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  object-position: center center;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(var(--hero-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.hero-media picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  display: none;
}

.hero-video--desktop,
.hero-video--mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 900ms var(--ease-luxury);
}

.hero-video.is-hero-playing {
  opacity: 1;
}

@media (min-width: 1181px) and (pointer: fine) {
  .hero-video--desktop {
    display: block;
  }
}

@media (max-width: 1180px), (pointer: coarse) {
  .hero-video--mobile {
    display: block;
  }
}

.motion-reduced .hero-video {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.desktop-booking-widget {
  display: none;
}

.hero-scroll-cue {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll-cue::before {
  content: "Scroll";
  writing-mode: vertical-rl;
}

.hero-scroll-cue span {
  position: relative;
  display: block;
  width: 1px;
  height: 70px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
}

.hero-scroll-cue span::after {
  content: "";
  position: absolute;
  left: 0;
  top: -70%;
  width: 1px;
  height: 70%;
  background: var(--gold);
  animation: scrollCue 2200ms var(--ease-soft) infinite;
}

#lodgify-search-bar {
  width: 100%;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 88px;
}

.hero-title-main,
.hero-title-location {
  display: block;
}

.hero-title-location {
  font-size: 0.78em;
}

h2 {
  font-size: 64px;
}

h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 142px));
  gap: 1px;
  width: min(100%, 520px);
  margin: 38px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-facts div {
  padding: 18px;
  background: rgba(12, 20, 34, 0.34);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.primary {
  background: var(--cta-terracotta);
  color: var(--white);
}

.button.primary:hover {
  background: #a84231;
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.section-pad {
  padding: 110px clamp(20px, 5vw, 72px);
}

.intro {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 64px;
  align-items: end;
}

.intro-grid p,
.feature-copy p,
.barcelona-copy p {
  color: var(--muted);
  font-size: 18px;
}

.apartment-link-card {
  position: relative;
  display: block;
  min-height: 720px;
  margin-top: 78px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.apartment-link-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.16);
  transition:
    filter 1400ms var(--ease-luxury),
    transform 1400ms var(--ease-luxury);
  will-change: transform;
}

.apartment-link-card:hover img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.18);
}

.apartment-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(12, 20, 34, 0.86), rgba(12, 20, 34, 0.34) 48%, rgba(12, 20, 34, 0.08) 78%),
    linear-gradient(90deg, rgba(12, 20, 34, 0.58), rgba(12, 20, 34, 0.08));
}

.apartment-card-copy {
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
  left: clamp(28px, 5vw, 72px);
  display: grid;
  max-width: 660px;
  z-index: 2;
}

.apartment-card-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.apartment-card-title {
  max-width: 580px;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9;
  text-wrap: balance;
}

.apartment-card-text {
  max-width: 460px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.apartment-card-button {
  width: fit-content;
  margin-top: 34px;
  padding: 18px 36px;
  background: var(--ivory);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 16px 44px rgba(12, 20, 34, 0.24);
}

.collection-wall {
  background:
    linear-gradient(180deg, var(--ivory), rgba(241, 232, 220, 0.86) 44%, var(--warm)),
    var(--warm);
}

.collection-scroll-stage,
.collection-scroller {
  width: 100%;
}

.collection-wall-intro {
  display: grid;
  width: min(100%, 1296px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.44fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: end;
}

.collection-wall-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.collection-wall-intro h2 {
  max-width: 810px;
  font-size: clamp(62px, 5.4vw, 86px);
  line-height: 0.94;
}

.collection-wall-intro p:not(.eyebrow) {
  max-width: 510px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

.collection-wall-grid {
  display: grid;
  width: min(100%, 1296px);
  margin: 78px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(246px, auto);
  gap: clamp(20px, 2vw, 30px);
}

.collection-panel {
  position: relative;
  display: grid;
  min-height: 350px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.collection-panel-large {
  min-height: 730px;
  grid-column: span 2;
  grid-row: span 2;
}

.collection-panel-tall {
  min-height: 520px;
  grid-row: span 2;
}

.collection-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(12, 20, 34, 0.84), rgba(12, 20, 34, 0.3) 52%, rgba(12, 20, 34, 0.06)),
    linear-gradient(90deg, rgba(12, 20, 34, 0.42), rgba(12, 20, 34, 0.02));
}

.collection-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border-top: 1px solid rgba(179, 149, 91, 0.4);
  border-right: 1px solid rgba(179, 149, 91, 0.28);
  opacity: 0;
  transform: translate3d(8px, -8px, 0);
  transition:
    opacity 520ms var(--ease-luxury),
    transform 520ms var(--ease-luxury);
  pointer-events: none;
}

.collection-panel:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.collection-panel-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.collection-panel-media img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.16);
  transition:
    filter 1400ms var(--ease-luxury),
    transform 1500ms var(--ease-luxury);
  will-change: transform;
}

.collection-panel:hover .collection-panel-media img {
  filter: saturate(1.04) contrast(1.02);
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.18);
}

.collection-panel-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-self: end;
  gap: 12px;
  max-width: 430px;
  padding: clamp(24px, 3.2vw, 44px);
}

.collection-panel-index {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.collection-panel-title {
  font-family: var(--serif);
  font-size: clamp(38px, 3.3vw, 54px);
  line-height: 0.95;
}

.collection-panel-text {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.48;
}

@media (max-width: 1180px) {
  .has-collection-horizontal .collection-wall {
    padding: 0;
    overflow: clip;
  }

  .has-collection-horizontal .collection-scroll-stage {
    height: var(--collection-stage-height, 320svh);
  }

  .has-collection-horizontal .collection-scroller {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    height: 100vh;
    height: 100svh;
    align-content: center;
    overflow: hidden;
    padding: clamp(96px, 9svh, 122px) 0 clamp(104px, 10svh, 132px);
  }

  .has-collection-horizontal .collection-wall-intro {
    width: min(calc(100% - clamp(48px, 10vw, 112px)), 980px);
    margin: 0 auto clamp(28px, 3.6svh, 46px);
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: end;
  }

  .has-collection-horizontal .collection-wall-intro h2 {
    max-width: 700px;
    font-size: clamp(44px, 6.2vw, 58px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .has-collection-horizontal .collection-wall-intro p:not(.eyebrow) {
    max-width: 460px;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .has-collection-horizontal .collection-wall-grid {
    display: flex;
    width: max-content;
    margin: 0;
    gap: clamp(22px, 3vw, 34px);
    align-items: stretch;
    padding: 0 clamp(24px, 5vw, 56px);
    transform: translate3d(var(--collection-track-x, 0px), 0, 0);
    will-change: transform;
  }

  .has-collection-horizontal .collection-panel,
  .has-collection-horizontal .collection-panel-large,
  .has-collection-horizontal .collection-panel-tall {
    flex: 0 0 min(48vw, 520px);
    min-height: min(48svh, 520px);
    grid-column: auto;
    grid-row: auto;
  }

  .has-collection-horizontal .collection-panel::before {
    opacity: 0.72;
    transform: none;
  }

  .has-collection-horizontal .collection-panel.motion-reveal,
  .has-collection-horizontal .collection-panel-media.motion-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .has-collection-horizontal .collection-panel-media img,
  .has-collection-horizontal .collection-panel-media.motion-image img,
  .has-collection-horizontal .collection-panel-media.motion-image:not(.is-visible) img {
    filter: none;
    transform: scale(1.12);
  }
}

@media (max-width: 640px) {
  .has-collection-horizontal .collection-scroller {
    align-content: start;
    padding: 88px 0 104px;
  }

  .has-collection-horizontal .collection-wall-intro {
    width: calc(100% - 48px);
    margin: 0 24px 18px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .has-collection-horizontal .collection-wall-intro .eyebrow {
    font-size: 9px;
  }

  .has-collection-horizontal .collection-wall-intro h2 {
    max-width: 342px;
    font-size: 34px;
    line-height: 0.98;
  }

  .has-collection-horizontal .collection-wall-intro p:not(.eyebrow) {
    display: none;
  }

  .has-collection-horizontal .collection-wall-grid {
    gap: 22px;
    padding: 0 24px;
  }

  .has-collection-horizontal .collection-panel,
  .has-collection-horizontal .collection-panel-large,
  .has-collection-horizontal .collection-panel-tall {
    flex-basis: min(74vw, 286px);
    min-height: min(49svh, 410px);
  }

  .has-collection-horizontal .collection-panel-copy {
    gap: 8px;
    padding: 24px;
  }

  .has-collection-horizontal .collection-panel-title {
    font-size: 32px;
  }

  .has-collection-horizontal .collection-panel-text {
    font-size: 13px;
    line-height: 1.4;
  }
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 680px;
  background: var(--navy);
  color: var(--white);
}

.feature-image {
  min-height: 680px;
  overflow: hidden;
}

.feature-image img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.1);
  transition:
    filter 1400ms var(--ease-luxury),
    transform 1500ms var(--ease-luxury);
  will-change: transform;
}

.feature-copy {
  align-self: center;
  padding: 72px clamp(24px, 5vw, 72px);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.address-steps {
  display: grid;
  gap: 1px;
  margin: 34px 0 18px;
  border-top: 1px solid rgba(179, 149, 91, 0.28);
  border-bottom: 1px solid rgba(179, 149, 91, 0.28);
}

.address-steps span {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 64px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transform: translate3d(0, 0, 0);
  transition:
    color 520ms var(--ease-luxury),
    transform 520ms var(--ease-luxury);
}

.address-steps span + span {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.address-steps strong {
  color: rgba(179, 149, 91, 0.66);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  transition: color 520ms var(--ease-luxury);
}

.address-steps span.is-active {
  color: rgba(255, 255, 255, 0.92);
  transform: translate3d(8px, 0, 0);
}

.address-steps span.is-active strong {
  color: var(--gold);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.text-link.dark {
  margin-top: 0;
  color: var(--terracotta);
  white-space: nowrap;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding-left: 22px;
  color: var(--navy-soft);
  position: relative;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--sage);
}

.guest-experience {
  background: var(--ivory);
}

.guest-intro {
  max-width: 860px;
  margin: 0 auto 74px;
  text-align: center;
}

.guest-intro h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: 64px;
  line-height: 0.98;
}

.guest-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.guest-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.guest-card {
  background: rgba(241, 232, 220, 0.72);
  box-shadow: 0 24px 70px rgba(20, 35, 59, 0.1);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.guest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 86px rgba(20, 35, 59, 0.14);
}

.guest-card:nth-child(2) {
  margin-top: 70px;
}

.guest-card:nth-child(3) {
  margin-top: 34px;
}

.guest-card-image {
  aspect-ratio: 1.16 / 1;
  margin: 28px 28px 0;
  overflow: hidden;
  background: var(--navy);
}

.guest-card-image img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.16);
  transition:
    filter 1400ms var(--ease-luxury),
    transform 1500ms var(--ease-luxury);
  will-change: transform;
}

.guest-card:hover .guest-card-image img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.18);
}

.guest-card-body {
  padding: 28px 28px 34px;
}

.guest-card-kicker {
  margin: 0 0 20px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guest-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 0.98;
  text-wrap: balance;
}

.guest-card p:not(.guest-card-kicker) {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 18px;
}

.barcelona {
  padding: 112px clamp(20px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.city-guide-intro {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.city-guide-intro h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.city-guide-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.city-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
  touch-action: pan-y;
}

.city-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.city-card {
  display: block;
  min-width: 0;
  background: var(--navy);
  box-shadow: none;
  cursor: grab;
  -webkit-user-drag: none;
  transition:
    opacity 620ms var(--ease-luxury),
    transform 780ms var(--ease-luxury),
    box-shadow 520ms ease;
}

.city-track.is-dragging .city-card {
  cursor: grabbing;
}

.city-card:nth-child(2) {
  margin-top: 56px;
}

.city-card:nth-child(3) {
  margin-top: 20px;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.city-card-image {
  display: block;
  aspect-ratio: 1.14 / 1;
  margin: 26px 26px 0;
  overflow: hidden;
  background: var(--navy);
}

.city-card-image img {
  height: 100%;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 1200ms var(--ease-luxury);
}

.city-card:hover .city-card-image img {
  transform: scale(1.035);
}

.city-card-body {
  display: block;
  padding: 26px 26px 32px;
}

.city-card-index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.city-card-title {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 0.98;
}

.city-card-copy {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.city-card-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.city-dots {
  display: none;
}

.city-progress {
  display: none;
}

.guide-scroll-stage {
  width: 100%;
  margin: 0;
}

.guide-scroller {
  width: 100%;
}

.has-guide-horizontal .barcelona {
  padding: 0;
  overflow: clip;
}

.has-guide-horizontal .guide-scroll-stage {
  height: var(--guide-stage-height, 420svh);
}

.has-guide-horizontal .guide-scroller {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: 100vh;
  height: 100svh;
  align-content: center;
  overflow: hidden;
  padding: clamp(96px, 11svh, 132px) 0 clamp(82px, 10svh, 118px);
}

.has-guide-horizontal .city-guide-intro {
  display: grid;
  width: min(calc(100% - clamp(48px, 12vw, 192px)), 1296px);
  max-width: none;
  margin: 0 auto clamp(34px, 4.8svh, 56px);
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.44fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  text-align: left;
}

.has-guide-horizontal .city-guide-intro .eyebrow {
  grid-column: 1 / -1;
  color: var(--gold);
  opacity: 0.76;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.has-guide-horizontal .city-guide-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(56px, 5vw, 78px);
  line-height: 0.94;
}

.has-guide-horizontal .city-guide-intro p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.has-guide-horizontal .city-carousel {
  width: 100%;
  margin-left: 0;
  overflow: visible;
}

.has-guide-horizontal .city-track {
  display: flex;
  width: max-content;
  margin: 0;
  gap: clamp(28px, 3vw, 46px);
  align-items: stretch;
  overflow: visible;
  padding: 0 clamp(24px, 6vw, 96px);
  cursor: default;
  scroll-padding: 0;
  scroll-snap-type: none;
  transform: translate3d(var(--guide-track-x, 0px), 0, 0);
  will-change: transform;
}

.has-guide-horizontal .city-track .city-card,
.has-guide-horizontal .city-track .city-card:nth-child(2),
.has-guide-horizontal .city-track .city-card:nth-child(3) {
  flex: 0 0 clamp(360px, 30vw, 520px);
  margin-top: 0;
  background: transparent;
  opacity: 1;
  transform: none;
  cursor: pointer;
  scroll-snap-align: none;
}

.has-guide-horizontal .city-card-image {
  margin: 24px 0 0;
  aspect-ratio: 1.16 / 1;
  background: rgba(251, 248, 241, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.has-guide-horizontal .city-card-image img,
.has-guide-horizontal .city-card:not(.is-active) .city-card-image img,
.has-guide-horizontal .city-card.is-active .city-card-image img {
  transform: none;
}

.has-guide-horizontal .city-card:hover .city-card-image img {
  transform: scale(1.018);
}

.has-guide-horizontal .city-card-body {
  padding: 26px 0 0;
}

.has-guide-horizontal .city-dots,
.has-guide-horizontal .city-progress {
  display: none;
}

@media (max-width: 1180px) {
  .has-guide-horizontal .guide-scroller {
    padding: clamp(86px, 10svh, 118px) 0 clamp(82px, 9svh, 108px);
  }

  .has-guide-horizontal .city-guide-intro {
    width: min(calc(100% - clamp(48px, 12vw, 112px)), 860px);
    margin-bottom: clamp(24px, 4svh, 38px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .has-guide-horizontal .city-guide-intro h2 {
    max-width: 660px;
    font-size: clamp(44px, 8vw, 58px);
    line-height: 1.04;
    padding-bottom: 0.08em;
  }

  .has-guide-horizontal .city-guide-intro p:not(.eyebrow) {
    max-width: 620px;
    font-size: 15px;
  }

  .has-guide-horizontal .city-track {
    gap: clamp(24px, 3vw, 34px);
  }

  .has-guide-horizontal .city-track .city-card,
  .has-guide-horizontal .city-track .city-card:nth-child(2),
  .has-guide-horizontal .city-track .city-card:nth-child(3) {
    flex-basis: min(68vw, 390px);
  }
}

@media (min-width: 1181px) {
  .collection-wall-intro {
    grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.4fr);
    gap: clamp(52px, 6vw, 94px);
    align-items: center;
  }

  .collection-wall-intro h2 {
    max-width: 740px;
    font-size: clamp(56px, 4.6vw, 74px);
    line-height: 1;
  }

  .collection-wall-grid {
    margin-top: 68px;
    grid-auto-rows: minmax(230px, auto);
  }

  .collection-panel {
    min-height: 330px;
  }

  .collection-panel-large {
    min-height: 650px;
  }

  .collection-panel-tall {
    min-height: 500px;
  }

  .city-guide-intro h2 {
    line-height: 1.04;
    padding-bottom: 0.08em;
  }

  .guide-handoff-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .guide-handoff h2 {
    max-width: none;
    font-size: clamp(46px, 4.1vw, 64px);
    line-height: 1.02;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .has-guide-horizontal .guide-scroller {
    align-content: start;
    padding: 106px 0 124px;
  }

  .has-guide-horizontal .city-guide-intro {
    width: calc(100% - 48px);
    margin-right: auto;
    margin-bottom: 16px;
    margin-left: 24px;
    gap: 9px;
    padding: 0;
  }

  .has-guide-horizontal .city-guide-intro h2 {
    max-width: none;
    font-size: 32px;
    line-height: 0.98;
    padding-bottom: 0;
    white-space: nowrap;
  }

  .has-guide-horizontal .city-guide-intro p:not(.eyebrow) {
    display: none;
  }

  .has-guide-horizontal .city-track {
    gap: 22px;
    padding-inline: 24px;
  }

  .has-guide-horizontal .city-track .city-card,
  .has-guide-horizontal .city-track .city-card:nth-child(2),
  .has-guide-horizontal .city-track .city-card:nth-child(3) {
    flex-basis: min(70vw, 286px);
    opacity: 1;
    transform: none;
  }

  .has-guide-horizontal .city-card-image {
    margin: 14px 0 0;
    aspect-ratio: 1.28 / 1;
  }

  .has-guide-horizontal .city-card-body {
    padding: 16px 0 0;
  }

  .has-guide-horizontal .city-card-index {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .has-guide-horizontal .city-card-title {
    font-size: 32px;
    line-height: 0.94;
  }

  .has-guide-horizontal .city-card-copy {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.42;
  }

  .has-guide-horizontal .city-card-link {
    margin-top: 14px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .has-guide-horizontal .city-guide-intro h2 {
    font-size: 28px;
  }

  .has-guide-horizontal .city-track .city-card,
  .has-guide-horizontal .city-track .city-card:nth-child(2),
  .has-guide-horizontal .city-track .city-card:nth-child(3) {
    flex-basis: min(70vw, 252px);
  }
}

.guide-handoff {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(68px, 8vw, 116px) clamp(24px, 6vw, 96px);
  background:
    linear-gradient(180deg, var(--navy), #101c31 88%),
    var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.guide-handoff::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 6vw, 96px);
  width: min(240px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(189, 76, 51, 0.7), transparent);
}

.guide-handoff-inner {
  display: grid;
  width: min(100%, 1296px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.86fr) auto;
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
}

.guide-handoff .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--gold);
  opacity: 0.78;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.guide-handoff h2 {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(48px, 4.7vw, 74px);
  line-height: 0.94;
}

.guide-handoff .text-link {
  justify-self: end;
  margin: 0 0 10px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 760px) {
  .guide-handoff {
    min-height: 52svh;
    padding: 68px 24px calc(146px + env(safe-area-inset-bottom));
  }

  .guide-handoff-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guide-handoff h2 {
    max-width: 10.5em;
    font-size: 38px;
    line-height: 0.98;
  }

  .guide-handoff .text-link {
    justify-self: start;
    margin-top: 4px;
    font-size: 14px;
  }
}

.booking-widget {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(20, 35, 59, 0.14);
  box-shadow: var(--shadow);
}

.widget-bar {
  height: 12px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--terracotta), var(--sage));
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.widget-grid span,
.widget-grid strong {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--ivory);
  color: var(--muted);
}

.widget-grid strong {
  justify-content: center;
  background: var(--cta-terracotta);
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.site-footer {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: #101c31;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.mobile-availability {
  display: none;
}

.availability-modal[hidden] {
  display: none;
}

.availability-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: end;
}

.availability-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(12, 20, 34, 0.52);
  cursor: pointer;
}

.availability-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(86svh, 680px);
  overflow: auto;
  padding: 24px;
  background: var(--ivory);
  border-top: 1px solid rgba(20, 35, 59, 0.16);
  box-shadow: 0 -28px 80px rgba(12, 20, 34, 0.28);
}

.availability-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.availability-header h2 {
  margin: 0;
  font-size: 40px;
}

.availability-close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 35, 59, 0.28);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.availability-close span {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.availability-close span:first-child {
  transform: rotate(45deg);
}

.availability-close span:last-child {
  transform: rotate(-45deg);
}

.availability-widget-slot {
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(20, 35, 59, 0.14);
  box-shadow: var(--shadow);
}

.image-viewer[hidden] {
  display: none;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 54px);
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(12, 20, 34, 0.78);
  cursor: zoom-out;
}

.image-viewer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1120px);
  max-height: min(88svh, 840px);
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--ivory);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.image-viewer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid rgba(20, 35, 59, 0.14);
}

.image-viewer-header .eyebrow {
  margin-bottom: 8px;
}

.image-viewer-header h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 48px);
}

.image-viewer-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.image-viewer-zoom {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(20, 35, 59, 0.28);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-viewer-zoom:hover,
.image-viewer-zoom[aria-pressed="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.image-viewer-zoom:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.image-viewer-close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 35, 59, 0.28);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.image-viewer-close span {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.image-viewer-close span:first-child {
  transform: rotate(45deg);
}

.image-viewer-close span:last-child {
  transform: rotate(-45deg);
}

.image-viewer-media {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: auto;
  background: #101c31;
  cursor: zoom-in;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 255, 255, 0.48) transparent;
  touch-action: pan-x pan-y pinch-zoom;
}

.image-viewer-media img {
  width: 100%;
  height: 100%;
  max-height: calc(88svh - 112px);
  object-fit: contain;
}

.image-viewer.is-zoomed .image-viewer-media {
  place-items: start;
  cursor: zoom-out;
}

.image-viewer.is-zoomed .image-viewer-media img {
  width: 200%;
  height: auto;
  max-height: none;
  cursor: zoom-out;
}

.site-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--gold);
}

.apartments-page .site-header {
  background: transparent;
  box-shadow: none;
  color: var(--white);
  backdrop-filter: none;
}

.apartments-page .site-header.is-scrolled,
.apartments-page .site-header.is-open {
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 16px 50px rgba(20, 35, 59, 0.12);
  color: var(--navy);
  backdrop-filter: blur(18px);
}

.apartments-page .site-header.is-scrolled .nav-cta,
.apartments-page .site-header.is-open .nav-cta {
  border-color: var(--cta-terracotta);
  background: var(--cta-terracotta);
  color: var(--white);
}

.apartments-hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.apartments-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 20, 34, 0.86), rgba(12, 20, 34, 0.46) 48%, rgba(12, 20, 34, 0.12) 78%),
    linear-gradient(0deg, rgba(12, 20, 34, 0.76), rgba(12, 20, 34, 0.14) 52%),
    linear-gradient(135deg, rgba(179, 149, 91, 0.18), rgba(179, 149, 91, 0) 34%);
}

.apartments-hero::after {
  content: "";
  position: absolute;
  top: clamp(118px, 15svh, 168px);
  right: clamp(28px, 5vw, 76px);
  bottom: clamp(112px, 13svh, 180px);
  z-index: 2;
  width: min(22vw, 310px);
  border-top: 1px solid rgba(179, 149, 91, 0.52);
  border-right: 1px solid rgba(179, 149, 91, 0.42);
  pointer-events: none;
}

.apartments-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.apartments-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(82px, 7.4vw, 118px);
  line-height: 0.86;
  text-shadow: 0 12px 42px rgba(12, 20, 34, 0.5);
  white-space: nowrap;
}

.apartments-hero-subline {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 0.96;
  text-shadow: 0 10px 34px rgba(12, 20, 34, 0.44);
  white-space: nowrap;
}

.apartments-hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.56;
}

.apartments-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.apartments-hero .button.primary {
  background: var(--ivory);
  color: var(--navy);
  box-shadow: 0 18px 48px rgba(12, 20, 34, 0.26);
}

.apartments-hero .button.primary:hover {
  background: var(--white);
  color: var(--navy);
}

.apartments-hero .button.quiet {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.apartments-hero .button.quiet:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.button.quiet {
  border-color: rgba(20, 35, 59, 0.24);
  background: transparent;
  color: var(--navy);
}

.button.quiet:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-1px);
}

.apartments-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy);
}

.apartments-hero-media::after {
  content: none;
}

.apartments-hero-media img {
  object-position: center center;
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.16);
  transform-origin: center;
  filter: saturate(0.9) contrast(1.04);
  will-change: transform;
}

.apartments-hero-facts {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  width: auto;
  max-width: min(100%, 920px);
  margin: 38px 0 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
}

.apartments-hero-facts li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.apartments-hero-facts li + li {
  padding-left: clamp(14px, 2.2vw, 30px);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-fact-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.suite-collection-header {
  display: grid;
  width: min(calc(100% - clamp(48px, 12vw, 192px)), 1296px);
  margin: 0 auto 74px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  column-gap: clamp(42px, 7vw, 108px);
  row-gap: 16px;
  align-items: end;
}

.suite-collection-header h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 5.3vw, 82px);
  line-height: 0.94;
}

.suite-collection-header p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

.detail-study {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.98), rgba(241, 232, 220, 0.56)),
    var(--ivory);
}

.detail-scroll-stage {
  width: 100%;
  margin: 0;
}

.detail-scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 128px 0 136px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(156, 85, 68, 0.42) rgba(20, 35, 59, 0.12);
  scrollbar-width: thin;
}

.detail-scroller::-webkit-scrollbar {
  height: 3px;
}

.detail-scroller::-webkit-scrollbar-track {
  background: rgba(20, 35, 59, 0.12);
}

.detail-scroller::-webkit-scrollbar-thumb {
  background: rgba(156, 85, 68, 0.52);
}

.detail-scroller:focus-visible {
  outline: 1px solid rgba(156, 85, 68, 0.54);
  outline-offset: -12px;
}

.detail-study-intro {
  display: grid;
  width: min(calc(100% - clamp(48px, 12vw, 192px)), 1296px);
  margin: 0 auto 58px;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.44fr);
  column-gap: clamp(34px, 6vw, 92px);
  row-gap: 12px;
  align-items: end;
}

.detail-study-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.detail-study-intro h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(56px, 4.8vw, 76px);
  line-height: 0.9;
}

.detail-study-intro p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.detail-study-grid {
  display: flex;
  width: max-content;
  margin: 0;
  gap: clamp(28px, 3vw, 46px);
  align-items: start;
  padding-inline: clamp(24px, 6vw, 96px);
  box-sizing: content-box;
}

.detail-study-card {
  flex: 0 0 clamp(360px, 34vw, 500px);
  min-width: 0;
  display: grid;
  scroll-snap-align: start;
}

.detail-study-media {
  position: relative;
  aspect-ratio: 1.05 / 1;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 28px 86px rgba(20, 35, 59, 0.14);
}

.detail-study-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 20, 34, 0.02), rgba(12, 20, 34, 0.16) 48%, rgba(12, 20, 34, 0.44)),
    linear-gradient(90deg, rgba(12, 20, 34, 0.24), rgba(12, 20, 34, 0));
  pointer-events: none;
}

.detail-study-media img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.16);
  transition:
    filter 1400ms var(--ease-luxury),
    transform 1500ms var(--ease-luxury);
  will-change: transform;
}

.detail-study-card:hover .detail-study-media img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.18);
}

.detail-study-card-body {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  gap: 24px;
  padding: clamp(22px, 2.6vw, 34px) 0 0;
  border-top: 1px solid rgba(20, 35, 59, 0.16);
}

.detail-study-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.detail-study-card h3 {
  margin: auto 0 0;
  color: var(--navy);
  font-size: clamp(38px, 3.3vw, 52px);
}

.detail-study-card p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.has-detail-horizontal .detail-scroll-stage {
  height: var(--detail-stage-height, 360svh);
}

.has-detail-horizontal .detail-scroller {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: 100vh;
  height: 100svh;
  align-content: center;
  overflow: hidden;
  padding: clamp(82px, 10svh, 116px) 0 clamp(72px, 9svh, 104px);
  scroll-snap-type: none;
  scrollbar-width: none;
}

.has-detail-horizontal .detail-scroller::-webkit-scrollbar {
  display: none;
}

.has-detail-horizontal .detail-study-grid {
  transform: translate3d(var(--detail-track-x, 0px), 0, 0);
  will-change: transform;
}

.has-detail-horizontal .detail-study-intro {
  --detail-heading-inset: max(clamp(24px, 6vw, 96px), calc((100vw - 1296px) / 2));
  width: auto;
  margin-right: 0;
  margin-left: 0;
  padding-inline: var(--detail-heading-inset);
  justify-self: stretch;
  transform: translate3d(var(--detail-heading-inset), 0, 0);
}

.building-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 700px;
  background: var(--navy);
  color: var(--white);
}

.building-story-media {
  min-height: 700px;
  overflow: hidden;
  background: var(--navy);
}

.building-story-media img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.16);
  object-position: center center;
  will-change: transform;
}

.building-story-copy {
  display: grid;
  align-content: center;
  padding: 84px clamp(32px, 6vw, 88px);
}

.building-story-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(54px, 4.9vw, 78px);
  line-height: 0.94;
}

.building-story-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.62;
}

.building-story-copy p:last-child {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(179, 149, 91, 0.34);
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.62;
}

.suite-collection {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(241, 232, 220, 0.62), rgba(251, 248, 241, 0.98) 42%),
    var(--ivory);
}

.suite-collection-header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.suite-scroll-stage {
  width: 100%;
  margin: 0;
}

.suite-scroller {
  width: min(100%, 1296px);
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 18px;
  scroll-padding: 0;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(156, 85, 68, 0.42) rgba(20, 35, 59, 0.12);
  scrollbar-width: thin;
}

.suite-scroller::-webkit-scrollbar {
  height: 3px;
}

.suite-scroller::-webkit-scrollbar-track {
  background: rgba(20, 35, 59, 0.12);
}

.suite-scroller::-webkit-scrollbar-thumb {
  background: rgba(156, 85, 68, 0.52);
}

.suite-scroller:focus-visible {
  outline: 1px solid rgba(156, 85, 68, 0.54);
  outline-offset: 8px;
}

.has-suite-horizontal .suite-scroll-stage {
  height: var(--suite-stage-height, 520svh);
}

.has-suite-horizontal .suite-scroller {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  align-content: center;
  justify-items: stretch;
  margin: 0;
  overflow: hidden;
  padding: clamp(92px, 11svh, 132px) 0 clamp(72px, 9svh, 110px);
  scroll-snap-type: none;
  scrollbar-width: none;
}

.has-suite-horizontal .suite-collection-header {
  --suite-heading-inset: max(clamp(24px, 6vw, 96px), calc((100vw - 1296px) / 2));
  width: auto;
  min-width: 0;
  margin: 0 0 clamp(24px, 3.6svh, 40px);
  padding-inline: var(--suite-heading-inset);
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.44fr);
  column-gap: clamp(24px, 5vw, 86px);
  row-gap: 10px;
  justify-self: stretch;
  align-items: end;
  transform: translate3d(var(--suite-heading-inset), 0, 0);
}

.has-suite-horizontal .suite-collection-header h2 {
  min-width: 0;
  max-width: none;
  font-size: clamp(54px, 5.4vw, 78px);
  line-height: 0.9;
  text-wrap: balance;
}

.has-suite-horizontal .suite-collection-header p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.58;
}

.has-suite-horizontal .suite-scroller::-webkit-scrollbar {
  display: none;
}

.has-suite-horizontal .suite-grid {
  transform: translate3d(var(--suite-track-x, 0px), 0, 0);
  will-change: transform;
}

.has-suite-horizontal .image-detail-trigger {
  top: 16px;
  bottom: auto;
}

.suite-grid {
  display: flex;
  width: max-content;
  margin: 0;
  gap: clamp(28px, 3vw, 46px);
  align-items: start;
  padding-inline: clamp(24px, 6vw, 96px);
  box-sizing: content-box;
}

.suite-card {
  flex: 0 0 clamp(340px, 30vw, 426px);
  min-width: 0;
  border-top: 1px solid rgba(20, 35, 59, 0.18);
  scroll-snap-align: start;
}

.has-suite-horizontal .suite-card {
  position: relative;
  border-top: 0;
  flex-basis: clamp(310px, 29vw, 410px);
}

.suite-card:nth-child(even) {
  margin-top: 58px;
}

.suite-card-media {
  position: relative;
  aspect-ratio: 0.86 / 1;
  margin-top: 24px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(20, 35, 59, 0.12);
}

.has-suite-horizontal .suite-card-media {
  aspect-ratio: 0.9 / 1;
  margin-top: 0;
  box-shadow: 0 28px 86px rgba(20, 35, 59, 0.18);
}

.has-suite-horizontal .suite-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 20, 34, 0.08), rgba(12, 20, 34, 0.28) 45%, rgba(12, 20, 34, 0.82)),
    linear-gradient(90deg, rgba(12, 20, 34, 0.28), rgba(12, 20, 34, 0));
  pointer-events: none;
}

.suite-card-media img {
  height: 100%;
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.16);
  transition:
    filter 1400ms var(--ease-luxury),
    transform 1500ms var(--ease-luxury);
  will-change: transform;
}

.suite-card:hover .suite-card-media img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.18);
}

.image-detail-trigger {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(12, 20, 34, 0.58);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    opacity 260ms ease,
    transform 260ms var(--ease-luxury);
}

.suite-card:hover .image-detail-trigger,
.image-detail-trigger:focus-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.image-detail-trigger:hover,
.image-detail-trigger:focus-visible {
  border-color: var(--gold);
  background: rgba(12, 20, 34, 0.76);
}

@media (hover: none) {
  .image-detail-trigger {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.suite-card-body {
  display: grid;
  padding-top: 26px;
  border-top: 1px solid rgba(20, 35, 59, 0.12);
}

.has-suite-horizontal .suite-card-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(20px, 2.4vw, 30px);
  border-top: 0;
}

.suite-number {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.suite-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 3.4vw, 50px);
  line-height: 0.96;
}

.has-suite-horizontal .suite-card h3 {
  color: var(--white);
}

.suite-card p:not(.suite-number) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.has-suite-horizontal .suite-card p:not(.suite-number) {
  max-width: 32ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.suite-enquiry {
  display: inline-flex;
  margin-top: 24px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--terracotta);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.suite-enquiry:hover {
  color: var(--navy);
}

.has-suite-horizontal .suite-enquiry {
  color: var(--white);
}

.has-suite-horizontal .suite-enquiry:hover {
  color: var(--gold);
}

.apartments-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  min-height: 720px;
  background: var(--navy);
  color: var(--white);
}

.apartments-feature-image {
  min-height: 720px;
  overflow: hidden;
}

.apartments-feature-image img {
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(1.16);
  will-change: transform;
}

.apartments-feature-copy {
  display: grid;
  align-content: center;
  padding: 82px clamp(32px, 6vw, 86px);
}

.apartments-feature-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(54px, 4.8vw, 76px);
  line-height: 0.95;
}

.apartments-feature-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.62;
}

.apartments-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.suite-collection,
.building-story,
.detail-study,
.apartments-feature {
  scroll-margin-top: 96px;
}

@media (min-width: 1181px) {
  .has-suite-horizontal .suite-scroller,
  .has-detail-horizontal .detail-scroller {
    padding-top: max(104px, 11svh);
    padding-bottom: max(94px, 10svh);
  }

  .has-suite-horizontal .suite-collection-header {
    margin-bottom: 26px;
  }

  .has-suite-horizontal .suite-card {
    flex-basis: clamp(310px, 27vw, 390px);
  }

  .has-suite-horizontal .suite-card:nth-child(even) {
    margin-top: 36px;
  }

  .has-detail-horizontal .detail-study-intro {
    width: auto;
    margin-bottom: 26px;
  }

  .has-detail-horizontal .detail-study-card {
    flex-basis: clamp(320px, 27vw, 390px);
  }

  .has-detail-horizontal .detail-study-media {
    aspect-ratio: 1.12 / 1;
  }

  .has-detail-horizontal .detail-study-card-body {
    min-height: 170px;
    gap: 16px;
    padding-top: 22px;
  }
}

@media (min-width: 981px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding-right: clamp(48px, 4.8vw, 76px);
    padding-left: clamp(48px, 4.8vw, 76px);
  }

  .site-nav {
    gap: clamp(20px, 2vw, 30px);
  }

  .nav-cta {
    padding: 9px 2px 3px;
    border: 0;
    border-bottom: 1px solid currentColor;
  }

  .site-header.is-scrolled .nav-cta,
  .site-header.is-open .nav-cta {
    padding: 11px 18px;
    border: 1px solid var(--cta-terracotta);
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: clamp(138px, 14svh, 176px) clamp(48px, 5vw, 76px) clamp(160px, 17svh, 218px);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(12, 20, 34, 0.84), rgba(12, 20, 34, 0.34) 48%, rgba(12, 20, 34, 0.04) 76%),
      linear-gradient(0deg, rgba(12, 20, 34, 0.68), rgba(12, 20, 34, 0.08) 52%);
  }

  .hero-copy {
    max-width: 700px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(82px, 7.1vw, 108px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 620px;
    font-size: 20px;
    line-height: 1.52;
  }

  .desktop-booking-widget {
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: 30;
    display: block;
    width: min(calc(100vw - clamp(96px, 10vw, 152px)), 1296px);
    color: var(--ink);
    transform: translateX(-50%);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .desktop-booking-widget.is-hidden-over-footer {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
  }

  .desktop-booking-widget::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    background: rgba(251, 248, 241, 0.98);
    box-shadow: 0 30px 88px rgba(12, 20, 34, 0.28);
  }

  .desktop-booking-widget #lodgify-search-bar {
    min-height: 88px;
  }

  .desktop-booking-widget #portable-search-bar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 0 !important;
  }

  .desktop-booking-widget #portable-search-bar > div:empty {
    display: none !important;
  }

  .desktop-booking-widget #portable-search-bar > button {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0;
  }

  .desktop-booking-widget #portable-search-bar > a {
    flex: 0 0 min(24%, 232px) !important;
    width: auto !important;
    min-width: 180px;
  }

  .hero-facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    width: auto;
    max-width: 620px;
    margin-top: 30px;
    background: transparent;
    border: 0;
  }

  .hero-facts div {
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
    padding: 8px 18px 8px 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-facts div + div {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.32);
  }

  .hero-facts dt {
    font-size: 28px;
    line-height: 0.95;
  }

  .hero-facts dd {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .section-pad,
  .barcelona {
    padding-right: clamp(48px, 6vw, 96px);
    padding-left: clamp(48px, 6vw, 96px);
  }

  .intro {
    padding-top: 132px;
    padding-bottom: 126px;
  }

  .intro .section-kicker {
    width: min(100%, 1296px);
    margin-right: auto;
    margin-left: auto;
  }

  .intro-grid {
    width: min(100%, 1296px);
    margin: 0 auto;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.48fr);
    gap: clamp(56px, 7vw, 112px);
    align-items: start;
  }

  .intro-grid h2 {
    max-width: 780px;
    font-size: clamp(64px, 5.7vw, 88px);
    line-height: 0.94;
  }

  .intro-grid p {
    max-width: 520px;
    padding-top: 18px;
    font-size: 19px;
    line-height: 1.65;
  }

  .apartment-link-card {
    width: min(100%, 1296px);
    min-height: clamp(560px, 48vw, 690px);
    margin: 88px auto 0;
    box-shadow: 0 34px 110px rgba(20, 35, 59, 0.18);
  }

  .apartment-link-card img {
    object-position: 44% center;
  }

  .apartment-link-overlay {
    background:
      linear-gradient(0deg, rgba(12, 20, 34, 0.88), rgba(12, 20, 34, 0.36) 48%, rgba(12, 20, 34, 0.08) 76%),
      linear-gradient(90deg, rgba(12, 20, 34, 0.64), rgba(12, 20, 34, 0.1) 58%);
  }

  .apartment-card-copy {
    bottom: clamp(42px, 4.4vw, 72px);
    left: clamp(42px, 4.8vw, 78px);
    max-width: 710px;
  }

  .apartment-card-title {
    max-width: 640px;
    font-size: clamp(64px, 5.2vw, 82px);
    line-height: 0.9;
  }

  .apartment-card-text {
    max-width: 520px;
  }

  .split-feature {
    grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.72fr);
    min-height: 760px;
  }

  .feature-image {
    min-height: 760px;
  }

  .feature-image img {
    object-position: center center;
  }

  .feature-copy {
    display: grid;
    align-content: center;
    max-width: 620px;
    padding: 88px clamp(56px, 6vw, 94px);
  }

  .feature-copy h2 {
    max-width: 500px;
    font-size: clamp(58px, 4.9vw, 78px);
  }

  .feature-copy p {
    max-width: 470px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.62;
  }

  .guest-experience {
    padding-top: 136px;
    padding-bottom: 142px;
    background:
      linear-gradient(180deg, var(--ivory), rgba(251, 248, 241, 0.9) 56%, var(--ivory)),
      var(--ivory);
  }

  .guest-intro {
    display: grid;
    width: min(100%, 1296px);
    max-width: none;
    margin: 0 auto 84px;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.42fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: end;
    text-align: left;
  }

  .guest-intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .guest-intro h2 {
    max-width: 790px;
    margin: 0;
    font-size: clamp(62px, 5.2vw, 82px);
    line-height: 0.94;
  }

  .guest-intro p:not(.eyebrow) {
    max-width: 470px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
  }

  .guest-card-grid {
    width: min(100%, 1296px);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 42px);
    align-items: start;
  }

  .guest-card,
  .guest-card:nth-child(2),
  .guest-card:nth-child(3) {
    margin-top: 0;
    background: transparent;
    box-shadow: none;
  }

  .guest-card:hover {
    box-shadow: none;
  }

  .guest-card-image {
    margin: 0;
    aspect-ratio: 1.08 / 1;
    box-shadow: 0 24px 70px rgba(20, 35, 59, 0.12);
  }

  .guest-card-body {
    padding: 28px 0 0;
    border-top: 1px solid rgba(20, 35, 59, 0.16);
  }

  .guest-card-kicker {
    margin-bottom: 16px;
    color: var(--terracotta);
  }

  .guest-card h3 {
    max-width: 420px;
    font-size: clamp(36px, 3.2vw, 48px);
  }

  .guest-card p:not(.guest-card-kicker) {
    max-width: 410px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.58;
  }

  .barcelona {
    padding-top: 132px;
    padding-bottom: 146px;
    background: var(--navy);
  }

  .city-guide-intro {
    display: grid;
    width: min(100%, 1296px);
    max-width: none;
    margin: 0 auto 78px;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.45fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: end;
    text-align: left;
  }

  .city-guide-intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .city-guide-intro h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(60px, 5.1vw, 82px);
    line-height: 0.94;
  }

  .city-guide-intro p:not(.eyebrow) {
    max-width: 500px;
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.62;
  }

  .city-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
  }

  .city-track {
    width: 100%;
    margin: 0;
    display: flex;
    gap: clamp(26px, 3vw, 42px);
    align-items: stretch;
    overflow-x: auto;
    padding: 0 clamp(48px, 6vw, 96px) 22px;
    cursor: grab;
    scroll-padding: clamp(48px, 6vw, 96px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .city-track::-webkit-scrollbar {
    display: none;
  }

  .city-track.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .city-card {
    display: block;
    flex: 0 0 clamp(380px, 30vw, 560px);
    min-height: 0;
    margin-top: 0;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0.58;
    scroll-snap-align: start;
    transition:
      opacity 620ms var(--ease-luxury),
      transform 780ms var(--ease-luxury);
  }

  .city-card:nth-child(2),
  .city-card:nth-child(3) {
    margin-top: 0;
  }

  .city-card.is-active {
    opacity: 1;
    transform: translateY(0);
  }

  .city-card:hover {
    opacity: 1;
    box-shadow: none;
  }

  .city-card-image {
    margin: 24px 0 0;
    aspect-ratio: 1.18 / 1;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .city-card-body {
    padding: 26px 0 0;
  }

  .city-card-title {
    font-size: clamp(38px, 3vw, 48px);
  }

  .city-card-copy {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.56;
  }

  .city-card-link {
    margin-top: 24px;
  }

  .city-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 26px auto 0;
  }

  .city-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition:
      width 260ms var(--ease-luxury),
      background 260ms ease,
      transform 260ms var(--ease-luxury);
  }

  .city-dots button.is-active {
    width: 24px;
    transform: translateY(-1px);
    background: var(--gold);
  }

  .city-progress {
    display: block;
    width: min(100% - clamp(96px, 12vw, 192px), 1296px);
    height: 1px;
    margin: 24px auto 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
  }

  .city-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.8));
    transform: scaleX(var(--city-progress, 0.16));
    transform-origin: left center;
    transition: transform 480ms var(--ease-luxury);
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero {
    padding-right: 44px;
    padding-left: 44px;
  }

  .intro-grid,
  .guest-intro,
  .city-guide-intro,
  .collection-wall-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-grid p,
  .guest-intro p:not(.eyebrow),
  .city-guide-intro p:not(.eyebrow),
  .collection-wall-intro p:not(.eyebrow) {
    max-width: 720px;
    padding-top: 0;
  }

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

  .collection-panel-large {
    min-height: 620px;
    grid-column: span 2;
  }

  .collection-panel-tall {
    min-height: 460px;
    grid-row: auto;
  }

  .split-feature {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  }

  .feature-copy {
    padding-right: 42px;
    padding-left: 42px;
  }

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

  .guest-card h3 {
    font-size: 36px;
  }

  .city-track {
    grid-template-columns: 1fr;
  }

  .city-card:nth-child(1) {
    grid-row: auto;
  }
}

@media (max-width: 1180px) {
  body {
    padding-bottom: 0;
  }

  .desktop-booking-widget {
    display: none;
  }

  .hero::after,
  .hero-scroll-cue {
    display: none;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: 120px clamp(28px, 6vw, 56px) 132px;
  }

  .hero-copy {
    max-width: min(100%, 620px);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    transform: translateY(-5svh);
  }

  .hero-copy p:not(.eyebrow) {
    display: none;
  }

  .hero-facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: auto;
    max-width: min(100%, 620px);
    margin: 28px auto 0;
    background: transparent;
    border: 0;
  }

  .hero-facts div {
    display: inline-flex;
    min-width: 0;
    align-items: baseline;
    gap: 9px;
    padding: 7px 16px;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-facts div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.32);
  }

  .hero-facts dt {
    font-size: 28px;
    line-height: 0.95;
  }

  .hero-facts dd {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.13em;
    white-space: nowrap;
  }

  .nav-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--ivory);
    color: var(--navy);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav button {
    padding: 15px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .intro-grid,
  .split-feature,
  .guest-card-grid,
  .barcelona {
    grid-template-columns: 1fr;
  }

  .collection-wall-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collection-wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 52px;
    gap: 22px;
  }

  .collection-panel {
    min-height: 410px;
  }

  .collection-panel-large {
    min-height: 560px;
    grid-column: span 2;
    grid-row: auto;
  }

  .collection-panel-tall {
    min-height: 410px;
    grid-row: auto;
  }

  .image-detail-trigger {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 52px;
  }

  h3 {
    font-size: 30px;
  }

  .feature-image,
  .apartment-image {
    min-height: 460px;
  }

  .city-track {
    display: flex;
    grid-template-columns: none;
    gap: 22px;
    overflow-x: auto;
    padding: 0 clamp(24px, 5vw, 48px) 14px;
    scroll-padding: clamp(24px, 5vw, 48px);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .city-track::-webkit-scrollbar {
    display: none;
  }

  .city-card,
  .city-card:nth-child(2),
  .city-card:nth-child(3) {
    flex: 0 0 min(82vw, 560px);
    margin-top: 0;
    scroll-snap-align: center;
  }

  .city-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
    padding: 0 24px;
  }

  .city-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition:
      width 260ms var(--ease-luxury),
      background 260ms ease,
      transform 260ms var(--ease-luxury);
  }

  .city-dots button.is-active {
    width: 24px;
    transform: translateY(-1px);
    background: var(--gold);
  }

  .widget-grid {
    grid-template-columns: 1fr;
  }

  .mobile-availability {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 18;
    display: grid;
    width: 100%;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    background: var(--ivory);
    border-top: 1px solid rgba(20, 35, 59, 0.12);
    box-shadow: 0 -20px 70px rgba(20, 35, 59, 0.2);
    backface-visibility: hidden;
    contain: layout paint;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .mobile-availability-button {
    position: relative;
    display: inline-flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    background: linear-gradient(180deg, #c04d34, var(--cta-terracotta) 44%, #9f3f30);
    color: var(--white);
    cursor: pointer;
    font: 800 13px var(--sans);
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(20, 35, 59, 0.18),
      0 12px 30px rgba(20, 35, 59, 0.24);
    text-transform: uppercase;
  }

  .mobile-availability-button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(251, 248, 241, 0.54);
  }

  .mobile-availability-button::after {
    content: none;
  }

}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 64px;
    padding: 12px 18px;
  }

  .brand-mark {
    font-size: 21px;
  }

  .brand-location {
    font-size: 10px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    inset: 64px 12px auto;
    padding: 8px;
  }

  .site-nav a,
  .site-nav button {
    padding: 14px 12px;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: 100px 24px 132px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 49%, rgba(12, 20, 34, 0.34), rgba(12, 20, 34, 0) 36%),
      linear-gradient(0deg, rgba(12, 20, 34, 0.84), rgba(12, 20, 34, 0.16) 62%),
      linear-gradient(90deg, rgba(12, 20, 34, 0.58), rgba(12, 20, 34, 0.16));
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-copy {
    max-width: 100%;
    transform: translateY(-4svh);
    text-align: center;
  }

  .hero .eyebrow {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    color: #d9c384;
    text-shadow: 0 2px 18px rgba(12, 20, 34, 0.62);
    white-space: nowrap;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  h1 {
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 54px;
    line-height: 1;
    text-shadow: 0 8px 32px rgba(12, 20, 34, 0.56);
  }

  .hero-title-main {
    font-size: 1em;
    line-height: 0.9;
  }

  .hero-title-location {
    margin-top: 8px;
    font-size: 0.66em;
    line-height: 0.95;
  }

  h2 {
    font-size: 34px;
    line-height: 1;
  }

  h3 {
    font-size: 26px;
    line-height: 1.08;
  }

  .hero-copy p:not(.eyebrow),
  .intro-grid p,
  .feature-copy p,
  .guest-intro p:not(.eyebrow),
  .barcelona-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: none;
  }

  .hero-facts {
    max-width: min(100%, 360px);
    margin-top: 22px;
  }

  .hero-facts div {
    gap: 6px;
    padding: 5px 7px;
  }

  .hero-facts dt {
    font-size: 23px;
  }

  .hero-facts dd {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .section-pad,
  .barcelona {
    padding: 64px 18px;
  }

  .barcelona {
    overflow: hidden;
    padding-right: 0;
    padding-left: 0;
  }

  .city-guide-intro {
    max-width: none;
    margin-bottom: 42px;
    padding: 0 24px;
  }

  .city-guide-intro h2 {
    max-width: 340px;
    font-size: 40px;
    line-height: 1;
  }

  .city-guide-intro p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .city-carousel {
    overflow: hidden;
  }

  .city-track {
    display: flex;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    padding: 0 24px 12px;
    scroll-padding: 24px;
    scroll-snap-type: x proximity;
    scroll-behavior: auto;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .city-track::-webkit-scrollbar {
    display: none;
  }

  .city-card,
  .city-card:nth-child(2),
  .city-card:nth-child(3) {
    flex: 0 0 min(82vw, 342px);
    scroll-snap-align: center;
    opacity: 0.62;
    transform: scale(0.94);
    will-change: opacity, transform;
  }

  .city-card.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: none;
  }

  .city-card:not(.is-active) .city-card-image img {
    transform: scale(1.08);
  }

  .city-card.is-active .city-card-image img {
    transform: scale(1.02);
  }

  .city-card-image {
    aspect-ratio: 1.12 / 1;
    margin: 22px 22px 0;
  }

  .city-card-body {
    padding: 24px 22px 30px;
  }

  .city-card-index {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .city-card-title {
    font-size: 38px;
  }

  .city-card-copy {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .city-card-link {
    margin-top: 24px;
  }

  .city-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
    padding: 0 24px;
  }

  .city-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition:
      width 260ms var(--ease-luxury),
      background 260ms ease,
      transform 260ms var(--ease-luxury);
  }

  .city-dots button.is-active {
    width: 24px;
    transform: translateY(-1px);
    background: var(--gold);
  }

  .intro-grid,
  .guest-card-grid,
  .barcelona {
    gap: 28px;
  }

  .apartment-link-card {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    margin-top: 46px;
  }

  .apartment-link-card img {
    object-position: 38% center;
  }

  .apartment-link-overlay {
    background:
      linear-gradient(0deg, rgba(12, 20, 34, 0.88), rgba(12, 20, 34, 0.46) 48%, rgba(12, 20, 34, 0.08) 74%),
      linear-gradient(90deg, rgba(12, 20, 34, 0.5), rgba(12, 20, 34, 0.08));
  }

  .apartment-card-copy {
    right: 34px;
    bottom: 30px;
    left: 34px;
  }

  .apartment-card-kicker {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .apartment-card-title {
    max-width: 340px;
    font-size: 39px;
    line-height: 0.96;
  }

  .apartment-card-text {
    max-width: 310px;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.4;
  }

  .apartment-card-button {
    margin-top: 22px;
    padding: 15px 28px;
  }

  .collection-wall-intro h2 {
    max-width: 350px;
    font-size: 40px;
    line-height: 1;
  }

  .collection-wall-intro p:not(.eyebrow) {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.55;
  }

  .collection-wall-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
    gap: 18px;
  }

  .collection-panel,
  .collection-panel-large,
  .collection-panel-tall {
    min-height: 330px;
    grid-column: auto;
    grid-row: auto;
  }

  .collection-panel-large {
    min-height: 430px;
  }

  .collection-panel::before {
    inset: 14px;
  }

  .collection-panel-copy {
    padding: 24px;
  }

  .collection-panel-title {
    font-size: 38px;
  }

  .collection-panel-text {
    max-width: 280px;
    font-size: 15px;
  }

  .feature-copy {
    padding: 28px 18px;
  }

  .feature-image {
    min-height: 300px;
  }

  .detail-list {
    margin: 22px 0 28px;
  }

  .guest-intro {
    margin-bottom: 46px;
  }

  .guest-intro h2 {
    max-width: 350px;
    font-size: 40px;
    line-height: 1;
  }

  .guest-intro p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 22px;
    line-height: 1.5;
  }

  .guest-card-grid {
    gap: 28px;
  }

  .guest-card,
  .guest-card:nth-child(2),
  .guest-card:nth-child(3) {
    margin-top: 0;
  }

  .guest-card-image {
    aspect-ratio: 1.15 / 1;
    margin: 24px 24px 0;
  }

  .guest-card-body {
    padding: 24px 24px 30px;
  }

  .guest-card-kicker {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .guest-card h3 {
    font-size: 34px;
    line-height: 1;
  }

  .guest-card p:not(.guest-card-kicker) {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .booking-widget {
    padding: 14px;
  }

  .widget-bar {
    height: 9px;
    margin-bottom: 14px;
  }

  .widget-grid span,
  .widget-grid strong {
    min-height: 58px;
    padding: 14px;
  }

  .widget-grid strong {
    min-height: 62px;
  }

  .site-footer {
    display: grid;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .availability-panel {
    padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
  }

  .availability-header h2 {
    font-size: 34px;
  }

  .availability-widget-slot {
    padding: 14px;
  }

  .image-viewer {
    align-items: end;
    padding: 18px;
  }

  .image-viewer-panel {
    max-height: 86svh;
  }

  .image-viewer-header {
    padding: 18px;
  }

  .image-viewer-header h2 {
    font-size: 30px;
  }

  .image-viewer-media img {
    max-height: calc(86svh - 104px);
  }
}

@media (max-width: 380px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 124px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 31px;
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero-facts {
    max-width: min(100%, 306px);
    margin-top: 18px;
  }

  .hero-facts div {
    gap: 5px;
    padding: 4px 5px;
  }

  .hero-facts dt {
    font-size: 22px;
  }

  .hero-facts dd {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .apartment-link-card {
    aspect-ratio: 1 / 1.12;
  }

  .apartment-card-copy {
    right: 26px;
    left: 26px;
  }

  .apartment-card-title {
    max-width: 300px;
    font-size: 35px;
  }

  .apartment-card-text {
    max-width: 280px;
    font-size: 14px;
  }

}

@media (min-width: 981px) {
  .apartments-page .desktop-booking-widget #lodgify-search-bar {
    min-height: 88px;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .apartments-hero {
    min-height: 100svh;
    padding-top: 138px;
    padding-bottom: 156px;
  }

  .apartments-hero-media {
    min-height: 0;
  }

  .apartments-hero-facts {
    margin-top: 32px;
    margin-left: 0;
  }

  .suite-collection-header,
  .detail-study-intro,
  .building-story,
  .apartments-feature {
    grid-template-columns: 1fr;
  }

  .suite-collection-header p:not(.eyebrow),
  .detail-study-intro p:not(.eyebrow) {
    max-width: 720px;
  }

  .suite-card {
    flex-basis: clamp(340px, 42vw, 440px);
  }

  .detail-study-card {
    flex-basis: min(62vw, 460px);
  }

  .apartments-feature-image {
    min-height: 480px;
  }

  .building-story-media {
    min-height: 480px;
  }

  .building-story-copy {
    padding-top: 70px;
    padding-bottom: 82px;
  }

  .apartments-feature-copy {
    padding-top: 70px;
    padding-bottom: 82px;
  }
}

@media (max-width: 1180px) {
  .apartments-hero {
    align-content: center;
    min-height: 100svh;
    align-items: center;
    row-gap: clamp(48px, 8svh, 82px);
    padding: 120px clamp(28px, 6vw, 56px) 132px;
  }

  .apartments-hero::after {
    top: 112px;
    right: clamp(26px, 6vw, 54px);
    bottom: 120px;
    width: min(34vw, 240px);
  }

  .apartments-hero-copy {
    max-width: min(100%, 660px);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    transform: translateY(0);
  }

  .apartments-hero h1 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(58px, 11vw, 82px);
  }

  .apartments-hero-subline {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(34px, 7vw, 54px);
  }

  .apartments-hero-text {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
  }

  .apartments-hero-media {
    min-height: 0;
  }

  .apartments-hero-facts {
    max-width: min(100%, 680px);
    justify-content: center;
    margin: 0 auto;
  }

  .apartments-hero-facts li {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .apartments-hero-facts li + li {
    padding-left: 14px;
  }

  .detail-study-intro,
  .suite-collection-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .detail-study-intro h2,
  .suite-collection-header h2 {
    font-size: clamp(44px, 8vw, 58px);
  }

  .detail-study {
    padding: 0;
  }

  .detail-study-intro {
    margin-bottom: 52px;
  }

  .has-detail-horizontal .detail-scroller {
    padding: clamp(82px, 10svh, 112px) 0 clamp(74px, 8svh, 98px);
  }

  .detail-study-intro {
    --detail-heading-inset: clamp(24px, 6vw, 56px);
    width: auto;
    gap: 18px;
  }

  .has-detail-horizontal .detail-study-intro {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 12px;
  }

  .has-detail-horizontal .detail-study-intro p:not(.eyebrow) {
    display: none;
  }

  .detail-study-card {
    flex-basis: min(68vw, 430px);
  }

  .suite-collection {
    padding: 0;
  }

  .suite-collection-header {
    margin-bottom: 54px;
  }

  .has-suite-horizontal .suite-scroller {
    padding: clamp(88px, 10svh, 118px) 0 clamp(76px, 8svh, 96px);
  }

  .has-suite-horizontal .suite-collection-header {
    --suite-heading-inset: clamp(24px, 6vw, 56px);
    width: auto;
    margin-bottom: clamp(24px, 4svh, 36px);
    row-gap: 12px;
    grid-template-columns: minmax(0, 1fr);
  }

  .has-suite-horizontal .suite-collection-header h2 {
    font-size: clamp(40px, 7.2vw, 58px);
  }

  .has-suite-horizontal .suite-collection-header p:not(.eyebrow) {
    display: none;
  }

  .suite-grid {
    gap: 34px 24px;
  }

  .has-suite-horizontal .suite-grid {
    gap: clamp(24px, 3vw, 34px);
  }

  .suite-card {
    flex-basis: min(72vw, 420px);
  }

  .has-suite-horizontal .suite-card {
    flex-basis: min(68vw, 390px);
  }

  .has-suite-horizontal .suite-card p:not(.suite-number) {
    display: none;
  }

  .suite-card:nth-child(even) {
    margin-top: 0;
  }

  .apartments-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .building-story {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .building-story-media {
    min-height: 420px;
  }

  .building-story-copy {
    padding: 58px clamp(24px, 6vw, 56px) 72px;
  }

  .building-story-copy h2 {
    font-size: clamp(42px, 8vw, 58px);
  }

  .apartments-feature-image {
    min-height: 420px;
  }

  .apartments-feature-copy {
    padding: 58px clamp(24px, 6vw, 56px) 72px;
  }

  .apartments-feature-copy h2 {
    font-size: clamp(42px, 8vw, 58px);
  }
}

@media (min-width: 641px) and (max-width: 1180px) and (max-height: 850px) {
  .has-suite-horizontal .suite-scroller,
  .has-detail-horizontal .detail-scroller {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .has-suite-horizontal .suite-collection-header,
  .has-detail-horizontal .detail-study-intro {
    margin-bottom: 20px;
  }

  .has-suite-horizontal .suite-card {
    flex-basis: min(46vw, 320px);
  }

  .has-detail-horizontal .detail-study-card {
    flex-basis: min(46vw, 330px);
  }

  .has-detail-horizontal .detail-study-media {
    aspect-ratio: 1.18 / 1;
  }

  .has-detail-horizontal .detail-study-card-body {
    min-height: 150px;
    gap: 14px;
    padding-top: 18px;
  }

  .has-detail-horizontal .detail-study-card p {
    display: none;
  }
}

@media (max-width: 720px) {
  .apartments-hero h1 {
    font-size: 54px;
  }

  .apartments-hero-subline {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .apartments-hero {
    row-gap: clamp(70px, 10svh, 96px);
    padding: 100px 24px 132px;
  }

  .apartments-hero::before {
    background:
      radial-gradient(circle at 50% 49%, rgba(12, 20, 34, 0.36), rgba(12, 20, 34, 0) 38%),
      linear-gradient(0deg, rgba(12, 20, 34, 0.86), rgba(12, 20, 34, 0.2) 62%),
      linear-gradient(90deg, rgba(12, 20, 34, 0.58), rgba(12, 20, 34, 0.16));
  }

  .apartments-hero::after {
    content: none;
  }

  .apartments-hero-copy {
    transform: translateY(0);
  }

  .apartments-hero .eyebrow {
    color: #d9c384;
    text-shadow: 0 2px 18px rgba(12, 20, 34, 0.62);
    white-space: nowrap;
  }

  .apartments-hero h1 {
    max-width: none;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 42px;
    line-height: 0.9;
    text-shadow: 0 8px 32px rgba(12, 20, 34, 0.56);
  }

  .apartments-hero-subline {
    max-width: none;
    font-size: 25px;
    line-height: 0.98;
  }

  .apartments-hero-text {
    display: none;
  }

  .apartments-hero-actions {
    display: none;
  }

  .apartments-hero-media {
    min-height: 0;
  }

  .apartments-hero-facts {
    display: grid;
    width: min(100%, 360px);
    max-width: min(100%, 360px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
  }

  .apartments-hero-facts li {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 8px;
    padding: 0 7px;
    font-size: 8px;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .apartments-hero-facts li + li {
    padding-left: 7px;
  }

  .hero-fact-icon {
    width: 18px;
    height: 18px;
  }

  .detail-study-intro h2,
  .suite-collection-header h2 {
    font-size: 40px;
    line-height: 1;
  }

  .detail-study-intro p:not(.eyebrow),
  .suite-collection-header p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .detail-study {
    padding: 0;
  }

  .detail-study-intro {
    --detail-heading-inset: 24px;
    width: auto;
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: 0;
    gap: 12px;
  }

  .detail-study-intro h2 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 0.92;
  }

  .has-detail-horizontal .detail-scroller {
    padding: 78px 0 92px;
  }

  .has-detail-horizontal .detail-study-intro p:not(.eyebrow) {
    display: none;
  }

  .has-detail-horizontal .detail-study-grid {
    gap: 24px;
    padding-inline: 24px;
  }

  .detail-study-card {
    flex-basis: min(78vw, 320px);
  }

  .detail-study-media {
    aspect-ratio: 0.95 / 1;
  }

  .detail-study-card-body {
    min-height: 190px;
    gap: 18px;
  }

  .detail-study-card h3 {
    font-size: 38px;
  }

  .detail-study-card p {
    font-size: 15px;
  }

  .suite-collection {
    padding: 0;
  }

  .suite-collection-header {
    margin-bottom: 36px;
  }

  .has-suite-horizontal .suite-scroller {
    padding: 82px 0 92px;
  }

  .has-suite-horizontal .suite-collection-header {
    --suite-heading-inset: 24px;
    width: auto;
    margin-right: auto;
    margin-bottom: 22px;
    margin-left: 0;
    gap: 12px;
  }

  .has-suite-horizontal .suite-collection-header h2 {
    width: 100%;
    max-width: none;
    font-size: clamp(42px, 11.8vw, 54px);
    line-height: 0.9;
    white-space: nowrap;
  }

  .has-suite-horizontal .suite-collection-header p:not(.eyebrow) {
    display: none;
  }

  .suite-grid {
    gap: 24px;
  }

  .has-suite-horizontal .suite-grid {
    padding-inline: 24px;
  }

  .suite-card {
    flex-basis: min(82vw, 330px);
  }

  .has-suite-horizontal .suite-card {
    flex-basis: min(76vw, 300px);
  }

  .suite-card-media {
    aspect-ratio: 1.08 / 1;
    margin-top: 18px;
  }

  .suite-card h3 {
    font-size: 38px;
  }

  .suite-card p:not(.suite-number) {
    font-size: 16px;
  }

  .has-suite-horizontal .suite-card p:not(.suite-number) {
    display: none;
  }

  .building-story-media {
    min-height: 320px;
  }

  .building-story-copy {
    padding: 48px 18px 68px;
  }

  .building-story-copy h2 {
    font-size: 40px;
    line-height: 1;
  }

  .building-story-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .building-story-copy p:last-child {
    font-size: 14px;
  }

  .apartments-feature-image {
    min-height: 320px;
  }

  .apartments-feature-copy {
    padding: 48px 18px 68px;
  }

  .apartments-feature-copy h2 {
    font-size: 40px;
    line-height: 1;
  }

  .apartments-feature-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

}

@media (max-width: 380px) {
  .apartments-hero h1 {
    font-size: 38px;
  }

  .apartments-hero-subline {
    font-size: 23px;
  }

  .detail-study-intro h2,
  .suite-collection-header h2,
  .building-story-copy h2,
  .apartments-feature-copy h2 {
    font-size: 36px;
  }

  .apartments-hero-facts li {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 7px;
  }

  .apartments-hero-facts li + li {
    padding-left: 5px;
  }
}

@media (max-width: 340px) {
  .apartments-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .apartments-hero h1 {
    font-size: 34px;
  }

  .apartments-hero-subline {
    font-size: 20px;
  }
}

.motion-enabled .site-header {
  opacity: 0;
  transform: translateY(-18px);
}

@media (min-width: 1181px) {
  body:not(.apartments-page) .collection-wall {
    padding-top: clamp(112px, 9vw, 148px);
    padding-bottom: clamp(118px, 9vw, 154px);
  }

  body:not(.apartments-page) .collection-wall-intro {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: clamp(48px, 5vw, 72px);
    align-items: end;
  }

  body:not(.apartments-page) .collection-wall-intro h2 {
    max-width: 820px;
    font-size: clamp(52px, 3.8vw, 62px);
    line-height: 1.03;
    text-wrap: balance;
  }

  body:not(.apartments-page) .collection-wall-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: auto;
    margin-top: 64px;
    gap: clamp(20px, 1.8vw, 28px);
  }

  body:not(.apartments-page) .collection-panel,
  body:not(.apartments-page) .collection-panel-large,
  body:not(.apartments-page) .collection-panel-tall {
    min-height: clamp(390px, 31vw, 470px);
    grid-column: auto;
    grid-row: auto;
  }

  body:not(.apartments-page) .collection-panel-copy {
    padding: clamp(24px, 2.4vw, 34px);
  }

  body:not(.apartments-page) .collection-panel-title {
    font-size: clamp(34px, 2.7vw, 46px);
  }

  body:not(.apartments-page) .city-guide-intro h2 {
    line-height: 1.04;
    padding-bottom: 0.08em;
    overflow: visible;
  }

  body:not(.apartments-page) .guide-handoff h2 {
    max-width: none;
    font-size: clamp(46px, 4.1vw, 64px);
    line-height: 1.02;
    white-space: nowrap;
  }

  .motion-enabled body:not(.apartments-page) .motion-reveal {
    opacity: 0;
    filter: blur(2px);
    transform: translate3d(0, 24px, 0);
    transition:
      opacity 1100ms var(--ease-luxury),
      filter 1200ms var(--ease-luxury),
      transform 1320ms var(--ease-luxury);
  }

  .motion-enabled body:not(.apartments-page) .motion-heading {
    filter: blur(2.5px);
    transform: translate3d(0, 34px, 0);
    transition:
      opacity 1180ms var(--ease-luxury),
      filter 1280ms var(--ease-luxury),
      transform 1420ms var(--ease-luxury);
  }

  .motion-enabled body:not(.apartments-page) .motion-reveal.is-visible,
  .motion-enabled body:not(.apartments-page) .motion-heading.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }

  .motion-enabled body:not(.apartments-page) .motion-image:not(.is-visible) img {
    filter: none;
    transform: scale(1.12);
  }
}

.motion-enabled body.is-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
}

.motion-enabled .hero-media img {
  --hero-scale: 1.12;
  transition: transform 2600ms var(--ease-luxury);
}

.motion-enabled body.is-loaded .hero-media img {
  --hero-scale: 1.045;
}

.motion-enabled .hero-copy .eyebrow,
.motion-enabled .hero-copy h1,
.motion-enabled .hero-copy p:not(.eyebrow),
.motion-enabled .hero-actions,
.motion-enabled .hero-facts {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 1000ms var(--ease-luxury),
    filter 1100ms var(--ease-luxury),
    transform 1100ms var(--ease-luxury);
}

.motion-enabled body.is-loaded .hero-copy .eyebrow,
.motion-enabled body.is-loaded .hero-copy h1,
.motion-enabled body.is-loaded .hero-copy p:not(.eyebrow),
.motion-enabled body.is-loaded .hero-actions,
.motion-enabled body.is-loaded .hero-facts {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.motion-enabled body.is-loaded .hero-copy .eyebrow {
  transition-delay: 220ms;
}

.motion-enabled body.is-loaded .hero-copy h1 {
  transition-delay: 360ms;
}

.motion-enabled body.is-loaded .hero-copy p:not(.eyebrow) {
  transition-delay: 520ms;
}

.motion-enabled body.is-loaded .hero-actions {
  transition-delay: 680ms;
}

.motion-enabled body.is-loaded .hero-facts {
  transition-delay: 820ms;
}

.motion-enabled .motion-reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 1400ms var(--ease-luxury),
    filter 1500ms var(--ease-luxury),
    transform 1550ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.motion-enabled .motion-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.motion-enabled .motion-heading {
  clip-path: inset(0 0 0 0);
  filter: blur(4px);
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 1500ms var(--ease-luxury),
    filter 1650ms var(--ease-luxury),
    transform 1700ms var(--ease-luxury);
}

.motion-enabled .motion-heading.is-visible {
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.motion-enabled .motion-image {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: none;
  transform: none;
  transition: none;
  will-change: auto;
}

.motion-enabled .motion-image img {
  transition:
    filter 1500ms var(--ease-luxury),
    transform 1600ms var(--ease-luxury);
}

.motion-enabled .motion-image:not(.is-visible) img {
  filter: blur(1.5px) saturate(0.94) contrast(0.99);
  transform: translate3d(0, calc(var(--motion-y, 0px) + 22px), 0) scale(1.2);
}

.motion-enabled .motion-image.is-visible {
  clip-path: inset(0 0 0 0);
  filter: none;
  transform: none;
}

.motion-enabled .guest-card.motion-reveal.is-visible:hover {
  transform: translateY(-4px);
}

.motion-enabled .availability-backdrop {
  animation: fadeIn 240ms ease both;
}

.motion-enabled .availability-panel {
  animation: panelEnter 520ms var(--ease-luxury) both;
}

.motion-enabled .image-viewer-backdrop {
  animation: fadeIn 220ms ease both;
}

.motion-enabled .image-viewer-panel {
  animation: imageViewerEnter 520ms var(--ease-luxury) both;
}

@keyframes scrollCue {
  0% {
    transform: translate3d(0, 0, 0);
  }
  72%,
  100% {
    transform: translate3d(0, 240%, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panelEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes imageViewerEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Suite detail page */

.apartment-detail-page {
  background: var(--ivory);
}

.hero.suite-detail-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 18, 30, 0.84), rgba(10, 18, 30, 0.32) 52%, rgba(10, 18, 30, 0.06) 82%),
    linear-gradient(0deg, rgba(10, 18, 30, 0.66), rgba(10, 18, 30, 0.05) 52%);
}

.suite-detail-hero-media img {
  object-position: center center;
}

.suite-detail-hero-copy {
  max-width: 880px;
}

.suite-detail-hero-copy .eyebrow {
  color: #d2b16f;
}

.suite-detail-hero-copy .hero-title-location {
  margin-top: 0.08em;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.56em;
  line-height: 0.98;
}

.suite-detail-hero-facts div {
  align-items: center;
}

.suite-detail-hero-facts {
  position: relative;
  isolation: isolate;
  max-width: 880px;
  margin-left: -14px;
  padding-right: 14px;
  padding-left: 14px;
}

.suite-detail-hero-facts::before {
  content: "";
  position: absolute;
  inset: -6px -24px;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(7, 14, 24, 0.64) 0%,
    rgba(7, 14, 24, 0.5) 70%,
    rgba(7, 14, 24, 0.18) 92%,
    rgba(7, 14, 24, 0) 100%
  );
  filter: blur(7px);
  pointer-events: none;
}

.suite-detail-hero-facts dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8b96f;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.26);
  white-space: nowrap;
}

.suite-detail-hero-facts dd {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.suite-detail-hero-facts div + div {
  border-left-color: rgba(255, 255, 255, 0.44);
}

.suite-detail-hero-facts .hero-fact-icon {
  width: 22px;
  height: 22px;
}

.suite-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(64px, 10vw, 160px);
  width: min(1390px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(96px, 12vw, 174px) 0;
  align-items: start;
}

.suite-detail-intro-copy {
  max-width: 780px;
}

.suite-detail-intro-copy h2 {
  max-width: 20ch;
  margin: 12px 0 calc(34px - 0.16em);
  padding-bottom: 0.16em;
  font-size: clamp(58px, 5.4vw, 82px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

@media (min-width: 981px) {
  .suite-detail-intro-copy h2 span {
    display: block;
  }
}

.suite-detail-intro-copy > p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.suite-address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(54px, 8vw, 98px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.suite-address-row span,
.suite-address-row a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.suite-address-row span {
  color: var(--gold);
}

.suite-address-row a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
}

.suite-booking-host {
  min-width: 0;
}

.suite-booking-card {
  position: sticky;
  top: 112px;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid rgba(20, 35, 59, 0.48);
  background: rgba(251, 248, 241, 0.98);
  box-shadow: 0 32px 90px rgba(20, 35, 59, 0.1);
}

.suite-booking-card .eyebrow {
  margin-bottom: 8px;
}

.suite-booking-card h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 0.98;
}

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

.suite-widget-field {
  display: grid;
  gap: 8px;
  min-height: 84px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.suite-widget-field-wide {
  grid-column: 1 / -1;
}

.suite-widget-guests {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.suite-widget-field span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suite-widget-field strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.suite-widget-field .suite-widget-guest-step,
.suite-widget-field .suite-widget-guest-summary {
  color: var(--navy);
  letter-spacing: 0;
  text-transform: none;
}

.suite-widget-field .suite-widget-guest-step {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  font-size: 25px;
  font-weight: 400;
}

.suite-widget-field .suite-widget-guest-summary {
  justify-self: center;
  font-size: 15px;
  font-weight: 500;
}

.suite-widget-guest-summary strong {
  margin-right: 10px;
}

.suite-widget-guests-label,
.suite-widget-search-icon {
  display: none;
}

.suite-widget-placeholder button {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suite-widget-placeholder button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.suite-widget-placeholder button:disabled {
  cursor: not-allowed;
  opacity: 0.92;
}

.suite-widget-live-region:empty,
.suite-widget-price-summary[hidden],
.suite-widget-unavailable[hidden] {
  display: none;
}

.suite-widget-price-summary,
.suite-widget-unavailable {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.suite-widget-price-summary dl {
  margin: 0;
}

.suite-widget-price-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}

.suite-widget-price-summary dt,
.suite-widget-price-summary dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.suite-widget-price-summary .suite-widget-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.suite-widget-price-summary .suite-widget-total dt,
.suite-widget-price-summary .suite-widget-total dd {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.suite-widget-price-summary > p,
.suite-widget-unavailable p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.suite-widget-price-summary > button {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: var(--cta-terracotta);
  color: var(--white);
  font-weight: 700;
}

.suite-widget-unavailable strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
}

.suite-widget-unavailable a {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (min-width: 1180px) {
  .suite-booking-card.is-suite-floating {
    position: fixed;
    top: 50%;
    right: clamp(48px, 5vw, 76px);
    z-index: 12;
    width: min(430px, 34vw);
    padding: 38px 38px 0;
    overflow: hidden;
    border: 1px solid rgba(20, 35, 59, 0.08);
    border-radius: 16px;
    background: rgba(253, 251, 247, 0.985);
    box-shadow:
      0 30px 76px rgba(7, 14, 24, 0.16),
      inset 0 0 0 1px rgba(179, 149, 91, 0.08);
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, -45%, 0);
    transition:
      opacity 260ms ease,
      transform 420ms var(--ease-luxury),
      top 420ms var(--ease-luxury),
      right 420ms var(--ease-luxury),
      width 420ms var(--ease-luxury),
      padding 420ms var(--ease-luxury),
      background-color 360ms ease,
      border-radius 360ms ease,
      box-shadow 360ms ease,
      visibility 0s 0s;
    will-change: opacity, transform;
  }

  .suite-booking-card.is-suite-floating > .eyebrow,
  .suite-booking-card.is-suite-floating > h2 {
    display: none;
  }

  .suite-booking-card.is-suite-floating .suite-widget-placeholder {
    row-gap: 28px;
    border: 0;
  }

  .suite-booking-card.is-suite-floating .suite-widget-field {
    min-height: 100px;
    padding: 22px 24px;
    border: 1px solid rgba(20, 35, 59, 0.16);
    background: rgba(255, 255, 255, 0.72);
  }

  .suite-booking-card.is-suite-floating .suite-widget-field:first-child {
    border-right: 0;
    border-radius: 16px 0 0 16px;
  }

  .suite-booking-card.is-suite-floating .suite-widget-field:nth-child(2) {
    border-radius: 0 16px 16px 0;
  }

  .suite-booking-card.is-suite-floating .suite-widget-field-wide {
    border-radius: 16px;
  }

  .suite-booking-card.is-suite-floating:not(.is-over-hero) .suite-widget-field > span:not([class]) {
    color: var(--navy-soft);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .suite-booking-card.is-suite-floating:not(.is-over-hero) .suite-widget-field > strong {
    display: none;
  }

  .suite-booking-card.is-suite-floating:not(.is-over-hero) .suite-widget-field:not(.suite-widget-guests) {
    align-content: center;
  }

  .suite-booking-card.is-suite-floating .suite-widget-guests {
    min-height: 104px;
  }

  .suite-booking-card.is-suite-floating .suite-widget-guest-step {
    width: 46px;
    height: 46px;
    font-size: 38px;
  }

  .suite-booking-card.is-suite-floating .suite-widget-guest-minus {
    color: #d3d3d3;
  }

  .suite-booking-card.is-suite-floating .suite-widget-guest-summary {
    color: var(--navy);
    font-size: 18px;
    font-weight: 500;
  }

  .suite-booking-card.is-suite-floating .suite-widget-guest-summary strong {
    color: var(--navy);
    font-size: 18px;
    font-weight: 500;
  }

  .suite-booking-card.is-suite-floating .suite-widget-placeholder button {
    width: calc(100% + 76px);
    min-height: 82px;
    margin: 0 -38px;
    border: 0;
    border-radius: 0 0 16px 16px;
    background: var(--cta-terracotta);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    opacity: 1;
  }

  .suite-booking-card.is-suite-floating:not(.is-over-hero) .suite-widget-placeholder button svg {
    stroke: #ead2a2;
  }

  .suite-booking-card.is-suite-floating.is-over-hero {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(1152px, calc(100vw - 112px));
    padding: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: rgba(251, 248, 241, 0.98);
    box-shadow: 0 30px 88px rgba(12, 20, 34, 0.28);
    transform: translate3d(-50%, 0, 0);
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-placeholder {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(190px, 0.82fr) minmax(180px, 0.76fr);
    gap: 0;
    filter: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-field {
    min-height: 60px;
    padding: 12px 16px;
    border-color: rgba(20, 35, 59, 0.16);
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-field:first-child {
    border-radius: 12px 0 0 12px;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-field:nth-child(2) {
    border-radius: 0 12px 12px 0;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-field-wide {
    grid-column: auto;
    margin-left: 12px;
    border-radius: 12px;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-guests {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    min-height: 60px;
    align-content: center;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-guest-step {
    display: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-guests-label {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-field:not(.suite-widget-guests) > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-field:not(.suite-widget-guests) > strong {
    display: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-guest-summary,
  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-guest-summary strong {
    justify-self: start;
    margin-right: 0;
    font-size: 14px;
    line-height: 1.2;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-placeholder button {
    grid-column: auto;
    width: auto;
    min-height: 60px;
    margin: 0 0 0 14px;
    border-radius: 0;
    background: var(--cta-terracotta);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-search-icon {
    display: block;
    order: -1;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .suite-widget-arrow-icon {
    display: none;
  }

  .suite-booking-card.is-suite-floating.is-section-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -45%, 0);
    transition:
      opacity 260ms ease,
      transform 420ms var(--ease-luxury),
      width 420ms var(--ease-luxury),
      padding 420ms var(--ease-luxury),
      background-color 360ms ease,
      border-radius 360ms ease,
      box-shadow 360ms ease,
      visibility 0s 260ms;
  }

  .suite-booking-card.is-suite-floating.is-over-hero.is-section-hidden {
    transform: translate3d(-50%, 0, 0);
  }

  .apartment-detail-page.has-suite-floating-booking .suite-amenities,
  .apartment-detail-page.has-suite-floating-booking .suite-sleeping,
  .apartment-detail-page.has-suite-floating-booking .suite-observations,
  .apartment-detail-page.has-suite-floating-booking .suite-local-notes,
  .apartment-detail-page.has-suite-floating-booking .suite-practical,
  .apartment-detail-page.has-suite-floating-booking .suite-related,
  .apartment-detail-page.has-suite-floating-booking .suite-detail-cta,
  .apartment-detail-page.has-suite-floating-booking .site-footer {
    padding-right: clamp(520px, 39vw, 610px);
  }

  .apartment-detail-page.has-suite-floating-booking .suite-observations,
  .apartment-detail-page.has-suite-floating-booking .suite-local-notes {
    display: block;
  }

  .apartment-detail-page.has-suite-floating-booking .suite-observations-header,
  .apartment-detail-page.has-suite-floating-booking .suite-local-notes-header {
    position: static;
    max-width: 720px;
  }

  .apartment-detail-page.has-suite-floating-booking .suite-observations-header h2,
  .apartment-detail-page.has-suite-floating-booking .suite-local-notes-header h2 {
    max-width: 12ch;
    font-size: clamp(48px, 4vw, 58px);
  }

  .apartment-detail-page.has-suite-floating-booking .suite-local-notes-header h2 {
    max-width: none;
    white-space: nowrap;
  }

  .apartment-detail-page.has-suite-floating-booking .suite-observations-header > p:not(.eyebrow),
  .apartment-detail-page.has-suite-floating-booking .suite-local-notes-header > p:not(.eyebrow) {
    max-width: 58ch;
  }

  .apartment-detail-page.has-suite-floating-booking .suite-observations-list,
  .apartment-detail-page.has-suite-floating-booking .suite-local-notes-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 56px;
  }

  .apartment-detail-page.has-suite-floating-booking .suite-observation {
    grid-template-columns: 1fr;
    gap: 22px;
    align-content: start;
    align-items: start;
  }

  .apartment-detail-page.has-suite-floating-booking .suite-observation img {
    aspect-ratio: 0.92 / 1;
  }

  .apartment-detail-page.has-suite-floating-booking .suite-observation h3,
  .apartment-detail-page.has-suite-floating-booking .suite-local-notes-list h3 {
    font-size: clamp(27px, 2.4vw, 34px);
  }

  .apartment-detail-page.has-suite-floating-booking .suite-local-notes-list article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.suite-carousel {
  --suite-carousel-meta-height: 48px;
  position: relative;
  overflow: hidden;
  padding: 6px 0 0;
  background: #f6f0e7;
}

.suite-carousel-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.suite-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.suite-carousel-track {
  display: flex;
  gap: 6px;
  width: max-content;
}

.suite-carousel-slide {
  position: relative;
  flex: 0 0 clamp(360px, 31vw, 580px);
  height: clamp(360px, 38vw, 580px);
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  scroll-snap-align: start;
}

.suite-carousel-slide-wide {
  flex-basis: clamp(560px, 44vw, 860px);
}

.suite-carousel-slide img {
  filter: saturate(0.9) contrast(1.015) brightness(0.995);
  transform: scale(1.01);
  transition: transform 1500ms var(--ease-luxury), filter 1200ms var(--ease-luxury);
}

.suite-carousel-slide:hover img {
  filter: saturate(0.94) contrast(1.01) brightness(1);
  transform: scale(1.028);
}

.suite-carousel-slide-terrace img {
  object-position: center 56%;
}

.suite-carousel-control {
  position: absolute;
  top: calc((100% - var(--suite-carousel-meta-height)) / 2);
  z-index: 3;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(12, 20, 34, 0.08);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 28px rgba(12, 20, 34, 0.11);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 420ms ease, transform 520ms var(--ease-luxury), background 320ms ease;
}

.suite-carousel-control:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.suite-carousel-control:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.suite-carousel-control:disabled {
  opacity: 0;
  pointer-events: none;
}

.suite-carousel-control svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.suite-carousel-control-previous {
  left: clamp(14px, 1.8vw, 30px);
}

.suite-carousel-control-next {
  right: clamp(14px, 1.8vw, 30px);
}

.suite-carousel-meta {
  display: flex;
  min-height: var(--suite-carousel-meta-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 2.4vw, 38px);
  color: rgba(12, 20, 34, 0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.suite-carousel-count {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.suite-carousel-view-all {
  position: absolute;
  right: clamp(18px, 2.4vw, 38px);
  bottom: 8px;
  z-index: 4;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(20, 35, 59, 0.2);
  background: rgba(255, 253, 248, 0.94);
  color: var(--navy);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background-color 260ms ease,
    color 260ms ease,
    transform 320ms var(--ease-luxury);
}

.suite-carousel-view-all:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.suite-carousel-view-all:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .suite-carousel-control:not(:disabled) {
    opacity: 0;
  }

  .suite-carousel:hover .suite-carousel-control:not(:disabled),
  .suite-carousel-control:focus-visible:not(:disabled) {
    opacity: 1;
  }
}

.suite-hero-folio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.suite-hero-folio::after {
  content: "";
  width: 64px;
  height: 1px;
  margin-left: 2px;
  background: linear-gradient(90deg, rgba(210, 177, 111, 0.9), rgba(210, 177, 111, 0));
}

.pdg-folio-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(210, 177, 111, 0.72);
  color: #d2b16f;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.pdg-section-folio {
  display: flex;
  width: min(100%, 310px);
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pdg-section-folio span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.pdg-section-folio i {
  position: relative;
  flex: 1 1 auto;
  height: 1px;
  overflow: hidden;
  background: rgba(179, 149, 91, 0.24);
}

.pdg-section-folio i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(var(--pdg-observation-progress, 0.333));
  transform-origin: left center;
  transition: transform 700ms var(--ease-luxury);
}

.pdg-section-folio b,
.pdg-section-folio em {
  font-style: normal;
  font-weight: 800;
}

.pdg-section-folio em {
  color: var(--muted);
}

.suite-observations {
  --pdg-observation-progress: 0.333;
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(54px, 8vw, 118px);
  padding: clamp(92px, 10vw, 150px) max(24px, calc((100vw - 1390px) / 2));
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  background: var(--ivory);
  align-items: start;
}

.suite-observations-header {
  position: sticky;
  top: 118px;
}

.suite-observations-header .eyebrow {
  margin-top: 34px;
}

.suite-observations-header h2 {
  max-width: 12ch;
  margin: 12px 0 26px;
  color: var(--navy);
  font-size: clamp(48px, 4vw, 58px);
  line-height: 0.91;
}

.suite-observations-header h2 span {
  display: block;
}

.suite-observations-header > p:not(.eyebrow) {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.suite-observations-list {
  display: grid;
  gap: clamp(64px, 8vw, 110px);
}

.suite-observation {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(190px, 0.82fr);
  gap: clamp(26px, 4vw, 54px);
  padding-top: 24px;
  border-top: 1px solid rgba(20, 35, 59, 0.14);
  align-items: end;
  transition: border-color 500ms ease;
}

.suite-observation.is-pdg-active {
  border-top-color: rgba(179, 149, 91, 0.78);
}

.suite-observation figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--warm);
}

.suite-observation img {
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  transition: transform 1200ms var(--ease-luxury);
}

.suite-observation:hover img {
  transform: scale(1.022);
}

.suite-observation figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(8, 16, 28, 0.72), rgba(8, 16, 28, 0));
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: 14px;
}

.suite-observation figcaption span {
  color: #d2b16f;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.suite-observation > div {
  padding-bottom: 8px;
}

.suite-observation h3 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 0.98;
}

.suite-observation > div > p:not(.eyebrow) {
  max-width: 33ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.suite-local-notes {
  display: grid;
  grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 8vw, 116px);
  padding: clamp(88px, 9vw, 132px) max(24px, calc((100vw - 1390px) / 2));
  background: var(--navy);
  color: var(--white);
  align-items: start;
}

.suite-local-notes .pdg-section-folio i {
  background: rgba(255, 255, 255, 0.18);
}

.suite-local-notes .pdg-section-folio i::after {
  transform: scaleX(1);
}

.suite-local-notes .pdg-section-folio em {
  color: rgba(255, 255, 255, 0.56);
}

.suite-local-notes-header .eyebrow {
  margin-top: 34px;
  color: #d2b16f;
}

.suite-local-notes-header h2 {
  max-width: none;
  margin: 12px 0 calc(26px - 0.14em);
  padding-bottom: 0.14em;
  color: var(--white);
  font-size: clamp(56px, 5.6vw, 80px);
  line-height: 0.9;
  white-space: nowrap;
}

.suite-local-notes-header > p:not(.eyebrow) {
  max-width: 35ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

.suite-local-notes-list {
  display: grid;
}

.suite-local-notes-list article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.suite-local-notes-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.suite-local-notes-list article > span {
  color: #d2b16f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suite-local-notes-list h3 {
  max-width: 18ch;
  margin: 10px 0 12px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1;
}

.suite-local-notes-list p {
  max-width: 55ch;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.65;
}

.suite-local-notes-list a {
  display: inline-flex;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(210, 177, 111, 0.72);
  color: #e2c785;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.suite-local-notes-list a:hover {
  color: var(--white);
}

.suite-local-notes-list a:focus-visible {
  outline: 2px solid #d2b16f;
  outline-offset: 5px;
}

.motion-reduced .pdg-section-folio i::after,
.motion-reduced .suite-observation {
  transition: none;
}

.suite-sleeping {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 8vw, 118px);
  padding: clamp(88px, 9vw, 132px) max(24px, calc((100vw - 1390px) / 2));
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  background: var(--ivory);
  align-items: start;
}

.suite-sleeping-header h2 {
  max-width: 10ch;
  margin: 12px 0 calc(26px - 0.16em);
  padding-bottom: 0.16em;
  color: var(--navy);
  font-size: clamp(52px, 5vw, 74px);
  line-height: 0.92;
}

.suite-sleeping-header > p:not(.eyebrow) {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.suite-sleeping-card {
  min-width: 0;
  border: 1px solid rgba(20, 35, 59, 0.14);
  background: var(--warm);
}

.suite-sleeping-card figure {
  height: clamp(280px, 31vw, 450px);
  margin: 0;
  overflow: hidden;
}

.suite-sleeping-card img {
  transition: transform 1100ms var(--ease-luxury);
}

.suite-sleeping-card:hover img {
  transform: scale(1.025);
}

.suite-sleeping-card > div {
  padding: 22px 20px 24px;
}

.suite-sleeping-card span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suite-sleeping-card h3 {
  margin: 8px 0;
  color: var(--navy);
  font-size: clamp(29px, 2.4vw, 38px);
  line-height: 1;
}

.suite-sleeping-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .suite-sleeping {
    grid-template-columns: 1fr;
    gap: clamp(44px, 6vw, 64px);
  }

  .suite-sleeping-header {
    max-width: 620px;
  }

  .suite-sleeping-header > p:not(.eyebrow) {
    max-width: 48ch;
  }

  .suite-sleeping-card figure {
    height: clamp(300px, 42vw, 430px);
  }
}

.suite-amenities {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 10vw, 160px);
  padding: clamp(94px, 11vw, 160px) max(24px, calc((100vw - 1390px) / 2));
  background: var(--warm);
  align-items: center;
}

.suite-amenities-copy {
  container-type: inline-size;
}

.suite-amenities-copy h2 {
  max-width: none;
  margin: 12px 0 28px;
  padding-bottom: 0.12em;
  font-size: clamp(48px, 4.6vw, 68px);
  font-size: clamp(35px, 11.5cqi, 68px);
  line-height: 1.02;
}

.suite-amenities-copy h2 span {
  display: block;
  white-space: nowrap;
}

.suite-amenities-copy > p:not(.eyebrow) {
  max-width: 47ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.suite-amenities-copy .button {
  margin-top: 26px;
}

.suite-amenity-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(34px, 5vw, 76px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite-amenity-preview li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid rgba(20, 35, 59, 0.14);
  color: var(--ink);
  font-size: 14px;
}

.suite-amenity-preview svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.suite-practical {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 78px);
  padding: clamp(58px, 6vw, 82px) max(24px, calc((100vw - 1390px) / 2));
  background: var(--navy);
  color: var(--white);
  align-items: center;
}

.suite-practical-header {
  container-type: inline-size;
}

.suite-practical-header h2 {
  max-width: none;
  margin: 10px 0 18px;
  padding-bottom: 0.1em;
  color: var(--white);
  font-size: clamp(44px, 4.2vw, 60px);
  font-size: clamp(40px, 19.5cqi, 60px);
  line-height: 1.02;
}

.suite-practical-header h2 span {
  display: block;
  white-space: nowrap;
}

.suite-practical-header > p:not(.eyebrow) {
  max-width: 29ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.suite-practical-list {
  margin: 0;
}

.suite-practical-list div {
  display: grid;
  grid-template-columns: minmax(128px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.suite-practical-list div:first-child {
  padding-top: 0;
}

.suite-practical-list dt,
.suite-practical-list dd {
  margin: 0;
}

.suite-practical-list dt {
  color: #d2b675;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suite-practical-list dd {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
}

.suite-practical-open {
  display: inline-flex;
  min-height: 44px;
  gap: 30px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid rgba(210, 182, 117, 0.72);
  background: transparent;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.suite-practical-open:hover {
  border-color: #d2b675;
  background: #d2b675;
  color: var(--navy);
}

.suite-practical-open:focus-visible {
  outline: 2px solid #d2b675;
  outline-offset: 4px;
}

.suite-practical-open svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.suite-reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 112px) max(24px, calc((100vw - 1390px) / 2));
  padding-bottom: clamp(64px, 6vw, 84px);
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  background: var(--ivory);
}

.suite-reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.suite-reviews-header h2 {
  max-width: none;
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(58px, 5.8vw, 84px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.suite-reviews-score {
  display: grid;
  justify-items: end;
  gap: 8px;
  padding-bottom: 8px;
  text-align: right;
}

.suite-reviews-score strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(52px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 0.82;
}

.suite-reviews-score span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suite-reviews-carousel {
  min-width: 0;
}

.suite-reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 64px) / 3);
  align-items: stretch;
  gap: 32px;
  margin-top: clamp(48px, 5vw, 68px);
  padding: 4px 2px 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.suite-reviews-track::-webkit-scrollbar {
  display: none;
}

.suite-reviews-track:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

.suite-reviews-track.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.suite-review-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 35, 59, 0.2);
  scroll-snap-align: start;
}

.suite-review-card::before {
  content: "\2605\2605\2605\2605\2605";
  content: "\2605\2605\2605\2605\2605" / "";
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.28em;
}

.suite-review-card blockquote {
  margin: 0;
}

.suite-review-card blockquote p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(21px, 1.65vw, 25px);
  line-height: 1.32;
}

.suite-review-card figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 28px;
}

.suite-review-card figcaption span,
.suite-review-card figcaption time {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.suite-review-card figcaption span {
  color: var(--ink);
}

.suite-review-card figcaption time {
  color: var(--muted);
  font-weight: 600;
}

.suite-reviews-source {
  margin: 0;
}

.suite-reviews-source a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.suite-reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
}

.suite-reviews-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.suite-reviews-count {
  min-width: 68px;
  margin-right: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.suite-reviews-count b {
  color: var(--gold);
  font-weight: 800;
}

.suite-reviews-mobile-rail,
.suite-reviews-mobile-action {
  display: none;
}

.suite-reviews-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(20, 35, 59, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    color 260ms ease,
    opacity 260ms ease,
    transform 320ms var(--ease-luxury);
}

.suite-reviews-controls button:hover:not(:disabled) {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

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

.suite-reviews-controls button:disabled {
  cursor: default;
  opacity: 0.28;
}

.suite-reviews-controls svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

@media (min-width: 1180px) {
  .apartment-detail-page.has-suite-floating-booking .suite-reviews {
    padding-right: clamp(520px, 39vw, 610px);
  }

  .apartment-detail-page.has-suite-floating-booking .suite-reviews-track {
    grid-auto-columns: calc((100% - 32px) / 2);
  }

  .apartment-detail-page.has-suite-floating-booking .suite-related {
    min-width: 0;
  }

  .apartment-detail-page.has-suite-floating-booking .suite-related-header h2 {
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .suite-reviews-track {
    grid-auto-columns: calc((100% - 32px) / 2);
  }
}

@media (max-width: 720px) {
  .suite-reviews {
    padding: 56px 20px;
  }

  .suite-reviews-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .suite-reviews-header h2 {
    font-size: clamp(48px, 15vw, 64px);
    white-space: normal;
  }

  .suite-reviews-score {
    justify-items: start;
    text-align: left;
  }

  .suite-reviews-carousel {
    display: flex;
    flex-direction: column;
  }

  .suite-reviews-track {
    order: 2;
    grid-auto-columns: 100%;
    gap: 18px;
    margin-top: 0;
    padding: 4px 0 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  .suite-review-card {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .suite-review-card blockquote p {
    font-size: 23px;
  }

  .suite-reviews-footer {
    order: 1;
    display: grid;
    align-items: start;
    gap: 22px;
    margin: 28px 0 24px;
  }

  .suite-reviews-source {
    padding-top: 0;
  }

  .suite-reviews-controls {
    display: flex;
    width: 100%;
    gap: 14px;
    color: var(--muted);
  }

  .suite-reviews-count {
    min-width: auto;
    margin: 0;
    white-space: nowrap;
  }

  .suite-reviews-mobile-rail {
    position: relative;
    display: block;
    flex: 1;
    height: 1px;
    overflow: hidden;
    background: rgba(20, 35, 59, 0.16);
  }

  .suite-reviews-mobile-rail span {
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(var(--suite-reviews-progress, 0.1));
    transform-origin: left center;
    transition: transform 360ms var(--ease-luxury);
  }

  .suite-reviews-mobile-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
  }

  .suite-reviews-mobile-action > span {
    color: var(--gold);
    font-size: 14px;
    line-height: 0;
  }

  .suite-reviews-controls button {
    display: none;
  }

  .motion-enabled .suite-reviews .motion-reveal,
  .motion-enabled .suite-reviews .motion-heading {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
    transition: none;
  }
}

.suite-location {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 118px);
  min-height: 720px;
  padding: clamp(90px, 10vw, 148px) max(24px, calc((100vw - 1390px) / 2));
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  background: var(--warm);
  color: var(--ink);
  align-items: center;
}

.suite-location .eyebrow {
  color: var(--gold);
}

.suite-location h2 {
  max-width: 9ch;
  margin: 12px 0 calc(30px - 0.14em);
  padding-bottom: 0.14em;
  color: var(--navy);
  font-size: clamp(62px, 6.6vw, 92px);
  line-height: 0.88;
}

.suite-location-address {
  margin: 0 0 42px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
}

.suite-location dl {
  max-width: 480px;
  margin: 0;
}

.suite-location dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(20, 35, 59, 0.22);
}

.suite-location dt,
.suite-location dd {
  margin: 0;
  font-size: 13px;
}

.suite-location dt {
  color: var(--ink);
}

.suite-location dd {
  color: var(--muted);
}

.suite-map {
  position: relative;
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(210, 177, 111, 0.72);
  background: var(--ivory);
  box-shadow: 0 30px 76px rgba(20, 35, 59, 0.14);
}

.suite-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(20, 35, 59, 0.06);
  pointer-events: none;
}

.suite-map .map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.32) sepia(0.05) saturate(0.68) contrast(1.04) brightness(0.98);
}

.suite-map .map-caption {
  margin: 0;
  padding: 15px 18px;
  border-top: 1px solid rgba(179, 149, 91, 0.3);
  background: #f3eee4;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.suite-detail-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(650px, 72vh, 820px);
  align-items: center;
  overflow: hidden;
  padding: clamp(96px, 10vw, 156px) clamp(28px, 6vw, 92px);
  background: var(--navy);
  color: var(--white);
  text-align: left;
}

.suite-detail-cta::before,
.suite-detail-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.suite-detail-cta::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 18, 32, 0.92) 0%, rgba(9, 18, 32, 0.76) 38%, rgba(9, 18, 32, 0.18) 72%),
    linear-gradient(0deg, rgba(9, 18, 32, 0.54), transparent 48%);
}

.suite-detail-cta::after {
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.suite-detail-cta-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.suite-detail-cta-media img {
  object-position: 58% center;
}

.suite-detail-cta-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 660px);
}

.suite-detail-cta .eyebrow {
  color: #d6ba7e;
}

.suite-detail-cta h2 {
  max-width: 12.5ch;
  margin: 16px 0 26px;
  padding-bottom: 0.06em;
  color: var(--white);
  font-size: clamp(62px, 5.6vw, 86px);
  line-height: 0.93;
  text-wrap: balance;
}

.suite-detail-cta-intro {
  max-width: 43ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.45;
}

.suite-related {
  position: relative;
  display: block;
  overflow: hidden;
  padding: clamp(84px, 9vw, 132px) max(24px, calc((100vw - 1390px) / 2));
  border-top: 1px solid rgba(210, 182, 117, 0.42);
  background:
    radial-gradient(circle at 82% 16%, rgba(210, 182, 117, 0.08), transparent 32%),
    linear-gradient(145deg, #13253d 0%, #0f1f35 100%);
  color: var(--white);
}

.suite-related-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px clamp(38px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
  container-type: inline-size;
}

.suite-related-header .eyebrow {
  grid-column: 1 / -1;
  color: #d2b675;
}

.suite-related-header h2 {
  max-width: none;
  margin: 0;
  padding-bottom: 0.1em;
  color: var(--white);
  font-size: clamp(52px, 5.4vw, 76px);
  font-size: clamp(38px, 15cqi, 76px);
  line-height: 1;
  white-space: nowrap;
}

.suite-related-header > p:not(.eyebrow) {
  grid-column: 1;
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.suite-related-actions {
  display: grid;
  grid-column: 2;
  grid-row: 2 / span 2;
  justify-items: end;
  gap: 26px;
}

.suite-related-actions .text-link {
  color: #d2b675;
}

.suite-related-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.suite-related-viewport::-webkit-scrollbar {
  display: none;
}

.suite-related-viewport:focus-visible {
  outline: 1px solid #d2b675;
  outline-offset: 7px;
}

.suite-related-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 27vw, 370px);
  gap: 16px;
  width: max-content;
}

.suite-related-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  scroll-snap-align: start;
}

.suite-related-card.is-current {
  border-color: rgba(210, 182, 117, 0.78);
}

.suite-related-card figure {
  height: clamp(250px, 28vw, 380px);
  margin: 0;
  overflow: hidden;
}

.suite-related-card img {
  filter: saturate(0.88) contrast(1.02);
  transition: transform 900ms var(--ease-luxury);
}

.suite-related-card:hover img {
  transform: scale(1.035);
}

.suite-related-card > div {
  min-height: 142px;
  padding: 22px 20px 24px;
}

.suite-related-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.suite-related-card span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suite-related-stay-type {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(210, 182, 117, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.suite-related-card h3 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: 35px;
}

.suite-related-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.suite-related-card--prestige {
  position: relative;
  border-color: rgba(210, 182, 117, 0.9);
  background:
    linear-gradient(145deg, rgba(210, 182, 117, 0.16), rgba(255, 255, 255, 0.04)),
    #172a44;
  box-shadow: inset 0 0 0 1px rgba(210, 182, 117, 0.18);
}

.suite-related-card--prestige::before {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(210, 182, 117, 0.9);
  color: #f0d893;
  content: "15";
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1;
}

.suite-related-card--prestige figure {
  position: relative;
}

.suite-related-card--prestige figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 31, 53, 0.04), rgba(15, 31, 53, 0.52));
  content: "";
  pointer-events: none;
}

.suite-related-card--prestige img {
  filter: saturate(0.56) contrast(1.08) sepia(0.12);
}

.suite-related-card--prestige h3 {
  color: #f5e6b8;
}

.suite-related-card--prestige .suite-related-stay-type--request {
  border-color: #d2b675;
  background: #d2b675;
  color: #102039;
}

.suite-related-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.suite-related-count {
  min-width: 68px;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.suite-related-count b {
  color: #d2b675;
}

.suite-related-mobile-rail,
.suite-related-mobile-action {
  display: none;
}

.suite-related-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    opacity 260ms ease,
    transform 320ms var(--ease-luxury);
}

.suite-related-controls button:hover:not(:disabled) {
  border-color: #d2b675;
  background: rgba(210, 182, 117, 0.12);
  transform: translateY(-2px);
}

.suite-related-controls button:disabled {
  cursor: default;
  opacity: 0.24;
}

.suite-related-controls button:focus-visible {
  outline: 2px solid #d2b675;
  outline-offset: 3px;
}

.suite-related-controls svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.suite-mobile-booking {
  display: none;
}

.detail-modal[hidden] {
  display: none;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 58px);
}

.detail-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(10, 18, 30, 0.76);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.detail-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(880px, 90svh);
  overflow: auto;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(20, 35, 59, 0.2);
  background: var(--ivory);
  box-shadow: 0 42px 120px rgba(6, 12, 22, 0.42);
}

.detail-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.detail-modal-header h2 {
  margin: 6px 0 0;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 0.94;
}

.detail-modal-header > div > p:last-child:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.detail-modal-close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 35, 59, 0.34);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.detail-modal-close span {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.detail-modal-close span:first-child {
  transform: rotate(45deg);
}

.detail-modal-close span:last-child {
  transform: rotate(-45deg);
}

.amenities-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(42px, 7vw, 92px);
}

.amenities-modal-grid section {
  padding: 0 0 30px;
}

.amenities-modal-grid h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.amenities-modal-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities-modal-grid li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  min-height: 54px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  align-items: center;
}

.amenity-icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.amenity-modal-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.amenities-modal-note {
  margin: 6px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.practical-modal-panel {
  width: min(920px, 100%);
}

.practical-modal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 6vw, 72px);
  margin: 0;
}

.practical-modal-list div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.practical-modal-list dt,
.practical-modal-list dd {
  margin: 0;
}

.practical-modal-list dt {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practical-modal-list dd {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.42;
}

.practical-modal-note {
  max-width: 72ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.detail-gallery-panel {
  width: min(1260px, 100%);
  background: var(--ivory);
  border-color: rgba(179, 149, 91, 0.34);
  color: var(--navy);
}

.detail-gallery-panel .eyebrow {
  color: var(--gold);
}

.detail-gallery-panel h2 {
  color: var(--navy);
}

.detail-gallery-panel .detail-modal-close {
  border-color: rgba(20, 35, 59, 0.34);
  color: var(--navy);
}

.detail-gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px) clamp(18px, 3vw, 36px);
}

.detail-gallery-modal-grid figure {
  margin: 0;
}

.detail-gallery-modal-grid figure:nth-child(even) {
  margin-top: clamp(34px, 5vw, 78px);
}

.detail-gallery-modal-grid img {
  aspect-ratio: 1.35 / 1;
  object-position: center;
}

.detail-gallery-modal-grid figcaption {
  margin-top: 12px;
  color: rgba(20, 35, 59, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-gallery-modal {
  padding: clamp(12px, 2vw, 28px);
}

.detail-gallery-panel {
  display: flex;
  width: min(1500px, 100%);
  height: calc(100svh - clamp(24px, 4vw, 56px));
  max-height: calc(100svh - clamp(24px, 4vw, 56px));
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  flex-direction: column;
}

.detail-gallery-panel .detail-modal-header {
  flex: 0 0 auto;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.detail-gallery-panel .detail-modal-header h2 {
  max-width: 12ch;
  font-size: clamp(44px, 4vw, 68px);
}

.detail-gallery-panel .detail-modal-header > div > p:last-child {
  color: rgba(20, 35, 59, 0.64);
}

.detail-gallery-viewport {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.detail-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.detail-gallery-viewport:focus-visible {
  outline: 1px solid #d2b675;
  outline-offset: 6px;
}

.detail-gallery-track {
  display: grid;
  grid-auto-flow: column;
  /* Keep each 2200 × 1306 photograph at its full composition while allowing
     the card width to respond to the vertical room left inside the modal. */
  grid-auto-columns: clamp(320px, calc(168.453svh - 808.58px), min(920px, 78vw));
  gap: clamp(16px, 2.4vw, 34px);
  height: 100%;
  width: max-content;
  counter-reset: pdg-gallery;
}

.detail-gallery-track figure {
  display: flex;
  height: 100%;
  min-height: 0;
  min-width: 0;
  margin: 0;
  counter-increment: pdg-gallery;
  flex-direction: column;
  scroll-snap-align: start;
}

.detail-gallery-track img {
  display: block;
  flex: 1 1 0;
  width: 100%;
  height: 0;
  min-height: 0;
  object-fit: contain;
  background: #f7f1e7;
}

.apartment-detail-page .detail-gallery-track figure[data-image-open] {
  position: relative;
  cursor: zoom-in;
}

.apartment-detail-page .detail-gallery-track figure[data-image-open]::after {
  content: "View larger";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 11px;
  background: rgba(20, 35, 59, 0.88);
  color: var(--white);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.apartment-detail-page .detail-gallery-track figure[data-image-open]:hover::after,
.apartment-detail-page .detail-gallery-track figure[data-image-open]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.apartment-detail-page .detail-gallery-track figure[data-image-open]:focus-visible {
  outline: 2px solid #d2b675;
  outline-offset: -2px;
}

.image-viewer.is-suite-gallery-image {
  z-index: 120;
  padding: clamp(12px, 2vw, 28px);
}

.image-viewer.is-suite-gallery-image .image-viewer-panel {
  width: min(100%, 1420px);
  max-height: 94svh;
}

.image-viewer.is-suite-gallery-image .image-viewer-media img {
  max-height: calc(94svh - 112px);
}

.detail-gallery-track figcaption {
  display: flex;
  position: relative;
  flex: 0 0 auto;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-left: 78px;
  color: rgba(20, 35, 59, 0.78);
  font-family: var(--serif);
  font-size: 16px;
}

.detail-gallery-track figcaption::before {
  content: "15 / " counter(pdg-gallery, decimal-leading-zero);
  position: absolute;
  top: 0.24em;
  left: 0;
  color: #d2b675;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.detail-gallery-track figcaption span {
  color: #d2b675;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-gallery-footer {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

.detail-gallery-status {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.detail-gallery-status span {
  color: rgba(20, 35, 59, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.detail-gallery-status b {
  color: #d2b675;
}

.detail-gallery-status strong {
  color: rgba(20, 35, 59, 0.86);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.detail-gallery-controls {
  display: flex;
  gap: 10px;
}

.detail-gallery-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  cursor: pointer;
}

.detail-gallery-controls button:disabled {
  cursor: default;
  opacity: 0.25;
}

.detail-gallery-controls button:focus-visible {
  outline: 2px solid #d2b675;
  outline-offset: 3px;
}

.detail-gallery-controls svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.motion-enabled .detail-modal-backdrop {
  animation: fadeIn 220ms ease both;
}

.motion-enabled .detail-modal-panel {
  animation: imageViewerEnter 480ms var(--ease-luxury) both;
}

@media (max-width: 980px) {
  .suite-detail-intro,
  .suite-amenities,
  .suite-sleeping,
  .suite-observations,
  .suite-local-notes,
  .suite-practical,
  .suite-related,
  .suite-location {
    grid-template-columns: 1fr;
  }

  .suite-detail-intro {
    gap: 72px;
  }

.suite-booking-card {
  scroll-margin-top: 96px;
  position: relative;
    top: auto;
    width: min(620px, 100%);
  }

  .suite-booking-host-content {
    width: min(620px, 100%);
  }

  .suite-amenities {
    gap: 58px;
  }

  .suite-amenities-copy h2 {
    max-width: none;
  }

  .suite-sleeping {
    gap: 58px;
  }

  .suite-observations,
  .suite-local-notes {
    gap: 54px;
  }

  .suite-observations-header {
    position: static;
  }

  .suite-practical,
  .suite-related {
    gap: 40px;
  }

  .suite-location {
    gap: 72px;
  }

  .suite-map {
    min-height: 430px;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .hero.suite-detail-hero {
    min-height: 100svh;
    padding: 150px clamp(44px, 7vw, 76px) 118px;
    align-items: end;
  }

  .suite-detail-hero-media img,
  .suite-detail-hero-media .hero-video--mobile {
    object-position: 60% center;
  }

  .hero.suite-detail-hero::before {
    background:
      linear-gradient(0deg, rgba(8, 16, 28, 0.86), rgba(8, 16, 28, 0.1) 72%),
      linear-gradient(90deg, rgba(8, 16, 28, 0.38), rgba(8, 16, 28, 0.04) 76%);
  }

  .suite-detail-hero-copy {
    width: min(100%, 760px);
    max-width: 760px;
    margin: 0;
    text-align: left;
    transform: none;
  }

  .suite-detail-hero-copy h1 {
    max-width: none;
    margin: 0 0 28px;
    font-size: clamp(66px, 8.4vw, 86px);
    line-height: 0.9;
  }

  .suite-detail-hero-copy .hero-title-location {
    margin-top: 12px;
    font-size: 0.48em;
  }

  .suite-detail-hero-facts {
    display: grid;
    width: min(100%, 760px);
    max-width: none;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(210, 182, 117, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
    backdrop-filter: none;
  }

  .suite-detail-hero-facts::before {
    content: none;
  }

  .suite-detail-hero-facts div {
    display: grid;
    gap: 7px;
    padding: 15px 18px;
    align-content: center;
    align-items: start;
  }

  .suite-detail-hero-facts div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .suite-detail-hero-facts dt {
    gap: 7px;
    font-size: 21px;
  }

  .suite-detail-hero-facts dd {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .suite-detail-hero-facts .hero-fact-icon {
    display: none;
  }
}

@media (max-width: 720px) {
  .apartment-detail-page {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .hero.suite-detail-hero {
    min-height: max(720px, 100svh);
    padding: 128px 28px 108px;
    align-items: end;
  }

  .hero.suite-detail-hero::before {
    background:
      linear-gradient(
        0deg,
        rgba(8, 16, 28, 0.88) 0%,
        rgba(8, 16, 28, 0.42) 38%,
        rgba(8, 16, 28, 0.07) 72%
      ),
      linear-gradient(90deg, rgba(8, 16, 28, 0.28), rgba(8, 16, 28, 0.02) 84%);
  }

  .suite-detail-hero-media img,
  .suite-detail-hero-media .hero-video--mobile {
    object-position: 62% center;
  }

  .suite-detail-hero-copy {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
    transform: none;
  }

  .suite-detail-hero-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .suite-detail-hero-copy h1 {
    max-width: none;
    margin: 0 0 26px;
    font-size: clamp(46px, 13.2vw, 56px);
    line-height: 0.9;
    text-shadow: 0 7px 30px rgba(6, 12, 22, 0.48);
  }

  .suite-detail-hero-copy .hero-title-main {
    line-height: 0.88;
  }

  .suite-detail-hero-copy .hero-title-location {
    margin-top: 10px;
    font-size: 0.5em;
    line-height: 1;
  }

  .suite-detail-hero-facts {
    display: grid;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    grid-template-areas:
      "bed bath guests"
      "area area area";
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(210, 182, 117, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    backdrop-filter: none;
  }

  .suite-detail-hero-facts::before {
    content: none;
  }

  .suite-detail-hero-facts div {
    display: grid;
    gap: 7px;
    min-height: 0;
    padding: 13px 8px 12px;
    align-content: center;
    align-items: start;
  }

  .suite-detail-hero-facts div:nth-child(1) {
    grid-area: bed;
    padding-left: 0;
  }

  .suite-detail-hero-facts div:nth-child(2) {
    grid-area: bath;
  }

  .suite-detail-hero-facts div:nth-child(3) {
    grid-area: area;
  }

  .suite-detail-hero-facts div:nth-child(4) {
    grid-area: guests;
    padding-right: 0;
  }

  .suite-detail-hero-facts div + div {
    border-left: 0;
  }

  .suite-detail-hero-facts div:nth-child(2),
  .suite-detail-hero-facts div:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .suite-detail-hero-facts div:nth-child(3) {
    display: flex;
    gap: 9px;
    padding: 11px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    align-items: baseline;
  }

  .suite-detail-hero-facts dt {
    gap: 0;
    font-size: 19px;
    line-height: 1;
  }

  .suite-detail-hero-facts div:nth-child(3) dt {
    font-size: 17px;
    letter-spacing: 0;
  }

  .suite-detail-hero-facts dd {
    font-size: 8px;
    letter-spacing: 0.1em;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(6, 12, 22, 0.6);
  }

  .suite-detail-hero-facts .hero-fact-icon {
    display: none;
  }

  .suite-detail-intro {
    width: calc(100% - 40px);
    gap: 46px;
    padding: 56px 0;
  }

  .suite-detail-intro-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .suite-detail-intro-copy > p:not(.eyebrow):not(.suite-detail-lead) {
    display: none;
  }

  .suite-address-row {
    margin-top: 36px;
  }

  .suite-detail-intro-copy h2,
  .suite-amenities-copy h2,
  .suite-sleeping-header h2,
  .suite-observations-header h2,
  .suite-local-notes-header h2,
  .suite-location h2 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .suite-address-row {
    display: grid;
  }

  .suite-address-row a {
    justify-self: start;
  }

  .suite-booking-card {
    padding: 26px 20px;
  }

  .suite-carousel {
    --suite-carousel-meta-height: 46px;
    padding: 4px 0;
  }

  .suite-carousel-track {
    gap: 4px;
  }

  .suite-carousel-slide,
  .suite-carousel-slide-wide,
  .suite-carousel-slide-narrow {
    flex-basis: 86vw;
    height: min(58svh, 520px);
  }

  .suite-carousel-control {
    display: none;
  }

  .suite-carousel-meta {
    gap: 16px;
    padding: 0 150px 0 16px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .suite-carousel-count {
    font-size: 14px;
  }

  .suite-amenities,
  .suite-sleeping,
  .suite-observations,
  .suite-local-notes,
  .suite-related,
  .suite-location {
    padding: 56px 20px;
  }

  .suite-observations,
  .suite-local-notes {
    gap: 42px;
  }

  .suite-observations-header .eyebrow,
  .suite-local-notes-header .eyebrow {
    margin-top: 26px;
  }

  .suite-observations-header h2,
  .suite-local-notes-header h2 {
    max-width: 10ch;
    margin-bottom: 20px;
  }

  .suite-local-notes-header h2 {
    max-width: none;
    margin-bottom: calc(20px - 0.14em);
    font-size: clamp(40px, 13vw, 58px);
    white-space: nowrap;
  }

  .suite-observations-header > p:not(.eyebrow),
  .suite-local-notes-header > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .suite-observations-list {
    gap: 52px;
  }

  .suite-observation {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 18px;
  }

  .suite-observation img {
    aspect-ratio: 1.08 / 1;
  }

  .suite-observation h3 {
    max-width: 11ch;
    margin-bottom: 14px;
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .suite-observation > div > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.62;
  }

  .suite-local-notes-list h3 {
    max-width: 16ch;
    font-size: clamp(34px, 10vw, 44px);
  }

  .suite-local-notes-list article {
    padding: 22px 0 25px;
  }

  .suite-amenities-copy h2 {
    max-width: none;
    font-size: clamp(35px, 10.7vw, 46px);
  }

  .suite-practical {
    gap: 28px;
    padding: 44px 20px;
  }

  .suite-sleeping,
  .suite-amenities,
  .suite-related {
    gap: 40px;
  }

  .suite-sleeping-grid {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .suite-sleeping-grid::-webkit-scrollbar {
    display: none;
  }

  .suite-sleeping-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .suite-sleeping-card figure {
    height: min(76vw, 340px);
  }

  .suite-amenity-preview li {
    min-height: 68px;
  }

  .suite-related-header h2 {
    font-size: clamp(36px, 11.8vw, 52px);
  }

  .suite-practical-header h2 {
    max-width: none;
    margin: 8px 0 14px;
    font-size: clamp(40px, 12vw, 50px);
  }

  .suite-practical-header > p:not(.eyebrow) {
    font-size: 16px;
  }

  .suite-practical-list div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .suite-practical-list dd {
    font-size: 16px;
  }

  .suite-practical-open {
    width: 100%;
    margin-top: 18px;
  }

  .suite-related-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .suite-related-header .eyebrow,
  .suite-related-header > p:not(.eyebrow),
  .suite-related-actions {
    grid-column: 1;
  }

  .suite-related-actions {
    grid-row: auto;
    width: 100%;
    justify-items: start;
    gap: 22px;
  }

  .suite-related-controls {
    width: 100%;
    gap: 12px;
  }

  .suite-related-count {
    min-width: auto;
    margin: 0;
    white-space: nowrap;
  }

  .suite-related-mobile-rail {
    position: relative;
    display: block;
    flex: 1;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
  }

  .suite-related-mobile-rail span {
    position: absolute;
    inset: 0;
    background: #d2b675;
    transform: scaleX(var(--suite-related-progress, 0.125));
    transform-origin: left center;
    transition: transform 320ms var(--ease-luxury);
  }

  .suite-related-mobile-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .suite-related-mobile-action > span {
    color: #d2b675;
    font-size: 14px;
    line-height: 0;
  }

  .suite-related-controls button {
    display: none;
  }

  .suite-related-viewport {
    margin-right: -20px;
    padding-right: 20px;
    scroll-behavior: auto;
  }

  .suite-related-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82vw;
    gap: 12px;
  }

  .suite-related-card figure {
    height: min(62vw, 340px);
  }

  .suite-amenity-preview {
    grid-template-columns: 1fr;
  }

  .suite-location {
    min-height: 0;
    gap: 46px;
  }

  .suite-map {
    min-height: 310px;
    grid-template-rows: minmax(260px, 1fr) auto;
  }

  .suite-map .map-embed {
    min-height: 260px;
  }

  .suite-detail-cta {
    min-height: min(650px, 76svh);
    align-items: end;
    padding: 112px 24px 88px;
  }

  .suite-detail-cta::before {
    background:
      linear-gradient(0deg, rgba(9, 18, 32, 0.94) 0%, rgba(9, 18, 32, 0.76) 48%, rgba(9, 18, 32, 0.14) 88%),
      linear-gradient(90deg, rgba(9, 18, 32, 0.36), rgba(9, 18, 32, 0.08));
  }

  .suite-detail-cta::after {
    inset: 12px;
  }

  .suite-detail-cta-media img {
    object-position: 65% center;
  }

  .suite-detail-cta h2 {
    max-width: 9ch;
    margin-bottom: 22px;
    font-size: clamp(52px, 14vw, 66px);
    line-height: 0.92;
  }

  .suite-detail-cta-intro {
    max-width: 34ch;
    margin-bottom: 0;
    font-size: 18px;
  }

  .suite-mobile-booking {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(251, 248, 241, 0.96);
    border-top: 1px solid rgba(20, 35, 59, 0.14);
    backdrop-filter: blur(18px);
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 220ms ease,
      transform 360ms var(--ease-luxury),
      visibility 0s 0s;
  }

  .suite-mobile-booking.is-hidden-over-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 110%, 0);
    transition:
      opacity 220ms ease,
      transform 360ms var(--ease-luxury),
      visibility 0s 360ms;
  }

  .suite-mobile-booking a {
    display: grid;
    min-height: 52px;
    place-items: center;
    background: var(--cta-terracotta);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .detail-modal {
    align-items: end;
    padding: 12px;
  }

  .detail-modal-panel {
    max-height: 88svh;
    padding: 26px 20px calc(26px + env(safe-area-inset-bottom));
  }

  .detail-modal-header {
    margin-bottom: 30px;
  }

  .detail-modal-header h2 {
    font-size: 48px;
  }

  .amenities-modal-grid,
  .practical-modal-list,
  .detail-gallery-modal-grid {
    grid-template-columns: 1fr;
  }

  .practical-modal-list div {
    padding: 14px 0;
  }

  .practical-modal-list dd {
    font-size: 17px;
  }

  .detail-gallery-modal-grid figure:nth-child(even) {
    margin-top: 0;
  }

  .detail-gallery-modal-grid img {
    aspect-ratio: 1.15 / 1;
  }

  .detail-gallery-modal {
    padding: 0;
  }

  .detail-gallery-panel {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    padding: 22px 20px calc(20px + env(safe-area-inset-bottom));
    border: 0;
  }

  .detail-gallery-panel .detail-modal-header {
    margin-bottom: 24px;
  }

  .detail-gallery-panel .detail-modal-header h2 {
    max-width: 10ch;
    font-size: 44px;
  }

  .detail-gallery-panel .detail-modal-header > div > p:last-child {
    display: none;
  }

  .detail-gallery-track {
    grid-auto-columns: calc(100vw - 40px);
    gap: 12px;
  }

  .detail-gallery-track img {
    height: 0;
  }

  .detail-gallery-track figcaption {
    font-size: 14px;
  }

  .detail-gallery-footer {
    padding-top: 16px;
  }

  .detail-gallery-status strong,
  .detail-gallery-controls {
    display: none;
  }
}

/* Keep the gallery footer editorial and uncluttered on phones and tablets. */
@media (max-width: 980px) {
  .suite-carousel-meta {
    min-height: 44px;
    gap: 14px;
    padding: 0 18px;
  }

  .suite-carousel-label {
    min-width: 0;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .suite-carousel-view-all {
    position: static;
    display: flex;
    width: calc(100% - 36px);
    min-height: 44px;
    margin: 0 18px 14px;
    align-items: center;
    justify-content: center;
  }
}

/* Official registration sits directly beneath the apartment gallery so the
   compliance details are present without interrupting the editorial flow. */
.suite-registration {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 3.3fr);
  gap: clamp(28px, 5vw, 82px);
  padding: 22px clamp(24px, 4vw, 64px) 24px;
  border-top: 1px solid rgba(20, 35, 59, 0.1);
  border-bottom: 1px solid rgba(20, 35, 59, 0.14);
  background: #f6f0e7;
}

.suite-registration-title {
  margin: 7px 0 0;
  color: var(--terracotta);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.suite-registration-list {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(240px, 1.45fr);
  gap: clamp(34px, 6vw, 100px);
  margin: 0;
}

.suite-registration-list div {
  min-width: 0;
}

.suite-registration-list dt {
  margin: 0 0 7px;
  color: rgba(20, 35, 59, 0.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suite-registration-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .suite-registration {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 20px 26px;
  }

  .suite-registration-title {
    margin-top: 0;
  }

  .suite-registration-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

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

.suite-prestige-page {
  --prestige-bronze: #a9704f;
  --prestige-champagne: #d8bd84;
  --prestige-stone: #eee8df;
  --prestige-night: #102039;
}

.suite-prestige-page.has-prestige-gallery {
  overflow: hidden;
}

.suite-prestige-hero .hero-media img,
.suite-prestige-hero .hero-video {
  object-position: center 54%;
}

.suite-prestige-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 17, 30, 0.82), rgba(8, 17, 30, 0.28) 58%, rgba(8, 17, 30, 0.08)),
    linear-gradient(0deg, rgba(8, 17, 30, 0.7), rgba(8, 17, 30, 0.06) 54%);
}

.suite-prestige-hero .suite-detail-hero-copy {
  max-width: 980px;
}

.suite-prestige-hero .hero-title-main {
  white-space: nowrap;
}

.suite-prestige-hero .hero-title-location {
  max-width: 25ch;
}

.prestige-hero-status {
  width: fit-content;
  margin: 26px 0 0;
  padding: 10px 13px;
  border: 1px solid rgba(216, 189, 132, 0.62);
  background: rgba(10, 21, 37, 0.32);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.prestige-photo-preview {
  padding-top: 0;
}

.prestige-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 18px clamp(40px, 7vw, 100px);
  padding: clamp(78px, 9vw, 126px) max(24px, calc((100vw - 1390px) / 2)) clamp(42px, 6vw, 74px);
  background: #f6f0e7;
  align-items: end;
}

.prestige-gallery-heading .eyebrow {
  grid-column: 1 / -1;
}

.prestige-gallery-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 6.3vw, 92px);
  line-height: 0.88;
}

.prestige-gallery-heading > p:last-child {
  max-width: 38ch;
  margin: 0 0 0.35em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.prestige-photo-preview .suite-carousel-slide {
  cursor: zoom-in;
}

.prestige-photo-preview .suite-carousel-slide:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}

.prestige-photo-preview .suite-carousel-label {
  margin-right: 150px;
}

.prestige-host-band {
  display: grid;
  min-height: 174px;
  padding: 36px max(24px, calc((100vw - 1390px) / 2));
  place-items: center;
  border-top: 1px solid rgba(216, 189, 132, 0.38);
  border-bottom: 1px solid rgba(216, 189, 132, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 189, 132, 0.14), transparent 46%),
    var(--prestige-night);
  color: #fff;
}

.prestige-host-band p {
  display: grid;
  gap: 12px;
  margin: 0;
  text-align: center;
}

.prestige-host-band span {
  color: var(--prestige-champagne);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.prestige-host-band strong {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 0.95;
}

.prestige-intro {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
}

.prestige-intro .suite-detail-intro-copy h2 {
  max-width: 15ch;
}

.prestige-request-card {
  position: sticky;
  top: 110px;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(20, 35, 59, 0.42);
  background:
    linear-gradient(145deg, rgba(216, 189, 132, 0.14), transparent 44%),
    #f9f5ee;
  box-shadow: 0 28px 74px rgba(20, 35, 59, 0.1);
}

.prestige-request-card h2 {
  margin: 8px 0 22px;
  color: var(--navy);
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 0.96;
}

.prestige-request-card > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.prestige-request-button {
  display: grid;
  min-height: 56px;
  margin-top: 30px;
  padding: 12px 22px;
  place-items: center;
  background: var(--prestige-night);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 260ms ease, transform 320ms var(--ease-luxury);
}

.prestige-request-button:hover {
  background: var(--prestige-bronze);
  transform: translateY(-2px);
}

.prestige-request-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.prestige-request-card small {
  display: block;
  margin-top: 16px;
  color: rgba(20, 35, 59, 0.56);
  font-size: 10px;
  line-height: 1.55;
}

.prestige-observations {
  padding: clamp(92px, 11vw, 156px) max(24px, calc((100vw - 1390px) / 2));
  background: #ebe4d9;
  color: var(--navy);
}

.prestige-observations > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 18px clamp(40px, 8vw, 120px);
  align-items: end;
}

.prestige-observations > header .eyebrow {
  grid-column: 1 / -1;
}

.prestige-observations > header h2 {
  grid-column: 1;
  max-width: 14ch;
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.9;
}

.prestige-observations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
  margin-top: clamp(56px, 7vw, 94px);
}

.prestige-observations-grid article {
  min-width: 0;
  border-top: 1px solid rgba(20, 35, 59, 0.22);
}

.prestige-observations-grid figure {
  height: clamp(330px, 35vw, 520px);
  margin: 0;
  overflow: hidden;
}

.prestige-observations-grid article:nth-child(3) figure img {
  object-position: center 47%;
}

.prestige-observations-grid article > div {
  position: relative;
  padding: 26px 6px 4px 48px;
}

.prestige-observations-grid span {
  position: absolute;
  top: 29px;
  left: 0;
  color: var(--prestige-bronze);
  font-family: var(--serif);
  font-size: 20px;
}

.prestige-observations-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(29px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 0.98;
}

.prestige-observations-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.prestige-location {
  align-items: stretch;
}

.prestige-location-lead {
  max-width: 55ch;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.prestige-location-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--prestige-night);
}

.prestige-location-media img {
  object-position: center center;
}

.prestige-location-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 18, 32, 0.74), transparent 38%);
  content: "";
  pointer-events: none;
}

.prestige-location-media figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.prestige-location-media figcaption span {
  font-family: var(--serif);
  font-size: 34px;
}

.prestige-location-media figcaption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prestige-gallery-modal[hidden] {
  display: none;
}

.prestige-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  padding: 18px;
  place-items: center;
}

.prestige-gallery-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(5, 12, 22, 0.88);
  cursor: pointer;
  backdrop-filter: blur(9px);
}

.prestige-gallery-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1480px, 100%);
  height: min(920px, calc(100svh - 36px));
  overflow: hidden;
  background: #0c192b;
  color: #fff;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
}

.prestige-gallery-panel > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 46px;
  gap: 22px;
  min-height: 82px;
  padding: 16px 18px 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
}

.prestige-gallery-panel > header .eyebrow {
  margin: 0 0 2px;
  color: var(--prestige-champagne);
}

.prestige-gallery-panel > header h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.prestige-gallery-panel > header > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.prestige-gallery-close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.prestige-gallery-close span {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.prestige-gallery-close span + span {
  transform: rotate(-45deg);
}

.prestige-gallery-stage {
  position: relative;
  display: grid;
  min-height: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: #07101d;
}

.prestige-gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prestige-gallery-stage figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  width: fit-content;
  max-width: calc(100% - 48px);
  padding: 8px 10px;
  background: rgba(7, 16, 29, 0.74);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.prestige-gallery-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(7, 16, 29, 0.66);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.prestige-gallery-control--previous {
  left: 28px;
}

.prestige-gallery-control--next {
  right: 28px;
}

.prestige-gallery-control svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.prestige-gallery-close:focus-visible,
.prestige-gallery-control:focus-visible,
.prestige-gallery-thumb:focus-visible {
  outline: 2px solid var(--prestige-champagne);
  outline-offset: 3px;
}

.prestige-gallery-thumbs {
  display: flex;
  gap: 7px;
  min-height: 94px;
  padding: 10px 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--prestige-champagne) rgba(255, 255, 255, 0.08);
}

.prestige-gallery-thumb {
  flex: 0 0 96px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.58;
  transition: border-color 220ms ease, opacity 220ms ease;
}

.prestige-gallery-thumb.is-active {
  border-color: var(--prestige-champagne);
  opacity: 1;
}

.prestige-gallery-thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.motion-enabled .prestige-gallery-backdrop {
  animation: fadeIn 240ms ease both;
}

.motion-enabled .prestige-gallery-panel {
  animation: imageViewerEnter 480ms var(--ease-luxury) both;
}

@media (max-width: 980px) {
  .prestige-gallery-heading,
  .prestige-observations > header {
    grid-template-columns: 1fr;
  }

  .prestige-gallery-heading > p:last-child {
    max-width: 56ch;
  }

  .prestige-intro {
    grid-template-columns: 1fr;
  }

  .prestige-request-card {
    position: static;
    width: min(620px, 100%);
  }

  .prestige-observations-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .prestige-observations-grid article {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
    align-items: center;
  }

  .prestige-observations-grid figure {
    height: 420px;
  }

  .prestige-observations-grid article > div {
    padding: 30px 22px 30px 68px;
  }

  .prestige-observations-grid span {
    top: 34px;
    left: 22px;
  }

  .prestige-location-media {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .suite-prestige-hero .hero-media img,
  .suite-prestige-hero .hero-video--mobile {
    object-position: center center;
  }

  .suite-prestige-hero .hero-title-main {
    white-space: normal;
  }

  .prestige-hero-status {
    margin-top: 20px;
    font-size: 8px;
  }

  .prestige-gallery-heading {
    padding: 62px 20px 36px;
  }

  .prestige-gallery-heading h2 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .prestige-gallery-heading > p:last-child {
    font-size: 14px;
    line-height: 1.6;
  }

  .prestige-photo-preview .suite-carousel-label {
    margin-right: 0;
  }

  .prestige-host-band {
    min-height: 148px;
  }

  .prestige-intro .suite-detail-intro-copy h2 {
    max-width: none;
  }

  .prestige-request-card {
    padding: 30px 22px;
  }

  .prestige-request-card h2 {
    font-size: 42px;
  }

  .prestige-observations {
    padding: 64px 20px 70px;
  }

  .prestige-observations > header h2 {
    font-size: clamp(48px, 14vw, 62px);
  }

  .prestige-observations-grid {
    gap: 46px;
    margin-top: 48px;
  }

  .prestige-observations-grid article {
    display: block;
  }

  .prestige-observations-grid figure {
    height: min(112vw, 480px);
  }

  .prestige-observations-grid article > div {
    padding: 24px 4px 0 48px;
  }

  .prestige-observations-grid span {
    top: 27px;
    left: 0;
  }

  .prestige-location-media {
    min-height: 480px;
  }

  .prestige-location-media figcaption {
    display: grid;
  }

  .prestige-gallery-modal {
    padding: 0;
  }

  .prestige-gallery-panel {
    width: 100%;
    height: 100svh;
  }

  .prestige-gallery-panel > header {
    min-height: 74px;
    padding: 12px 12px 10px 16px;
  }

  .prestige-gallery-panel > header h2 {
    font-size: 26px;
  }

  .prestige-gallery-control {
    top: auto;
    bottom: 110px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .prestige-gallery-control--previous {
    left: 16px;
  }

  .prestige-gallery-control--next {
    right: 16px;
  }

  .prestige-gallery-stage figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .prestige-gallery-thumbs {
    min-height: 86px;
    padding: 8px 10px;
  }

  .prestige-gallery-thumb {
    flex-basis: 84px;
  }

  .prestige-gallery-thumb img {
    height: 62px;
  }

  .prestige-mobile-booking {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }

  .prestige-mobile-booking > span {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .prestige-mobile-booking strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
  }

  .prestige-mobile-booking small {
    overflow: hidden;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .prestige-mobile-booking a {
    min-width: 112px;
    min-height: 48px;
    padding: 0 16px;
  }
}

.suite-prestige-page {
  --prestige-detail-copper: #b7644f;
  --prestige-detail-sand: #eee4d6;
}

/* Compact Airbnb-style decision details */
.prestige-detail-things {
  padding: clamp(54px, 6vw, 82px) max(24px, calc((100vw - 1390px) / 2));
  border-bottom: 1px solid rgba(20, 35, 59, 0.12);
  background: #fff;
  color: var(--navy);
}

.prestige-detail-things > h2 {
  margin: 0 0 clamp(30px, 4vw, 48px);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-detail-things-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 76px);
}

.prestige-detail-things-grid article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 18px;
  align-content: start;
}

.prestige-detail-things-grid article > svg {
  width: 29px;
  height: 29px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prestige-detail-things-grid h3,
.prestige-detail-policy-modal-content h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.prestige-detail-things-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.prestige-detail-things-grid a,
.prestige-detail-things-grid button {
  display: inline-block;
  width: auto;
  margin: 9px 0 0;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

.prestige-detail-things-grid a:hover,
.prestige-detail-things-grid button:hover {
  color: var(--prestige-detail-copper);
}

.prestige-detail-things-grid a:focus-visible,
.prestige-detail-things-grid button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.prestige-detail-policy-modal-panel {
  width: min(760px, 100%);
  border: 0;
  border-radius: 24px;
  background: #fff;
}

.prestige-detail-policy-modal-panel .detail-modal-header {
  margin-bottom: 34px;
}

.prestige-detail-policy-modal-panel .detail-modal-header h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.prestige-detail-policy-modal-panel .detail-modal-header > div > p:last-child:not(.eyebrow) {
  max-width: 54ch;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.prestige-detail-policy-modal-content {
  color: var(--ink);
  font-family: var(--sans);
}

.prestige-detail-policy-modal-content section + section {
  margin-top: 34px;
}

.prestige-detail-policy-modal-content h3 {
  margin-bottom: 13px;
  font-size: 18px;
}

.prestige-detail-policy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prestige-detail-policy-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
  min-height: 62px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(20, 35, 59, 0.12);
  align-items: start;
}

.prestige-detail-policy-list li:first-child {
  border-top: 1px solid rgba(20, 35, 59, 0.12);
}

.prestige-detail-policy-list svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prestige-detail-policy-list li > span {
  padding-top: 2px;
  font-size: 15px;
  line-height: 1.5;
}

.prestige-detail-safety-list strong,
.prestige-detail-safety-list small {
  display: block;
}

.prestige-detail-safety-list strong {
  color: var(--navy);
  font-size: 15px;
}

.prestige-detail-safety-list small {
  max-width: 58ch;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.prestige-detail-policy-additional {
  padding-top: 2px;
}

.prestige-detail-policy-additional p {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
}

.prestige-detail-policy-additional p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .prestige-detail-things-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .prestige-detail-things-grid article {
    padding: 24px 0;
    border-top: 1px solid rgba(20, 35, 59, 0.12);
  }

  .prestige-detail-things-grid article:last-child {
    border-bottom: 1px solid rgba(20, 35, 59, 0.12);
  }
}

@media (max-width: 720px) {
  .prestige-detail-things {
    padding: 52px 20px 58px;
  }

  .prestige-detail-things > h2 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .prestige-detail-policy-modal-panel {
    border-radius: 20px 20px 0 0;
  }

  .prestige-detail-policy-modal-panel .detail-modal-header {
    margin-bottom: 28px;
  }

  .prestige-detail-policy-modal-panel .detail-modal-header h2 {
    font-size: 42px;
  }
}

.detail-modal-panel.prestige-detail-policy-modal-panel {
  width: min(760px, 100%);
  border: 0;
  background: #fff;
}

.suite-prestige-page [hidden] {
  display: none !important;
}

.prestige-detail-host-band {
  padding: 0 max(24px, calc((100vw - 1390px) / 2));
  border-bottom: 1px solid rgba(20, 35, 59, 0.16);
  background: var(--ivory);
}

.prestige-detail-host-card {
  display: flex;
  width: 100%;
  min-height: 116px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.prestige-detail-host-card img {
  width: 68px;
  height: 68px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(179, 149, 91, 0.72), 0 8px 22px rgba(20, 35, 59, 0.12);
  object-fit: cover;
}

.prestige-detail-host-card h2 {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.prestige-detail-host-card h2 span {
  color: #9d7836;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.prestige-detail-host-card::after {
  flex: 1 1 auto;
  height: 1px;
  margin-left: clamp(8px, 2vw, 28px);
  background: linear-gradient(90deg, rgba(179, 149, 91, 0.55), rgba(179, 149, 91, 0));
  content: "";
}

@media (min-width: 981px) {
  .prestige-detail-host-band {
    width: min(1500px, calc(100% - clamp(72px, 12vw, 160px)));
    margin: 0 auto;
    padding: 0;
  }
}

.suite-prestige-page .suite-detail-intro {
  padding-top: clamp(44px, 4vw, 58px);
  padding-bottom: clamp(32px, 3vw, 48px);
}

.suite-prestige-page .suite-sleeping {
  padding-top: clamp(48px, 5vw, 72px);
}

.prestige-detail-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 720px);
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.prestige-detail-hero-facts div {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.prestige-detail-hero-facts div:first-child {
  padding-left: 0;
}

.prestige-detail-hero-facts div:last-child {
  border-right: 0;
}

.prestige-detail-hero-facts dt,
.prestige-detail-hero-facts dd {
  margin: 0;
}

.prestige-detail-hero-facts dt {
  color: #e8c66d;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.84;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.prestige-detail-hero-facts dd {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

.suite-prestige-hero {
  min-height: min(940px, 100svh);
}

.suite-prestige-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 15, 26, 0.62) 0%, rgba(8, 15, 26, 0.28) 47%, rgba(8, 15, 26, 0.04) 74%),
    linear-gradient(0deg, rgba(8, 15, 26, 0.5) 0%, rgba(8, 15, 26, 0.03) 58%);
}

.suite-prestige-hero .suite-detail-hero-media img {
  object-position: 50% 54%;
  transform: scale(1.015);
  animation: prestige-detail-hero-arrive 1800ms var(--ease-luxury) both;
}

.suite-prestige-hero .suite-detail-hero-copy {
  max-width: 900px;
}

.prestige-detail-photo-section-share {
  position: absolute;
  top: 6px;
  right: 0;
  z-index: 4;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  background: var(--navy);
  box-shadow: 0 7px 18px rgba(20, 35, 59, 0.13);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.prestige-detail-photo-section-share:hover {
  background: var(--ivory);
  color: var(--navy);
  transform: translateY(-1px);
}

.prestige-detail-photo-section-share:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.prestige-detail-photo-section-share svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.suite-prestige-hero .hero-title-main {
  letter-spacing: -0.055em;
}

.suite-prestige-hero .suite-detail-hero-copy > p:not(.eyebrow) {
  max-width: 48ch;
}

.prestige-detail-gallery-intro {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding: 26px 0 28px;
}

.prestige-detail-gallery-intro h2 {
  max-width: 31ch;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.prestige-detail-gallery-intro .prestige-detail-photo-section-share {
  position: static;
  flex: 0 0 auto;
}

.suite-prestige-page .suite-sleeping-header h2 {
  padding-right: 0.4em;
  overflow: visible;
  clip-path: none;
}

.prestige-detail-bedroom-showcase {
  min-width: 0;
}

.prestige-detail-bedroom-stage {
  position: relative;
}

.prestige-detail-bedroom-stage .suite-sleeping-card[hidden] {
  display: none;
}

.prestige-detail-bedroom-stage .suite-sleeping-card.is-active {
  animation: prestige-detail-bedroom-enter 620ms var(--ease-luxury) both;
}

.prestige-detail-bedroom-stage .suite-sleeping-card figure {
  height: clamp(430px, 42vw, 620px);
}

.prestige-detail-bedroom-stage .suite-sleeping-card img {
  object-position: center center;
}

.prestige-detail-bedroom-stage .suite-sleeping-card > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 28px;
  padding: 25px 28px 27px;
  align-items: end;
}

.prestige-detail-bedroom-stage .suite-sleeping-card span {
  grid-column: 1 / -1;
}

.prestige-detail-bedroom-stage .suite-sleeping-card h3,
.prestige-detail-bedroom-stage .suite-sleeping-card p {
  margin: 8px 0 0;
}

.prestige-detail-bedroom-controls {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  margin-top: 16px;
}

.prestige-detail-bedroom-arrow {
  display: grid;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(20, 35, 59, 0.28);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  place-items: center;
  transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.prestige-detail-bedroom-arrow:hover,
.prestige-detail-bedroom-arrow:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--ivory);
}

.prestige-detail-bedroom-arrow:focus-visible,
.prestige-detail-bedroom-tabs button:focus-visible {
  outline: 2px solid var(--prestige-detail-copper);
  outline-offset: 3px;
}

.prestige-detail-bedroom-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.prestige-detail-bedroom-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 35, 59, 0.18);
  border-bottom: 1px solid rgba(20, 35, 59, 0.18);
}

.prestige-detail-bedroom-tabs button {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 8px 14px;
  border: 0;
  border-right: 1px solid rgba(20, 35, 59, 0.12);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background-color 240ms ease, color 240ms ease;
}

.prestige-detail-bedroom-tabs button:last-child {
  border-right: 0;
}

.prestige-detail-bedroom-tabs button span {
  color: var(--prestige-detail-copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.prestige-detail-bedroom-tabs button strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prestige-detail-bedroom-tabs button.is-active {
  background: var(--navy);
  color: var(--ivory);
}

.prestige-detail-bedroom-tabs button.is-active span {
  color: #e2c785;
}

.prestige-detail-bedroom-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.suite-prestige-page .prestige-detail-sleeping-compact {
  display: block;
  padding: clamp(58px, 6vw, 82px) max(24px, calc((100vw - 1390px) / 2)) clamp(66px, 7vw, 96px);
}

.prestige-detail-sleeping-inner {
  width: min(100%, 1080px);
}

.prestige-detail-sleeping-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.prestige-detail-sleeping-toolbar h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-detail-sleeping-toolbar p {
  margin: 7px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
}

.prestige-detail-sleeping-navigation {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.prestige-detail-sleeping-navigation > span {
  margin-right: 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  white-space: nowrap;
}

.prestige-detail-sleeping-navigation b {
  font-weight: 700;
}

.prestige-detail-sleeping-navigation button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(20, 35, 59, 0.18);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--navy);
  cursor: pointer;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.prestige-detail-sleeping-navigation button:hover,
.prestige-detail-sleeping-navigation button:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--ivory);
}

.prestige-detail-sleeping-navigation button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.prestige-detail-sleeping-navigation button:disabled {
  opacity: 0.35;
  cursor: default;
}

.prestige-detail-sleeping-navigation button:disabled:hover {
  border-color: rgba(20, 35, 59, 0.18);
  background: var(--ivory);
  color: var(--navy);
}

.prestige-detail-sleeping-navigation svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prestige-detail-sleeping-track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 3px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.prestige-detail-sleeping-track::-webkit-scrollbar {
  display: none;
}

.prestige-detail-sleep-card {
  flex: 0 0 calc((100% - 16px) / 2);
  min-width: 0;
  scroll-snap-align: start;
}

@media (min-width: 721px) {
  .prestige-detail-sleeping-track::after {
    content: "";
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

.prestige-detail-sleep-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  object-fit: cover;
}

.prestige-detail-sleep-card h3 {
  margin: 14px 0 4px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.prestige-detail-sleep-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
}

@media (min-width: 1181px) {
  .suite-prestige-page.has-suite-floating-booking .prestige-detail-sleeping-inner {
    width: min(760px, calc(100vw - 520px));
  }
}

@media (max-width: 720px) {
  .suite-prestige-page .prestige-detail-sleeping-compact {
    padding: 46px 18px 62px;
  }

  .prestige-detail-sleeping-toolbar {
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
  }

  .prestige-detail-sleeping-toolbar h2 {
    font-size: 24px;
  }

  .prestige-detail-sleeping-toolbar p {
    max-width: 20ch;
  }

  .prestige-detail-sleeping-navigation > span {
    display: none;
  }

  .prestige-detail-sleeping-navigation button {
    width: 36px;
    height: 36px;
  }

  .prestige-detail-sleep-card {
    flex-basis: 84%;
  }
}

.prestige-detail-booking-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.suite-prestige-page .suite-amenity-preview li {
  position: relative;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
}

.suite-prestige-page .suite-amenity-preview svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.7;
}

.suite-prestige-page .suite-amenity-preview .is-unavailable {
  color: var(--muted);
}

.suite-prestige-page .suite-amenity-preview .is-unavailable span {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.suite-prestige-page .prestige-detail-amenities-simple {
  display: block;
  padding: clamp(64px, 7vw, 96px) max(24px, calc((100vw - 1390px) / 2));
  border-top: 1px solid rgba(20, 35, 59, 0.1);
  border-bottom: 1px solid rgba(20, 35, 59, 0.1);
  background: var(--ivory);
}

.prestige-detail-amenities-inner {
  width: min(100%, 940px);
}

.prestige-detail-amenities-inner > h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-detail-amenities-simple .suite-amenity-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(34px, 6vw, 78px);
}

.suite-prestige-page .prestige-detail-amenities-simple .suite-amenity-preview li {
  min-height: 54px;
  border: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}

.suite-prestige-page .prestige-detail-amenities-simple .suite-amenity-preview svg {
  width: 27px;
  height: 27px;
}

.prestige-detail-amenities-simple .button {
  min-height: 48px;
  margin-top: 22px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: rgba(20, 35, 59, 0.07);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.prestige-detail-amenities-simple .button:hover,
.prestige-detail-amenities-simple .button:focus-visible {
  background: var(--navy);
  color: var(--ivory);
}

.prestige-detail-date-check {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding: clamp(64px, 7vw, 96px) max(24px, calc((100vw - 1390px) / 2));
  border-bottom: 1px solid rgba(20, 35, 59, 0.1);
  background: #fff;
}

.prestige-detail-date-check-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-detail-date-check-copy > p:not(.eyebrow) {
  max-width: 36ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
}

.prestige-detail-date-check > .prestige-detail-calendar-connection {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -12px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 35, 59, 0.1);
  color: rgba(20, 35, 59, 0.68);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  white-space: nowrap;
}

.prestige-detail-date-check > .prestige-detail-calendar-connection::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.prestige-detail-calendar {
  min-width: 0;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
}

.prestige-detail-calendar-toolbar {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: start;
}

.prestige-detail-calendar-toolbar > button {
  display: grid;
  width: 38px;
  height: 38px;
  margin-top: 1px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  place-items: center;
}

.prestige-detail-calendar-toolbar > button:hover,
.prestige-detail-calendar-toolbar > button:focus-visible {
  background: rgba(20, 35, 59, 0.08);
}

.prestige-detail-calendar-toolbar > button:focus-visible,
.prestige-detail-calendar-day:focus-visible,
.prestige-detail-calendar-footer button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.prestige-detail-calendar-toolbar > button:disabled {
  opacity: 0.3;
  cursor: default;
}

.prestige-detail-calendar-toolbar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.prestige-detail-calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 50px);
}

.prestige-detail-calendar-month h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.prestige-detail-calendar-weekdays,
.prestige-detail-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.prestige-detail-calendar-weekdays {
  margin-bottom: 5px;
}

.prestige-detail-calendar-weekdays span {
  color: rgba(20, 35, 59, 0.58);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

.prestige-detail-calendar-day,
.prestige-detail-calendar-blank {
  aspect-ratio: 1;
}

.prestige-detail-calendar-day {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  place-items: center;
}

.prestige-detail-calendar-day:hover:not(:disabled) {
  box-shadow: inset 0 0 0 1px var(--navy);
}

.prestige-detail-calendar-day.is-in-range {
  border-radius: 0;
  background: rgba(179, 149, 91, 0.16);
}

.prestige-detail-calendar-day.is-selected {
  border-radius: 50%;
  background: var(--navy);
  box-shadow: none;
  color: #fff;
}

.prestige-detail-calendar-day.is-today:not(.is-selected)::after {
  position: absolute;
  right: 42%;
  bottom: 4px;
  left: 42%;
  height: 2px;
  border-radius: 2px;
  background: var(--prestige-detail-copper);
  content: "";
}

.prestige-detail-calendar-day:disabled {
  color: rgba(20, 35, 59, 0.24);
  cursor: default;
}

.prestige-detail-calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 35, 59, 0.1);
}

.prestige-detail-calendar-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
}

.prestige-detail-calendar-footer button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.prestige-detail-calendar-footer button:disabled {
  opacity: 0;
  pointer-events: none;
}

.prestige-detail-lodgify-widget {
  --ldg-core-fontFamily: var(--sans);
  --ldg-psb-font-family: var(--sans);
  --ldg-psb-color-primary: var(--prestige-detail-copper);
  --ldg-psb-color-primary-contrast: #fff;
  --ldg-psb-color-primary-darker: #a63d29;
  --ldg-psb-color-primary-lighter: #f6e2dc;
  --ldg-psb-background: transparent;
  --ldg-psb-input-background: #fff;
  --ldg-psb-border-radius: 12px;
  --ldg-psb-button-border-radius: 10px;
  --ldg-psb-box-shadow: none;
  width: 100%;
  min-width: 0;
  color: var(--navy);
  font-family: var(--sans);
}

.prestige-detail-lodgify-widget #lodgify-search-bar {
  width: 100%;
  min-height: 76px;
  font-family: var(--sans);
}

.prestige-detail-lodgify-widget #portable-search-bar,
.prestige-detail-lodgify-widget #portable-search-bar * {
  font-family: var(--sans) !important;
}

.prestige-detail-lodgify-widget-card {
  min-height: 94px;
}

.suite-booking-card .prestige-detail-lodgify-widget-card #portable-search-bar {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.suite-booking-card .prestige-detail-lodgify-widget-card #portable-search-bar > div:empty {
  display: none !important;
}

.suite-booking-card .prestige-detail-lodgify-widget-card #portable-search-bar > button,
.suite-booking-card .prestige-detail-lodgify-widget-card #portable-search-bar > a {
  width: 100% !important;
  max-width: none !important;
  min-height: 60px;
  margin: 0 !important;
}

.suite-booking-card .prestige-detail-lodgify-widget-card #portable-search-bar > a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--prestige-detail-copper) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

@media (min-width: 1181px) {
  .suite-prestige-page.has-suite-floating-booking .prestige-detail-date-check {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-right: calc(clamp(48px, 5vw, 76px) + min(430px, 34vw) + 40px);
  }

  .suite-booking-card.is-suite-floating .prestige-detail-lodgify-widget-card {
    min-height: 210px;
  }
}

@media (max-width: 820px) {
  .prestige-detail-date-check {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (min-width: 1181px) {
  .suite-prestige-page.has-suite-floating-booking .prestige-detail-amenities-inner {
    width: min(760px, calc(100vw - 520px));
  }
}

@media (max-width: 720px) {
  .suite-prestige-page .prestige-detail-amenities-simple {
    padding: 54px 18px 62px;
  }

  .prestige-detail-date-check {
    padding: 54px 18px 62px;
  }

  .prestige-detail-amenities-inner > h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .prestige-detail-amenities-simple .suite-amenity-preview {
    grid-template-columns: 1fr;
  }

  .suite-prestige-page .prestige-detail-amenities-simple .suite-amenity-preview li {
    min-height: 50px;
  }

  .prestige-detail-calendar {
    padding: 0;
    border-radius: 0;
  }

  .prestige-detail-calendar-toolbar {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 5px;
  }

  .prestige-detail-calendar-toolbar > button {
    width: 34px;
    height: 34px;
  }

  .prestige-detail-calendar-months {
    grid-template-columns: 1fr;
  }

  .prestige-detail-calendar-month:nth-child(2) {
    display: none;
  }

  .prestige-detail-calendar-day {
    font-size: 13px;
  }

  .prestige-detail-date-check > .prestige-detail-calendar-connection {
    margin-top: 0;
    white-space: normal;
  }
}

.prestige-detail-amenities-modal {
  width: min(780px, 100%);
  padding: 28px 32px 18px;
  border: 0;
  border-radius: 26px;
  background: #fff;
  color: #222;
}

.prestige-detail-amenities-modal .detail-modal-header {
  margin-bottom: 30px;
}

.prestige-detail-amenities-modal .detail-modal-header .eyebrow,
.prestige-detail-amenities-modal .detail-modal-header > div > p:last-child:not(.eyebrow) {
  display: none;
}

.prestige-detail-amenities-modal .detail-modal-header h2 {
  margin: 0;
  color: #222;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.prestige-detail-amenities-modal .detail-modal-close {
  width: 38px;
  height: 38px;
  border-color: transparent;
  color: #222;
}

.prestige-detail-amenities-modal .amenities-modal-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.prestige-detail-amenities-modal .amenities-modal-grid section {
  padding: 0 0 36px;
}

.prestige-detail-amenities-modal .amenities-modal-grid h3 {
  margin-bottom: 12px;
  color: #222;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.prestige-detail-amenities-modal .amenities-modal-grid li {
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  min-height: 74px;
  padding: 17px 0;
  border-color: #dedede;
  color: #222;
  font-family: var(--sans);
  font-size: 16px;
}

.prestige-detail-amenities-modal .amenity-modal-icon {
  width: 28px;
  height: 28px;
  color: #222;
  stroke: currentColor;
  stroke-width: 1.75;
}

.amenity-modal-copy {
  display: grid;
  gap: 4px;
  line-height: 1.4;
}

.amenity-modal-copy small {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.45;
}

.prestige-detail-amenities-modal .amenities-not-included {
  padding-bottom: 0;
}

.prestige-detail-amenities-modal .amenities-not-included del {
  color: var(--muted);
  text-decoration-thickness: 1px;
}

.suite-prestige-page .practical-modal-list dd {
  overflow-wrap: anywhere;
}

.suite-intro-show-more {
  display: inline-flex;
  min-height: 48px;
  gap: 12px;
  margin-top: 24px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(20, 35, 59, 0.07);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  align-items: center;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease;
}

.suite-intro-show-more:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.suite-intro-show-more:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.suite-intro-show-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.prestige-detail-space-modal-panel {
  width: min(780px, 100%);
  max-height: min(800px, 90svh);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--ivory);
  scrollbar-width: thin;
}

.prestige-detail-space-modal .detail-modal-backdrop {
  background: rgba(20, 27, 39, 0.48);
  backdrop-filter: none;
}

.prestige-detail-space-modal-panel .detail-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: block;
  margin: 0;
  padding: 68px 34px 24px;
  background: var(--ivory);
}

.prestige-detail-space-modal-panel .detail-modal-header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-detail-space-modal-panel .detail-modal-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  border: 0;
}

.prestige-detail-space-modal-panel .detail-modal-close span {
  left: 10px;
  width: 18px;
}

.prestige-detail-space-story {
  display: block;
  padding: 0 34px 38px;
}

.prestige-detail-space-story-lead {
  max-width: none;
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

.prestige-detail-space-story article {
  padding: 0;
  border: 0;
}

.prestige-detail-space-story h3 {
  max-width: none;
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.prestige-detail-space-story article > p {
  max-width: none;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

.prestige-detail-space-story article > p:last-child {
  margin-bottom: 0;
}

.prestige-detail-space-story-note {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.prestige-detail-space-story-note a {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-weight: 700;
}

.prestige-detail-registration-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.prestige-detail-registration-details h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.prestige-detail-registration-details dl,
.prestige-detail-registration-details dt,
.prestige-detail-registration-details dd {
  margin: 0;
}

.prestige-detail-registration-details dl {
  display: grid;
  gap: 20px;
}

.prestige-detail-registration-details dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.prestige-detail-registration-details dd {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

@media (min-width: 721px) {
  .suite-prestige-page .prestige-detail-things-modal-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 clamp(24px, 4vw, 48px);
  }
}

.prestige-detail-dining {
  display: block;
}

.prestige-detail-dining .suite-local-notes-header {
  display: block;
  max-width: 820px;
  margin-bottom: 0;
}

.prestige-detail-dining .suite-local-notes-header h2 {
  max-width: none;
  font-family: var(--serif);
  font-size: clamp(54px, 5.6vw, 80px);
  font-weight: 500;
  white-space: normal;
}

.prestige-detail-dining .suite-local-notes-header > p:not(.eyebrow) {
  max-width: 60ch;
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}

.prestige-detail-local-discovery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 7vw, 100px);
  margin-top: clamp(56px, 6vw, 82px);
}

.prestige-detail-local-column,
.prestige-detail-local-practical > section {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.prestige-detail-local-column-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.prestige-detail-local-column-heading svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #e2c785;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prestige-detail-local-column-heading h3,
.prestige-detail-local-subheading h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.prestige-detail-local-places {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prestige-detail-local-places li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: baseline;
}

.prestige-detail-local-places a {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease;
}

.prestige-detail-local-places a:hover {
  color: #e2c785;
}

.prestige-detail-local-places a:focus-visible {
  outline: 2px solid #d2b16f;
  outline-offset: 4px;
}

.prestige-detail-local-places li > span {
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  text-align: right;
  white-space: nowrap;
}

.prestige-detail-local-restaurants {
  margin-top: clamp(72px, 8vw, 108px);
}

.prestige-detail-local-subheading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.prestige-detail-local-subheading .eyebrow {
  margin: 0;
  color: #d2b16f;
}

.prestige-detail-local-subheading h3 {
  font-size: clamp(36px, 4vw, 58px);
}

.prestige-detail-dining .suite-local-notes-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
  margin-top: 34px;
}

.prestige-detail-dining .suite-local-notes-list article,
.prestige-detail-dining .suite-local-notes-list article:last-child {
  min-height: 0;
  padding: 24px 0 28px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.prestige-detail-dining .suite-local-notes-list article:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  transform: none;
}

.prestige-detail-dining .suite-local-notes-list h4 {
  max-width: 18ch;
  margin: 10px 0 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.prestige-detail-local-practical {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
  margin-top: clamp(76px, 8vw, 112px);
}

.prestige-detail-local-practical .prestige-detail-local-column-heading h3 {
  font-size: clamp(25px, 2.1vw, 32px);
}

.prestige-detail-local-practical .prestige-detail-local-places li {
  grid-template-columns: minmax(0, 1fr);
  gap: 3px;
  padding: 12px 0;
}

.prestige-detail-local-practical .prestige-detail-local-places li > span {
  text-align: left;
  white-space: normal;
}

.prestige-detail-local-distance-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 1179px) {
  .suite-mobile-booking.is-hidden-over-guide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 110%, 0);
    transition:
      opacity 220ms ease,
      transform 360ms var(--ease-luxury),
      visibility 0s 360ms;
  }
}

@media (min-width: 1180px) {
  .apartment-detail-page.has-suite-floating-booking .prestige-detail-local-guide {
    padding-right: max(24px, calc((100vw - 1390px) / 2));
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-local-guide .suite-local-notes-header {
    max-width: 820px;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-local-guide .suite-local-notes-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 44px);
    margin-top: 34px;
  }
}

/* Compact desktop / split-screen navigation. The standard desktop header is
   wider than the content area when the browser shares the screen with another
   app, so switch only the header to its compact menu before links can clip. */
@media (min-width: 1181px) and (max-width: 1400px) {
  .suite-prestige-page .site-header {
    min-height: 76px;
    padding: 14px clamp(28px, 4vw, 52px);
  }

  .suite-prestige-page .nav-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    width: 44px;
    min-width: 44px;
    height: 44px;
    place-items: center;
    gap: 6px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
  }

  .suite-prestige-page .nav-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .suite-prestige-page .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--ivory);
    color: var(--navy);
    box-shadow: var(--shadow);
  }

  .suite-prestige-page .site-nav.is-open {
    display: flex;
  }

  .suite-prestige-page .site-nav a,
  .suite-prestige-page .site-nav button {
    padding: 15px 12px;
  }

  .suite-prestige-page .site-nav .nav-cta {
    margin-top: 8px;
    padding: 15px 12px;
    border: 1px solid var(--cta-terracotta);
    background: var(--cta-terracotta);
    color: var(--white);
    text-align: center;
  }
}

@media (max-width: 980px) {
  .prestige-detail-local-discovery,
  .prestige-detail-local-practical {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .prestige-detail-dining .suite-local-notes-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .prestige-detail-local-subheading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .prestige-detail-local-practical {
    margin-top: 72px;
  }
}

@media (max-width: 720px) {
  .prestige-detail-dining .suite-local-notes-header h2 {
    font-size: clamp(40px, 11.8vw, 50px);
    letter-spacing: -0.035em;
    line-height: 1;
    white-space: nowrap;
  }

  .prestige-detail-local-discovery {
    margin-top: 48px;
  }

  .prestige-detail-local-places li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .prestige-detail-local-places li > span {
    text-align: left;
  }

  .prestige-detail-local-restaurants {
    margin-top: 64px;
  }

  .prestige-detail-local-subheading h3 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .prestige-detail-dining .suite-local-notes-list {
    margin-top: 26px;
  }
}

.prestige-detail-entrance-story .suite-detail-cta-media img {
  object-position: center 52%;
}

.suite-prestige-page .detail-gallery-track figure:nth-child(4n + 2) img,
.suite-prestige-page .detail-gallery-track figure:nth-child(4n + 3) img {
  object-position: center center;
}

/* Airbnb-inspired gallery preview: one decisive image followed by four
   supporting views. The complete, ordered photo tour remains one click away. */
.prestige-detail-photo-preview [data-gallery-preview] {
  cursor: pointer;
}

.prestige-detail-photo-preview [data-gallery-preview]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.suite-photo-grid-icon {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  gap: 2px;
}

.suite-photo-grid-icon i {
  width: 4px;
  height: 4px;
  border: 1px solid currentColor;
}

@media (min-width: 981px) {
  .prestige-detail-photo-preview {
    width: min(1500px, calc(100% - clamp(72px, 12vw, 160px)));
    margin: 0 auto;
    padding: 0;
    border-radius: 14px;
    background: var(--ivory);
  }

  .prestige-detail-gallery-intro h2 {
    max-width: none;
    font-size: clamp(30px, 2.7vw, 44px);
    white-space: nowrap;
  }

  .prestige-detail-photo-preview .suite-carousel-viewport {
    overflow: visible;
  }

  .prestige-detail-photo-preview .suite-carousel-track {
    display: grid;
    width: 100%;
    height: clamp(400px, 31vw, 620px);
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .prestige-detail-photo-preview .suite-carousel-slide,
  .prestige-detail-photo-preview .suite-carousel-slide-wide {
    width: auto;
    height: auto;
    min-width: 0;
    margin: 0;
    flex: none;
    scroll-snap-align: none;
  }

  .prestige-detail-photo-preview .suite-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .prestige-detail-photo-preview .suite-carousel-slide:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .prestige-detail-photo-preview .suite-carousel-slide:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .prestige-detail-photo-preview .suite-carousel-slide:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .prestige-detail-photo-preview .suite-carousel-slide:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .prestige-detail-photo-preview .suite-carousel-slide:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }

  .prestige-detail-photo-preview .suite-carousel-slide:nth-child(n + 6),
  .prestige-detail-photo-preview .suite-carousel-meta,
  .prestige-detail-photo-preview .suite-carousel-control {
    display: none;
  }

  .prestige-detail-photo-preview .suite-carousel-view-all {
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 10px;
  }
}

/* The full gallery follows Airbnb's visual-tour pattern: a vertically
   scrollable sequence with generous images, alternating full-width moments
   and paired supporting angles. */
.prestige-detail-photo-tour {
  padding: 0;
  background: var(--ivory);
}

.prestige-detail-photo-tour .detail-modal-backdrop {
  display: none;
}

.prestige-detail-photo-tour .detail-gallery-panel {
  width: 100%;
  height: 100svh;
  max-height: 100svh;
  padding: 0;
  border: 0;
  background: var(--ivory);
  box-shadow: none;
}

.prestige-detail-photo-tour .detail-modal-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 0;
  background: var(--ivory);
}

.prestige-detail-photo-tour-back,
.prestige-detail-photo-tour-share {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--navy);
}

.prestige-detail-photo-tour-back {
  width: 44px;
  padding: 0;
  border-radius: 50%;
}

.prestige-detail-photo-tour-back:hover,
.prestige-detail-photo-tour-share:hover {
  background: rgba(20, 35, 59, 0.06);
}

.prestige-detail-photo-tour-back svg,
.prestige-detail-photo-tour-share svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prestige-detail-photo-tour-share {
  gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prestige-detail-photo-tour .detail-gallery-viewport {
  min-height: 0;
  padding: 0 20px clamp(52px, 7vw, 96px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-block: contain;
  scroll-snap-type: none;
  scrollbar-width: thin;
  touch-action: pan-y;
}

.prestige-detail-photo-tour .detail-gallery-viewport::-webkit-scrollbar {
  display: block;
  width: 8px;
}

.prestige-detail-photo-tour .detail-gallery-viewport::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(20, 35, 59, 0.26);
}

.prestige-detail-photo-tour .detail-gallery-track {
  display: block;
  width: min(100%, 1120px);
  height: auto;
  margin: 0 auto;
}

.prestige-detail-photo-tour-nav {
  display: grid;
  width: min(100%, 1120px);
  margin: 0 auto clamp(52px, 6vw, 82px);
  padding: 22px 0 8px;
  grid-auto-columns: minmax(132px, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.prestige-detail-photo-tour-nav::-webkit-scrollbar {
  display: none;
}

.prestige-detail-photo-tour-nav button {
  display: grid;
  min-width: 0;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
}

.prestige-detail-photo-tour-nav button img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.42 / 1;
  border-radius: 4px;
  object-fit: cover;
  transition: filter 180ms ease, transform 220ms var(--ease-luxury);
}

.prestige-detail-photo-tour-nav button:hover img {
  filter: brightness(0.94);
  transform: scale(1.015);
}

.prestige-detail-photo-tour-nav button span {
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prestige-detail-photo-tour-room + .prestige-detail-photo-tour-room {
  margin-top: clamp(62px, 8vw, 106px);
}

.prestige-detail-photo-tour-room {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.prestige-detail-photo-tour-room h3 {
  position: sticky;
  top: 24px;
  align-self: start;
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.prestige-detail-photo-tour-room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.prestige-detail-photo-tour .detail-gallery-track figure {
  display: block;
  height: auto;
  scroll-snap-align: none;
}

.prestige-detail-photo-tour .prestige-detail-photo-tour-room-grid figure:nth-child(5n + 1) {
  grid-column: 1 / -1;
}

.prestige-detail-photo-tour .detail-gallery-track img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.prestige-detail-photo-tour .detail-gallery-track figcaption {
  display: none;
}

.prestige-detail-photo-tour .detail-gallery-track figure[data-image-open]::after {
  display: none;
}

.prestige-detail-photo-tour .detail-gallery-footer {
  display: none;
}

.image-viewer.is-suite-gallery-image {
  padding: 0;
  background: var(--navy);
  color: var(--white);
  place-items: stretch;
}

.image-viewer.is-suite-gallery-image .image-viewer-backdrop {
  background: var(--navy);
}

.image-viewer.is-suite-gallery-image .image-viewer-panel {
  width: 100%;
  height: 100svh;
  max-height: none;
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--navy);
  box-shadow: none;
}

.image-viewer.is-suite-gallery-image .image-viewer-header {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 76px;
  padding: 14px clamp(18px, 3vw, 42px);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  border-bottom: 0;
  background: var(--navy);
  color: var(--white);
  align-items: center;
}

.image-viewer.is-suite-gallery-image .image-viewer-header .eyebrow,
.image-viewer.is-suite-gallery-image .image-viewer-header h2 {
  display: none;
}

.image-viewer.is-suite-gallery-image .image-viewer-header > div:first-child {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
}

.image-viewer.is-suite-gallery-image .image-viewer-actions {
  display: contents;
}

.image-viewer-counter {
  margin: 0;
  color: rgba(20, 35, 59, 0.62);
  font: 800 9px/1.2 var(--sans);
  letter-spacing: 0.14em;
}

.image-viewer.is-suite-gallery-image .image-viewer-counter {
  display: block;
  margin: 0;
  color: var(--white);
  font: 700 13px/1 var(--sans);
  letter-spacing: 0.08em;
}

.image-viewer-close strong {
  display: none;
}

.image-viewer.is-suite-gallery-image .image-viewer-zoom,
.image-viewer.is-suite-gallery-image .image-viewer-share,
.image-viewer.is-suite-gallery-image .image-viewer-close {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.image-viewer.is-suite-gallery-image .image-viewer-zoom {
  display: none;
}

.image-viewer.is-suite-gallery-image .image-viewer-close {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-self: start;
  gap: 10px;
  padding: 0 10px;
}

.image-viewer.is-suite-gallery-image .image-viewer-close strong {
  display: inline;
  font: 600 13px/1 var(--sans);
}

.image-viewer.is-suite-gallery-image .image-viewer-close span {
  left: 10px;
  width: 16px;
  background: currentColor;
}

.image-viewer.is-suite-gallery-image .image-viewer-close span:first-of-type {
  transform: rotate(45deg);
}

.image-viewer.is-suite-gallery-image .image-viewer-close span:nth-of-type(2) {
  transform: rotate(-45deg);
}

.image-viewer.is-suite-gallery-image .image-viewer-close strong {
  margin-left: 20px;
}

.image-viewer.is-suite-gallery-image .image-viewer-share {
  grid-column: 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 0 10px;
  font: 600 13px/1 var(--sans);
}

.image-viewer.is-suite-gallery-image .image-viewer-share svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.image-viewer.is-suite-gallery-image .image-viewer-share span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.image-viewer.is-suite-gallery-image .image-viewer-share:hover,
.image-viewer.is-suite-gallery-image .image-viewer-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.image-viewer.is-suite-gallery-image .image-viewer-close:focus-visible {
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
}

.image-viewer.is-suite-gallery-image .image-viewer-media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: default;
  touch-action: pan-y pinch-zoom;
}

.image-viewer.is-suite-gallery-image .image-viewer-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  padding: clamp(12px, 2vw, 30px) clamp(72px, 7vw, 112px) clamp(18px, 3vw, 42px);
  object-fit: contain;
  cursor: default;
  user-select: none;
}

.image-viewer-carousel-button[hidden] {
  display: none;
}

.image-viewer-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(20, 35, 59, 0.56);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
  place-items: center;
}

.image-viewer-carousel-button.is-previous {
  left: clamp(16px, 2.8vw, 42px);
}

.image-viewer-carousel-button.is-next {
  right: clamp(16px, 2.8vw, 42px);
}

.image-viewer-carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.image-viewer-carousel-button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.06);
}

.image-viewer-carousel-button:disabled {
  opacity: 0.26;
  cursor: default;
}

.image-viewer-carousel-button:focus-visible {
  outline: 2px solid #d2b675;
  outline-offset: 4px;
}

.image-viewer.is-suite-gallery-image.is-zoomed .image-viewer-carousel-button {
  opacity: 0;
  pointer-events: none;
}

.image-viewer.is-suite-gallery-image.is-zoomed .image-viewer-media img {
  width: 200%;
  height: auto;
  max-height: none;
  padding: 0;
}

.prestige-detail-share-modal[hidden] {
  display: none;
}

.prestige-detail-share-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  padding: 24px;
  place-items: center;
}

.prestige-detail-share-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(20, 35, 59, 0.48);
  backdrop-filter: blur(3px);
}

.prestige-detail-share-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: min(90svh, 820px);
  padding: clamp(28px, 4vw, 44px);
  overflow-y: auto;
  border: 1px solid rgba(20, 35, 59, 0.12);
  border-radius: 24px;
  background: var(--ivory);
  box-shadow: 0 34px 100px rgba(20, 35, 59, 0.25);
}

.prestige-detail-share-panel h2 {
  max-width: calc(100% - 54px);
  margin: 0 0 26px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  line-height: 0.98;
}

.prestige-detail-share-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
}

.prestige-detail-share-close:hover {
  background: rgba(20, 35, 59, 0.06);
}

.prestige-detail-share-close span {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.prestige-detail-share-close span:first-child {
  transform: rotate(45deg);
}

.prestige-detail-share-close span:last-child {
  transform: rotate(-45deg);
}

.prestige-detail-share-property {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.prestige-detail-share-property img {
  width: 92px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.prestige-detail-share-property p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.prestige-detail-share-property strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.prestige-detail-share-property span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.prestige-detail-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.prestige-detail-share-grid a,
.prestige-detail-share-grid button {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border: 1px solid rgba(20, 35, 59, 0.2);
  border-radius: 10px;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.prestige-detail-share-grid a:hover,
.prestige-detail-share-grid button:hover {
  border-color: var(--navy);
  background: rgba(20, 35, 59, 0.04);
}

.prestige-detail-share-grid svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.prestige-detail-share-grid svg.prestige-detail-share-brand-icon {
  fill: currentColor;
  stroke: none;
}

.prestige-detail-share-status {
  min-height: 18px;
  margin: 16px 0 0;
  color: var(--sage);
  font-size: 12px;
  font-weight: 650;
}

@keyframes prestige-detail-hero-arrive {
  from {
    opacity: 0.72;
    transform: scale(1.055);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes prestige-detail-bedroom-enter {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1181px) and (max-width: 1680px) {
  .suite-prestige-page.has-suite-floating-booking .suite-sleeping {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(44px, 5vw, 64px);
  }

  .suite-prestige-page.has-suite-floating-booking .suite-sleeping-header {
    max-width: none;
  }

  .suite-prestige-page.has-suite-floating-booking .suite-sleeping-header h2 {
    max-width: none;
    padding-right: 0;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    white-space: nowrap;
  }

  .suite-prestige-page.has-suite-floating-booking .prestige-detail-bedroom-stage .suite-sleeping-card figure {
    height: clamp(420px, 41vw, 560px);
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .suite-prestige-page .suite-sleeping-header {
    max-width: none;
  }

  .suite-prestige-page .suite-sleeping-header h2 {
    max-width: none;
    padding-right: 0;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .suite-prestige-hero {
    min-height: 820px;
  }

  .suite-prestige-hero::before {
    background:
      linear-gradient(0deg, rgba(8, 15, 26, 0.7) 0%, rgba(8, 15, 26, 0.28) 55%, rgba(8, 15, 26, 0.1) 100%),
      linear-gradient(90deg, rgba(8, 15, 26, 0.44), rgba(8, 15, 26, 0.03));
  }

  .suite-prestige-hero .suite-detail-hero-media img {
    object-position: 46% center;
  }

}

@media (max-width: 980px) {
  .prestige-detail-photo-preview {
    padding-top: 0;
  }

  .prestige-detail-photo-section-share {
    right: 18px;
  }
}

@media (max-width: 720px) {
  .suite-prestige-hero {
    min-height: 760px;
  }

  .suite-prestige-page .suite-sleeping-header {
    padding-right: 12px;
  }

  .suite-prestige-page .suite-sleeping-header h2 {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 58px);
  }

  .prestige-detail-photo-preview {
    padding: 0;
    overflow: hidden;
    background: var(--ivory);
  }

  .prestige-detail-photo-preview .suite-carousel-track {
    gap: 0;
  }

  .prestige-detail-photo-preview .suite-carousel-viewport {
    scroll-behavior: auto;
  }

  .prestige-detail-gallery-intro {
    flex-direction: column;
    min-height: 0;
    align-items: stretch;
    gap: 14px;
    padding: 24px 18px 18px;
  }

  .prestige-detail-gallery-intro h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.02;
    white-space: normal;
  }

  .prestige-detail-gallery-intro .prestige-detail-photo-section-share {
    align-self: flex-end;
    min-height: 40px;
    padding: 0 13px;
    border-color: rgba(20, 35, 59, 0.34);
    background: transparent;
    box-shadow: none;
    color: var(--navy);
  }

  .prestige-detail-photo-preview .suite-carousel-slide,
  .prestige-detail-photo-preview .suite-carousel-slide-wide {
    height: min(78vw, 520px);
    flex-basis: 100vw;
    background: var(--ivory);
    scroll-snap-stop: always;
  }

  .prestige-detail-photo-preview .suite-carousel-slide img,
  .prestige-detail-photo-preview .suite-carousel-slide:hover img {
    filter: saturate(0.9) contrast(1.015) brightness(0.995);
    transform: none;
    transition: none;
  }

  .prestige-detail-photo-preview .suite-carousel-control {
    display: none;
  }

  .prestige-detail-photo-preview .suite-carousel-meta {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 5;
    width: auto;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(20, 35, 59, 0.82);
    color: var(--white);
    pointer-events: none;
  }

  .prestige-detail-photo-preview .suite-carousel-count {
    color: var(--white);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
  }

  .prestige-detail-photo-preview .suite-carousel-label {
    display: none;
  }

  .prestige-detail-photo-preview .suite-carousel-view-all {
    position: absolute;
    right: auto;
    bottom: 14px;
    left: 14px;
    z-index: 5;
    width: auto;
    min-height: 36px;
    margin: 0;
    gap: 8px;
    border-radius: 8px;
  }

  .prestige-detail-photo-tour .detail-modal-header {
    min-height: 64px;
    padding: calc(10px + env(safe-area-inset-top)) 12px 10px;
  }

  .prestige-detail-photo-tour .detail-gallery-viewport {
    padding: 0 12px calc(56px + env(safe-area-inset-bottom));
  }

  .prestige-detail-photo-tour-nav {
    margin-bottom: 42px;
    padding-top: 12px;
    grid-auto-columns: 128px;
    gap: 10px;
  }

  .prestige-detail-photo-tour-nav button span {
    font-size: 11px;
  }

  .prestige-detail-photo-tour-room + .prestige-detail-photo-tour-room {
    margin-top: 58px;
  }

  .prestige-detail-photo-tour-room {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .prestige-detail-photo-tour-room h3 {
    position: static;
    margin-bottom: 16px;
    font-size: 30px;
  }

  .prestige-detail-photo-tour-room-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .prestige-detail-photo-tour .prestige-detail-photo-tour-room-grid figure:nth-child(5n + 1) {
    grid-column: auto;
  }

  .prestige-detail-photo-tour .detail-gallery-track figure[data-image-open]::after {
    display: none;
  }

  .prestige-detail-share-modal {
    align-items: end;
    padding: 0;
  }

  .prestige-detail-share-panel {
    width: 100%;
    max-height: 92svh;
    padding: 28px 20px calc(22px + env(safe-area-inset-bottom));
    border-radius: 22px 22px 0 0;
  }

  .prestige-detail-share-close {
    top: 14px;
    right: 14px;
  }

  .prestige-detail-share-panel h2 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .prestige-detail-share-property {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 13px;
  }

  .prestige-detail-share-property img {
    width: 74px;
    height: 62px;
  }

  .prestige-detail-share-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .prestige-detail-share-grid a,
  .prestige-detail-share-grid button {
    min-height: 56px;
  }

  .image-viewer-actions {
    gap: 6px;
  }

  .image-viewer-zoom {
    min-height: 40px;
    padding: 0 10px;
    font-size: 8px;
  }

  .image-viewer.is-suite-gallery-image {
    align-items: stretch;
    padding: 0;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-panel {
    height: 100svh;
    max-height: none;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-header {
    min-height: calc(66px + env(safe-area-inset-top));
    padding: calc(10px + env(safe-area-inset-top)) 8px 10px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-header h2 {
    max-width: 17ch;
    font-size: 23px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-header .eyebrow {
    font-size: 8px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-media img {
    padding: 8px 10px calc(68px + env(safe-area-inset-bottom));
  }

  .image-viewer.is-suite-gallery-image .image-viewer-close {
    width: auto;
    height: 44px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-close span {
    left: 10px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-share,
  .image-viewer.is-suite-gallery-image .image-viewer-close {
    padding-inline: 8px;
  }

  .image-viewer-carousel-button {
    top: auto;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
    transform: none;
  }

  .image-viewer-carousel-button.is-previous {
    left: 14px;
  }

  .image-viewer-carousel-button.is-next {
    right: 14px;
  }

  .image-viewer-carousel-button:hover:not(:disabled) {
    transform: scale(1.04);
  }

  .suite-prestige-hero .suite-detail-hero-media img {
    object-position: 42% center;
  }

  .prestige-detail-bedroom-stage .suite-sleeping-card figure {
    height: min(72vw, 430px);
  }

  .prestige-detail-bedroom-stage .suite-sleeping-card > div {
    display: block;
    padding: 22px 20px 24px;
  }

  .prestige-detail-bedroom-tabs button {
    padding: 8px;
  }

  .prestige-detail-bedroom-tabs button strong {
    font-size: 15px;
  }

  .prestige-detail-dining .suite-local-notes-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }

  .prestige-detail-dining .suite-local-notes-list article,
  .prestige-detail-dining .suite-local-notes-list article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .prestige-detail-space-modal {
    padding: 0;
  }

  .prestige-detail-space-modal-panel {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    border-radius: 0;
  }

  .prestige-detail-space-modal-panel .detail-modal-header {
    padding: calc(66px + env(safe-area-inset-top)) 20px 20px;
  }

  .prestige-detail-space-modal-panel .detail-modal-header h2 {
    font-size: 27px;
  }

  .prestige-detail-space-modal-panel .detail-modal-close {
    top: calc(12px + env(safe-area-inset-top));
    left: 12px;
  }

  .prestige-detail-space-story {
    padding: 0 20px calc(40px + env(safe-area-inset-bottom));
  }

  .prestige-detail-space-story-lead,
  .prestige-detail-space-story article > p {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .suite-prestige-hero .suite-detail-hero-media img {
    animation: none;
  }

  .prestige-detail-bedroom-stage .suite-sleeping-card.is-active {
    animation: none;
  }
}

/* Suite Prestige detail conversion layer ------------------------------------ */

.suite-prestige-hero .hero-title-location {
  max-width: 19ch;
  font-size: clamp(30px, 0.37em, 46px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.prestige-detail-booking-assurance {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(20, 35, 59, 0.13);
  list-style: none;
}

.suite-prestige-page .suite-widget-placeholder button {
  border-color: var(--prestige-detail-copper);
  background: var(--prestige-detail-copper);
}

.suite-detail-intro-copy h2 span {
  display: block;
}

.prestige-detail-booking-assurance li {
  position: relative;
  padding-left: 20px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.prestige-detail-booking-assurance li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--prestige-detail-copper);
  font-weight: 800;
}

.prestige-detail-booking-policy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.prestige-detail-booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.prestige-detail-booking-actions a,
.prestige-detail-booking-actions button {
  display: grid;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 35, 59, 0.25);
  background: transparent;
  color: var(--navy);
  font: 700 9px/1.35 var(--sans);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  place-items: center;
}

.prestige-detail-booking-actions a:hover,
.prestige-detail-booking-actions button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--ivory);
}

.prestige-detail-booking-actions a:focus-visible,
.prestige-detail-booking-actions button:focus-visible,
.prestige-detail-faq summary:focus-visible,
.prestige-detail-final-actions a:focus-visible,
.prestige-detail-final-actions button:focus-visible {
  outline: 2px solid var(--prestige-detail-copper);
  outline-offset: 3px;
}

.prestige-detail-conversion-section {
  padding: clamp(84px, 10vw, 148px) max(24px, calc((100vw - 1390px) / 2));
}

.prestige-detail-conversion-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(260px, 0.62fr);
  column-gap: clamp(48px, 8vw, 128px);
  align-items: end;
}

.prestige-detail-conversion-heading .eyebrow {
  grid-column: 1 / -1;
}

.prestige-detail-conversion-heading h2 {
  max-width: 13ch;
  margin: 12px 0 0;
  padding-bottom: 0.08em;
  color: var(--navy);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.prestige-detail-conversion-heading > p:not(.eyebrow) {
  max-width: 49ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.prestige-detail-why {
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  background: var(--ivory);
}

.prestige-detail-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(58px, 7vw, 92px);
  border-top: 1px solid rgba(20, 35, 59, 0.18);
  border-bottom: 1px solid rgba(20, 35, 59, 0.18);
}

.prestige-detail-why-grid article {
  min-height: 250px;
  padding: 26px clamp(20px, 2vw, 34px) 30px;
  border-right: 1px solid rgba(20, 35, 59, 0.16);
}

.prestige-detail-why-grid article:last-child {
  border-right: 0;
}

.prestige-detail-why-grid span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.prestige-detail-why-grid h3 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 0.98;
}

.prestige-detail-why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.prestige-detail-at-a-glance {
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  background: #eee5d9;
}

.prestige-detail-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(56px, 7vw, 88px) 0 0;
  border-top: 1px solid rgba(20, 35, 59, 0.18);
}

.prestige-detail-glance-grid div {
  min-height: 178px;
  padding: 26px clamp(20px, 2.2vw, 36px) 30px 0;
  border-bottom: 1px solid rgba(20, 35, 59, 0.16);
}

.prestige-detail-glance-grid div:not(:nth-child(3n + 1)) {
  padding-left: clamp(20px, 2.2vw, 36px);
  border-left: 1px solid rgba(20, 35, 59, 0.16);
}

.prestige-detail-glance-grid dt,
.prestige-detail-glance-grid dd {
  margin: 0;
}

.prestige-detail-glance-grid dt {
  color: var(--prestige-detail-copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prestige-detail-glance-grid dd {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.18;
}

.prestige-detail-amenity-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(30px, 4vw, 62px);
  border-top: 1px solid rgba(20, 35, 59, 0.14);
}

.prestige-detail-amenity-groups section {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  min-height: 150px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20, 35, 59, 0.14);
}

.prestige-detail-amenity-groups svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.prestige-detail-amenity-groups h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.prestige-detail-amenity-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.prestige-detail-location-lead,
.suite-location-copy > p:not(.eyebrow):not(.suite-location-address):not(.prestige-detail-location-lead) {
  max-width: 54ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.suite-location-copy > p.prestige-detail-location-lead {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(17px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

.suite-location-copy > p:not(.eyebrow):not(.suite-location-address):not(.prestige-detail-location-lead) {
  margin: 0 0 30px;
}

.prestige-detail-peace .suite-practical-list div {
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
}

.prestige-detail-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr);
  gap: clamp(64px, 9vw, 140px);
  border-top: 1px solid rgba(20, 35, 59, 0.1);
  background: var(--ivory);
}

.prestige-detail-faq .prestige-detail-conversion-heading {
  display: block;
  align-self: start;
}

.prestige-detail-faq .prestige-detail-conversion-heading h2 {
  max-width: 8ch;
}

.prestige-detail-faq .prestige-detail-conversion-heading > p:not(.eyebrow) {
  margin-top: 26px;
}

.prestige-detail-faq-list {
  border-top: 1px solid rgba(20, 35, 59, 0.2);
}

.prestige-detail-faq details {
  border-bottom: 1px solid rgba(20, 35, 59, 0.16);
}

.prestige-detail-faq summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.prestige-detail-faq summary::-webkit-details-marker {
  display: none;
}

.prestige-detail-faq summary::before,
.prestige-detail-faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1px;
  background: var(--navy);
  transition: transform 240ms ease;
}

.prestige-detail-faq summary::after {
  transform: rotate(90deg);
}

.prestige-detail-faq details[open] summary::after {
  transform: rotate(0deg);
}

.prestige-detail-faq details p {
  max-width: 66ch;
  margin: -4px 0 24px;
  padding-right: 52px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.prestige-detail-final-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(82px, 9vw, 132px) max(24px, calc((100vw - 1390px) / 2));
  background: var(--navy);
  color: var(--white);
  align-items: end;
}

.prestige-detail-final-booking h2 {
  margin: 12px 0 24px;
  color: var(--white);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.prestige-detail-final-booking > div > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

.prestige-detail-final-actions {
  display: grid;
  gap: 12px;
  min-width: min(310px, 100%);
}

.prestige-detail-final-actions a,
.prestige-detail-final-actions button {
  display: grid;
  min-height: 58px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  font: 800 10px/1.35 var(--sans);
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  place-items: center;
}

.prestige-detail-final-actions .prestige-detail-final-primary {
  border-color: var(--prestige-detail-copper);
  background: var(--prestige-detail-copper);
}

.prestige-detail-final-actions a:hover,
.prestige-detail-final-actions button:hover {
  border-color: #d2b675;
  background: #d2b675;
  color: var(--navy);
}

@media (min-width: 1180px) {
  .suite-prestige-page .suite-booking-card.is-suite-floating.is-over-hero {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .prestige-detail-booking-note,
  .suite-booking-card.is-suite-floating.is-over-hero .prestige-detail-booking-assurance,
  .suite-booking-card.is-suite-floating.is-over-hero .prestige-detail-booking-policy,
  .suite-booking-card.is-suite-floating.is-over-hero .prestige-detail-booking-actions {
    display: none;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-conversion-section,
  .apartment-detail-page.has-suite-floating-booking .prestige-detail-final-booking {
    padding-right: clamp(520px, 39vw, 610px);
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-conversion-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-why-grid,
  .apartment-detail-page.has-suite-floating-booking .prestige-detail-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-why-grid article:nth-child(2) {
    border-right: 0;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-why-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(20, 35, 59, 0.16);
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-glance-grid div:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-glance-grid div:nth-child(even) {
    padding-left: clamp(20px, 2.2vw, 36px);
    border-left: 1px solid rgba(20, 35, 59, 0.16);
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-faq {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-detail-final-booking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1179px) {
  .prestige-detail-conversion-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prestige-detail-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prestige-detail-why-grid article:nth-child(2) {
    border-right: 0;
  }

  .prestige-detail-why-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(20, 35, 59, 0.16);
  }

  .prestige-detail-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prestige-detail-glance-grid div:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .prestige-detail-glance-grid div:nth-child(even) {
    padding-left: clamp(20px, 3vw, 36px);
    border-left: 1px solid rgba(20, 35, 59, 0.16);
  }

  .prestige-detail-faq {
    grid-template-columns: minmax(240px, 0.65fr) minmax(360px, 1fr);
    gap: clamp(42px, 7vw, 80px);
  }
}

@media (max-width: 720px) {
  .prestige-detail-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 310px);
    margin-top: 16px;
  }

  .prestige-detail-hero-facts div {
    min-height: 44px;
    justify-content: flex-start;
    padding: 7px 12px;
  }

  .prestige-detail-hero-facts div:first-child,
  .prestige-detail-hero-facts div:nth-child(3) {
    padding-left: 0;
  }

  .prestige-detail-hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .prestige-detail-hero-facts dt {
    font-size: 34px;
  }

  .prestige-detail-hero-facts dd {
    font-size: 10.5px;
  }

  .suite-prestige-hero {
    min-height: max(820px, 100svh);
  }

  .suite-prestige-hero .hero-title-location {
    max-width: 18ch;
    font-size: 0.42em;
    line-height: 1.06;
  }

  .suite-prestige-hero .suite-detail-hero-copy > p:not(.eyebrow) {
    display: block;
    max-width: 34ch;
    margin: -8px 0 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .prestige-detail-booking-actions,
  .prestige-detail-why-grid,
  .prestige-detail-glance-grid,
  .prestige-detail-amenity-groups,
  .prestige-detail-faq,
  .prestige-detail-final-booking {
    grid-template-columns: 1fr;
  }

  .prestige-detail-host-band {
    padding: 0 20px;
  }

  .prestige-detail-host-card {
    min-height: 92px;
    gap: 14px;
    padding: 14px 0;
  }

  .prestige-detail-host-card img {
    width: 56px;
    height: 56px;
  }

  .prestige-detail-host-card h2 {
    display: block;
    font-size: 23px;
    line-height: 1.05;
  }

  .prestige-detail-host-card h2 span {
    display: block;
    margin-bottom: 5px;
    font-size: 9px;
  }

  .prestige-detail-bedroom-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prestige-detail-bedroom-tabs button:nth-child(2) {
    border-right: 0;
  }

  .prestige-detail-bedroom-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(20, 35, 59, 0.12);
  }

  .prestige-detail-conversion-section {
    padding: 76px 20px;
  }

  .prestige-detail-conversion-heading h2,
  .prestige-detail-faq .prestige-detail-conversion-heading h2 {
    max-width: 100%;
    font-size: clamp(46px, 14vw, 62px);
  }

  .prestige-detail-conversion-heading > p:not(.eyebrow) {
    font-size: 14px;
  }

  .prestige-detail-why-grid article,
  .prestige-detail-why-grid article:nth-child(2),
  .prestige-detail-why-grid article:last-child {
    min-height: 0;
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 35, 59, 0.16);
  }

  .prestige-detail-why-grid article:last-child {
    border-bottom: 0;
  }

  .prestige-detail-why-grid h3 {
    margin-top: 20px;
    font-size: 31px;
  }

  .prestige-detail-glance-grid div,
  .prestige-detail-glance-grid div:not(:nth-child(3n + 1)),
  .prestige-detail-glance-grid div:nth-child(even) {
    min-height: 0;
    padding: 22px 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 35, 59, 0.16);
    border-left: 0;
  }

  .prestige-detail-glance-grid dd {
    font-size: 23px;
  }

  .prestige-detail-amenity-groups section {
    min-height: 0;
  }

  .prestige-detail-peace .suite-practical-list div {
    grid-template-columns: 1fr;
  }

  .prestige-detail-faq {
    gap: 44px;
  }

  .prestige-detail-faq summary {
    padding: 22px 42px 22px 0;
    font-size: 23px;
  }

  .prestige-detail-faq details p {
    padding-right: 0;
  }

  .prestige-detail-final-booking {
    gap: 38px;
    padding: 76px 20px;
  }

  .prestige-detail-final-booking h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .prestige-detail-final-actions {
    min-width: 0;
  }

  .prestige-detail-mobile-booking {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(132px, 42%);
    gap: 10px;
    align-items: center;
  }

  .prestige-detail-mobile-booking > span {
    min-width: 0;
    color: var(--navy);
  }

  .prestige-detail-mobile-booking strong,
  .prestige-detail-mobile-booking small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .prestige-detail-mobile-booking strong {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
  }

  .prestige-detail-mobile-booking small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
}

/* Local guide carousel: all content remains in the HTML for search engines,
   while visitors read one larger, calmer panel at a time. */
.prestige-detail-local-carousel {
  margin-top: clamp(48px, 5vw, 68px);
  overflow-anchor: none;
}

.prestige-detail-local-carousel-controls {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.prestige-detail-local-carousel-tabs {
  display: flex;
  min-width: 0;
  gap: clamp(22px, 4vw, 58px);
}

.prestige-detail-local-carousel-tabs button {
  display: inline-flex;
  gap: 9px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--sans);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
}

.prestige-detail-local-carousel-tabs button span {
  color: #d2b16f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.prestige-detail-local-carousel-tabs button[aria-selected="true"] {
  border-bottom-color: #d2b16f;
  color: var(--white);
}

.prestige-detail-local-carousel-tabs button:hover {
  color: var(--white);
}

.prestige-detail-local-carousel-tabs button:focus-visible,
.prestige-detail-local-carousel-arrows button:focus-visible {
  outline: 2px solid #d2b16f;
  outline-offset: 5px;
}

.prestige-detail-local-carousel-arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.prestige-detail-local-carousel-arrows > span {
  min-width: 45px;
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.prestige-detail-local-carousel-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.prestige-detail-local-carousel-arrows button:hover {
  border-color: #d2b16f;
  background: #d2b16f;
  color: var(--navy);
}

.prestige-detail-local-carousel-arrows svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.prestige-detail-local-carousel-viewport {
  overflow: hidden;
  overflow-anchor: none;
}

.prestige-detail-local-carousel-track {
  display: flex;
  align-items: flex-start;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms var(--ease-luxury);
  will-change: transform;
}

.prestige-detail-local-carousel-track.is-jumping {
  transition: none;
}

.prestige-detail-local-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px) 1px 8px;
  overflow-anchor: none;
}

.prestige-detail-local-slide .prestige-detail-local-discovery,
.prestige-detail-local-slide .prestige-detail-local-restaurants,
.prestige-detail-local-slide .prestige-detail-local-practical {
  margin-top: 0;
}

.prestige-detail-local-slide .prestige-detail-local-column,
.prestige-detail-local-slide .prestige-detail-local-practical > section,
.prestige-detail-local-slide .suite-local-notes-list article,
.prestige-detail-local-slide .suite-local-notes-list article:last-child {
  padding-top: 0;
  border-top: 0;
}

.prestige-detail-local-slide .prestige-detail-local-column-heading {
  margin-bottom: 22px;
}

.prestige-detail-local-slide .prestige-detail-local-column-heading h3 {
  font-size: clamp(30px, 2.6vw, 39px);
}

.prestige-detail-local-slide .prestige-detail-local-places li {
  padding: 16px 0;
}

.prestige-detail-local-slide .prestige-detail-local-places a {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.5;
}

.prestige-detail-local-slide .prestige-detail-local-places li > span {
  font-size: 12px;
  line-height: 1.5;
}

.prestige-detail-local-slide .prestige-detail-local-subheading {
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1.44fr);
}

.prestige-detail-local-slide .prestige-detail-local-subheading h3 {
  font-size: clamp(41px, 4vw, 60px);
}

.prestige-detail-local-slide .suite-local-notes-list {
  margin-top: 28px;
}

.prestige-detail-local-slide .suite-local-notes-list article,
.prestige-detail-local-slide .suite-local-notes-list article:last-child {
  padding: 22px 0 26px;
  border-bottom-color: rgba(255, 255, 255, 0.24);
}

.prestige-detail-local-slide .suite-local-notes-list article > span {
  font-size: 11px;
}

.prestige-detail-local-slide .suite-local-notes-list h4 {
  font-size: clamp(34px, 3.2vw, 46px);
}

.prestige-detail-local-slide .suite-local-notes-list p {
  max-width: 37ch;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.62;
}

.prestige-detail-local-slide .suite-local-notes-list a {
  font-size: 12px;
}

.prestige-detail-local-slide .prestige-detail-local-practical {
  gap: clamp(34px, 5vw, 72px);
}

.prestige-detail-local-slide .prestige-detail-local-distance-note {
  margin-top: 22px;
  font-size: 11px;
}

@media (prefers-reduced-motion: reduce) {
  .prestige-detail-local-carousel-track,
  .prestige-detail-local-carousel-viewport {
    transition: none;
  }
}

@media (max-width: 820px) {
  .prestige-detail-local-carousel-controls {
    display: block;
  }

  .prestige-detail-local-carousel-tabs {
    width: 100%;
    gap: 28px;
    padding: 4px 2px 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .prestige-detail-local-carousel-tabs::-webkit-scrollbar {
    display: none;
  }

  .prestige-detail-local-carousel-arrows {
    justify-content: flex-end;
    margin-top: 16px;
  }

  .prestige-detail-local-slide {
    padding-top: 32px;
  }
}

@media (max-width: 720px) {
  .prestige-detail-local-carousel {
    margin-top: 38px;
  }

  .prestige-detail-local-carousel-tabs button {
    font-size: 15px;
  }

  .prestige-detail-local-slide .prestige-detail-local-discovery,
  .prestige-detail-local-slide .prestige-detail-local-practical,
  .prestige-detail-local-slide .suite-local-notes-list {
    gap: 32px;
  }

  .prestige-detail-local-slide .prestige-detail-local-column-heading h3 {
    font-size: 32px;
  }

  .prestige-detail-local-slide .prestige-detail-local-subheading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .prestige-detail-local-slide .prestige-detail-local-subheading h3 {
    font-size: 42px;
  }

  .prestige-detail-local-slide .suite-local-notes-list h4 {
    font-size: 37px;
  }
}

/* Mobile listing opening: lead with the real photo carousel, then present the
   property identity and practical facts in a compact booking summary. Desktop
   and tablet retain the cinematic hero. */
.prestige-detail-mobile-property-type {
  display: none;
}

.prestige-detail-mobile-summary-share {
  display: none;
}

@media (max-width: 720px) {
  .suite-prestige-page main#top {
    display: flex;
    flex-direction: column;
  }

  /* Keep the controls used most often on a phone comfortably tappable. */
  .suite-prestige-page .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .suite-prestige-hero .prestige-detail-mobile-summary-share {
    min-height: 44px;
  }

  .suite-prestige-page .prestige-detail-photo-preview .suite-carousel-view-all {
    min-height: 44px;
  }

  .suite-prestige-page .prestige-detail-calendar-toolbar {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .suite-prestige-page .prestige-detail-calendar-toolbar > button {
    width: 44px;
    height: 44px;
  }

  .suite-prestige-page .prestige-detail-local-carousel-tabs button {
    min-height: 44px;
    align-items: center;
  }

  .suite-prestige-page #gallery {
    order: -2;
  }

  .suite-prestige-page .suite-prestige-hero {
    display: block;
    order: -1;
    min-height: 0;
    padding: 0;
    background: var(--ivory);
    color: var(--navy);
  }

  .suite-prestige-hero::before,
  .suite-prestige-hero::after,
  .suite-prestige-hero .suite-detail-hero-media,
  .suite-prestige-hero .hero-scroll-cue {
    display: none;
  }

  .suite-prestige-hero .suite-detail-hero-copy {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 25px 20px 30px;
    color: var(--navy);
    text-align: left;
  }

  .suite-prestige-hero .suite-hero-folio {
    display: none;
  }

  .suite-prestige-hero .suite-detail-hero-copy h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 11vw, 44px);
    line-height: 0.96;
    text-shadow: none;
  }

  .suite-prestige-hero .hero-title-main,
  .suite-prestige-hero .hero-title-location {
    color: var(--navy);
  }

  .suite-prestige-hero .hero-title-location {
    max-width: none;
    margin-top: 7px;
    font-family: var(--sans);
    font-size: clamp(12px, 3.55vw, 14px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    white-space: nowrap;
  }

  .suite-prestige-hero .prestige-detail-mobile-summary-share {
    position: absolute;
    top: 25px;
    right: 20px;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(20, 35, 59, 0.22);
    border-radius: 999px;
    background: transparent;
    color: var(--navy);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .suite-prestige-hero .prestige-detail-mobile-summary-share svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .suite-prestige-hero .suite-detail-hero-copy > p.prestige-detail-mobile-property-type {
    display: block;
    max-width: none;
    margin: 20px 0 0;
    color: var(--navy);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.35;
  }

  .suite-prestige-hero .prestige-detail-hero-facts {
    display: flex;
    width: auto;
    max-width: none;
    margin: 9px 0 0;
    justify-content: flex-start;
    gap: 0;
  }

  .suite-prestige-hero .prestige-detail-hero-facts div,
  .suite-prestige-hero .prestige-detail-hero-facts div:first-child,
  .suite-prestige-hero .prestige-detail-hero-facts div:nth-child(2),
  .suite-prestige-hero .prestige-detail-hero-facts div:nth-child(3),
  .suite-prestige-hero .prestige-detail-hero-facts div:nth-child(4) {
    position: relative;
    display: inline-flex;
    min-height: 0;
    align-items: baseline;
    gap: 3px;
    padding: 0 8px;
    border: 0;
  }

  .suite-prestige-hero .prestige-detail-hero-facts div:first-child {
    padding-left: 0;
  }

  .suite-prestige-hero .prestige-detail-hero-facts div:last-child {
    padding-right: 0;
  }

  .suite-prestige-hero .prestige-detail-hero-facts div:not(:last-child)::after {
    content: "\00b7";
    position: absolute;
    top: 0;
    right: -2px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.4;
  }

  .suite-prestige-hero .prestige-detail-hero-facts dt,
  .suite-prestige-hero .prestige-detail-hero-facts div:nth-child(3) dt {
    color: var(--navy);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
    text-shadow: none;
  }

  .suite-prestige-hero .prestige-detail-hero-facts dd {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
    text-shadow: none;
    text-transform: none;
  }

  .suite-prestige-page .prestige-detail-photo-preview {
    position: relative;
  }

  .suite-prestige-page .prestige-detail-gallery-intro {
    display: contents;
  }

  .suite-prestige-page .prestige-detail-gallery-intro h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .suite-prestige-page .prestige-detail-gallery-intro .prestige-detail-photo-section-share {
    display: none;
  }

  .suite-prestige-page .prestige-detail-gallery-intro .prestige-detail-photo-section-share span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .suite-prestige-page .prestige-detail-gallery-intro .prestige-detail-photo-section-share svg {
    width: 20px;
    height: 20px;
  }

  .suite-prestige-page .prestige-detail-photo-preview .suite-carousel-slide,
  .suite-prestige-page .prestige-detail-photo-preview .suite-carousel-slide-wide {
    height: min(92vw, 460px);
  }
}

@media (max-width: 360px) {
  .suite-prestige-hero .suite-detail-hero-copy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .suite-prestige-hero .suite-detail-hero-copy h1 {
    padding-right: 48px;
    font-size: 36px;
    letter-spacing: -0.025em;
  }

  .suite-prestige-hero .prestige-detail-mobile-summary-share {
    right: 16px;
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .suite-prestige-hero .prestige-detail-mobile-summary-share span {
    display: none;
  }

  .suite-prestige-hero .prestige-detail-hero-facts div,
  .suite-prestige-hero .prestige-detail-hero-facts div:first-child,
  .suite-prestige-hero .prestige-detail-hero-facts div:nth-child(2),
  .suite-prestige-hero .prestige-detail-hero-facts div:nth-child(3),
  .suite-prestige-hero .prestige-detail-hero-facts div:nth-child(4) {
    padding-right: 5px;
    padding-left: 5px;
  }

  .suite-prestige-hero .prestige-detail-hero-facts div:first-child {
    padding-left: 0;
  }

  .suite-prestige-hero .prestige-detail-hero-facts div:last-child {
    padding-right: 0;
  }

  .suite-prestige-hero .prestige-detail-hero-facts dt,
  .suite-prestige-hero .prestige-detail-hero-facts div:nth-child(3) dt {
    font-size: 12px;
  }

  .suite-prestige-hero .prestige-detail-hero-facts dd {
    font-size: 10px;
  }

  .prestige-detail-mobile-booking {
    grid-template-columns: minmax(0, 1fr) 126px;
  }
}

/* Desktop listing opening: let the photography do the selling. The identity
   and practical facts form a restrained introduction, followed immediately
   by the Airbnb-style five-image preview. Mobile keeps its dedicated swipe
   gallery and summary unchanged. */
@media (min-width: 900px) {
  .suite-prestige-page .site-header {
    border-bottom: 1px solid rgba(20, 35, 59, 0.1);
    background: rgba(251, 248, 241, 0.97);
    box-shadow: none;
    color: var(--navy);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .suite-prestige-page .site-header .nav-cta {
    padding: 11px 18px;
    border: 1px solid var(--cta-terracotta);
    border-color: var(--cta-terracotta);
    background: var(--cta-terracotta);
    color: var(--white);
    white-space: nowrap;
  }

  .suite-prestige-page .suite-prestige-hero {
    display: block;
    min-height: 0;
    padding: 116px 0 28px;
    overflow: visible;
    background: var(--ivory);
    color: var(--navy);
  }

  .suite-prestige-page .suite-prestige-hero::before,
  .suite-prestige-page .suite-prestige-hero::after,
  .suite-prestige-page .suite-prestige-hero .suite-detail-hero-media,
  .suite-prestige-page .suite-prestige-hero .hero-scroll-cue {
    display: none;
  }

  .suite-prestige-page .suite-prestige-hero .suite-detail-hero-copy {
    display: grid;
    width: min(1500px, calc(100% - clamp(72px, 12vw, 160px)));
    max-width: none;
    margin: 0 auto;
    grid-template-areas:
      "folio facts"
      "title facts";
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(54px, 7vw, 112px);
    align-items: end;
  }

  .suite-prestige-page .suite-prestige-hero .suite-hero-folio {
    grid-area: folio;
    margin-bottom: 10px;
  }

  .suite-prestige-page .suite-prestige-hero .suite-hero-folio::after {
    background: rgba(179, 149, 91, 0.58);
  }

  .suite-prestige-page .suite-prestige-hero .suite-detail-hero-copy h1 {
    grid-area: title;
    max-width: none;
    margin: 0;
    color: var(--navy);
    font-size: clamp(48px, 4.5vw, 68px);
    line-height: 0.95;
    text-shadow: none;
  }

  .suite-prestige-page .suite-prestige-hero .hero-title-main {
    display: block;
    color: var(--navy);
    letter-spacing: -0.045em;
  }

  .suite-prestige-page .suite-prestige-hero .hero-title-location {
    display: block;
    max-width: none;
    margin-top: 9px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
  }

  .suite-prestige-page .suite-prestige-hero .prestige-detail-hero-facts {
    grid-area: facts;
    display: grid;
    width: auto;
    min-width: min(540px, 42vw);
    margin: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .suite-prestige-page .suite-prestige-hero .prestige-detail-hero-facts div {
    min-height: 60px;
    gap: 8px;
    padding: 0 clamp(14px, 1.4vw, 22px);
    border-right-color: rgba(20, 35, 59, 0.18);
  }

  .suite-prestige-page .suite-prestige-hero .prestige-detail-hero-facts dt {
    color: #a77e32;
    font-size: clamp(30px, 2.5vw, 38px);
    font-weight: 600;
    text-shadow: none;
  }

  .suite-prestige-page .suite-prestige-hero .prestige-detail-hero-facts dd {
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-shadow: none;
  }

  .suite-prestige-page .prestige-detail-photo-preview {
    margin-top: 0;
  }

  .suite-prestige-page .prestige-detail-gallery-intro {
    min-height: 102px;
    padding: 18px 0 22px;
  }

  .suite-prestige-page .prestige-detail-gallery-intro h2 {
    font-size: clamp(30px, 2.45vw, 42px);
  }

  .suite-prestige-page .suite-location-copy > p.prestige-detail-location-lead,
  .suite-prestige-page .suite-location-copy > p:not(.eyebrow):not(.suite-location-address):not(.prestige-detail-location-lead) {
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.65;
  }
}

@media (min-width: 1180px) {
  .suite-prestige-page.has-suite-floating-booking .suite-related {
    padding-right: max(24px, calc((100vw - 1390px) / 2));
  }

  .suite-prestige-page .suite-related-viewport {
    width: 100%;
    container-type: inline-size;
  }

  .suite-prestige-page .suite-related-grid {
    grid-auto-columns: calc((100cqi - 32px) / 3);
  }
}

.suite-prestige-editorial-page {
  --prestige-editorial-copper: #b7644f;
  --prestige-editorial-sand: #eee4d6;
}

/* Compact Airbnb-style decision details */
.prestige-editorial-things {
  padding: clamp(54px, 6vw, 82px) max(24px, calc((100vw - 1390px) / 2));
  border-bottom: 1px solid rgba(20, 35, 59, 0.12);
  background: #fff;
  color: var(--navy);
}

.prestige-editorial-things > h2 {
  margin: 0 0 clamp(30px, 4vw, 48px);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-editorial-things-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 76px);
}

.prestige-editorial-things-grid article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 18px;
  align-content: start;
}

.prestige-editorial-things-grid article > svg {
  width: 27px;
  height: 27px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.prestige-editorial-things-grid h3,
.prestige-editorial-policy-modal-content h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.prestige-editorial-things-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.prestige-editorial-things-grid a,
.prestige-editorial-things-grid button {
  display: inline-block;
  width: auto;
  margin: 9px 0 0;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

.prestige-editorial-things-grid a:hover,
.prestige-editorial-things-grid button:hover {
  color: var(--prestige-editorial-copper);
}

.prestige-editorial-things-grid a:focus-visible,
.prestige-editorial-things-grid button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.prestige-editorial-policy-modal-panel {
  width: min(760px, 100%);
  border: 0;
  border-radius: 24px;
  background: #fff;
}

.prestige-editorial-policy-modal-panel .detail-modal-header {
  margin-bottom: 34px;
}

.prestige-editorial-policy-modal-panel .detail-modal-header h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.prestige-editorial-policy-modal-panel .detail-modal-header > div > p:last-child:not(.eyebrow) {
  max-width: 54ch;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.prestige-editorial-policy-modal-content {
  color: var(--ink);
  font-family: var(--sans);
}

.prestige-editorial-policy-modal-content section + section {
  margin-top: 34px;
}

.prestige-editorial-policy-modal-content h3 {
  margin-bottom: 13px;
  font-size: 18px;
}

.prestige-editorial-policy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prestige-editorial-policy-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
  min-height: 62px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(20, 35, 59, 0.12);
  align-items: start;
}

.prestige-editorial-policy-list li:first-child {
  border-top: 1px solid rgba(20, 35, 59, 0.12);
}

.prestige-editorial-policy-list svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.prestige-editorial-policy-list li > span {
  padding-top: 2px;
  font-size: 15px;
  line-height: 1.5;
}

.prestige-editorial-safety-list strong,
.prestige-editorial-safety-list small {
  display: block;
}

.prestige-editorial-safety-list strong {
  color: var(--navy);
  font-size: 15px;
}

.prestige-editorial-safety-list small {
  max-width: 58ch;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.prestige-editorial-policy-additional {
  padding-top: 2px;
}

.prestige-editorial-policy-additional p {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
}

.prestige-editorial-policy-additional p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .prestige-editorial-things-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .prestige-editorial-things-grid article {
    padding: 24px 0;
    border-top: 1px solid rgba(20, 35, 59, 0.12);
  }

  .prestige-editorial-things-grid article:last-child {
    border-bottom: 1px solid rgba(20, 35, 59, 0.12);
  }
}

@media (max-width: 720px) {
  .prestige-editorial-things {
    padding: 52px 20px 58px;
  }

  .prestige-editorial-things > h2 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .prestige-editorial-policy-modal-panel {
    border-radius: 20px 20px 0 0;
  }

  .prestige-editorial-policy-modal-panel .detail-modal-header {
    margin-bottom: 28px;
  }

  .prestige-editorial-policy-modal-panel .detail-modal-header h2 {
    font-size: 42px;
  }
}

.detail-modal-panel.prestige-editorial-policy-modal-panel {
  width: min(760px, 100%);
  border: 0;
  background: #fff;
}

.suite-prestige-editorial-page [hidden] {
  display: none !important;
}

.prestige-editorial-host-band {
  padding: 0 max(24px, calc((100vw - 1390px) / 2));
  border-bottom: 1px solid rgba(20, 35, 59, 0.16);
  background: var(--ivory);
}

.prestige-editorial-host-card {
  display: flex;
  width: 100%;
  min-height: 116px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.prestige-editorial-host-card img {
  width: 68px;
  height: 68px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(179, 149, 91, 0.72), 0 8px 22px rgba(20, 35, 59, 0.12);
  object-fit: cover;
}

.prestige-editorial-host-card h2 {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.prestige-editorial-host-card h2 span {
  color: #9d7836;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.prestige-editorial-host-card::after {
  flex: 1 1 auto;
  height: 1px;
  margin-left: clamp(8px, 2vw, 28px);
  background: linear-gradient(90deg, rgba(179, 149, 91, 0.55), rgba(179, 149, 91, 0));
  content: "";
}

@media (min-width: 981px) {
  .prestige-editorial-host-band {
    width: min(1500px, calc(100% - clamp(72px, 12vw, 160px)));
    margin: 0 auto;
    padding: 0;
  }
}

.suite-prestige-editorial-page .suite-detail-intro {
  padding-top: clamp(44px, 4vw, 58px);
  padding-bottom: clamp(32px, 3vw, 48px);
}

.suite-prestige-editorial-page .suite-sleeping {
  padding-top: clamp(48px, 5vw, 72px);
}

.prestige-editorial-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 720px);
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.prestige-editorial-hero-facts div {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.prestige-editorial-hero-facts div:first-child {
  padding-left: 0;
}

.prestige-editorial-hero-facts div:last-child {
  border-right: 0;
}

.prestige-editorial-hero-facts dt,
.prestige-editorial-hero-facts dd {
  margin: 0;
}

.prestige-editorial-hero-facts dt {
  color: #e8c66d;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.84;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.prestige-editorial-hero-facts dd {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

.suite-prestige-editorial-hero {
  min-height: min(940px, 100svh);
}

.suite-prestige-editorial-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 15, 26, 0.62) 0%, rgba(8, 15, 26, 0.28) 47%, rgba(8, 15, 26, 0.04) 74%),
    linear-gradient(0deg, rgba(8, 15, 26, 0.5) 0%, rgba(8, 15, 26, 0.03) 58%);
}

.suite-prestige-editorial-hero .suite-detail-hero-media img {
  object-position: 50% 54%;
  transform: scale(1.015);
  animation: prestige-editorial-hero-arrive 1800ms var(--ease-luxury) both;
}

.suite-prestige-editorial-hero .suite-detail-hero-copy {
  max-width: 900px;
}

.prestige-editorial-photo-section-share {
  position: absolute;
  top: 6px;
  right: 0;
  z-index: 4;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  background: var(--navy);
  box-shadow: 0 7px 18px rgba(20, 35, 59, 0.13);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.prestige-editorial-photo-section-share:hover {
  background: var(--ivory);
  color: var(--navy);
  transform: translateY(-1px);
}

.prestige-editorial-photo-section-share:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.prestige-editorial-photo-section-share svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.suite-prestige-editorial-hero .hero-title-main {
  letter-spacing: -0.055em;
}

.suite-prestige-editorial-hero .suite-detail-hero-copy > p:not(.eyebrow) {
  max-width: 48ch;
}

.prestige-editorial-gallery-intro {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding: 26px 0 28px;
}

.prestige-editorial-gallery-intro h2 {
  max-width: 31ch;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.prestige-editorial-gallery-intro .prestige-editorial-photo-section-share {
  position: static;
  flex: 0 0 auto;
}

.suite-prestige-editorial-page .suite-sleeping-header h2 {
  padding-right: 0.4em;
  overflow: visible;
  clip-path: none;
}

.prestige-editorial-bedroom-showcase {
  min-width: 0;
}

.prestige-editorial-bedroom-stage {
  position: relative;
}

.prestige-editorial-bedroom-stage .suite-sleeping-card[hidden] {
  display: none;
}

.prestige-editorial-bedroom-stage .suite-sleeping-card.is-active {
  animation: prestige-editorial-bedroom-enter 620ms var(--ease-luxury) both;
}

.prestige-editorial-bedroom-stage .suite-sleeping-card figure {
  height: clamp(430px, 42vw, 620px);
}

.prestige-editorial-bedroom-stage .suite-sleeping-card img {
  object-position: center center;
}

.prestige-editorial-bedroom-stage .suite-sleeping-card > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 28px;
  padding: 25px 28px 27px;
  align-items: end;
}

.prestige-editorial-bedroom-stage .suite-sleeping-card span {
  grid-column: 1 / -1;
}

.prestige-editorial-bedroom-stage .suite-sleeping-card h3,
.prestige-editorial-bedroom-stage .suite-sleeping-card p {
  margin: 8px 0 0;
}

.prestige-editorial-bedroom-controls {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  margin-top: 16px;
}

.prestige-editorial-bedroom-arrow {
  display: grid;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(20, 35, 59, 0.28);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  place-items: center;
  transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.prestige-editorial-bedroom-arrow:hover,
.prestige-editorial-bedroom-arrow:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--ivory);
}

.prestige-editorial-bedroom-arrow:focus-visible,
.prestige-editorial-bedroom-tabs button:focus-visible {
  outline: 2px solid var(--prestige-editorial-copper);
  outline-offset: 3px;
}

.prestige-editorial-bedroom-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.prestige-editorial-bedroom-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 35, 59, 0.18);
  border-bottom: 1px solid rgba(20, 35, 59, 0.18);
}

.prestige-editorial-bedroom-tabs button {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 8px 14px;
  border: 0;
  border-right: 1px solid rgba(20, 35, 59, 0.12);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background-color 240ms ease, color 240ms ease;
}

.prestige-editorial-bedroom-tabs button:last-child {
  border-right: 0;
}

.prestige-editorial-bedroom-tabs button span {
  color: var(--prestige-editorial-copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.prestige-editorial-bedroom-tabs button strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prestige-editorial-bedroom-tabs button.is-active {
  background: var(--navy);
  color: var(--ivory);
}

.prestige-editorial-bedroom-tabs button.is-active span {
  color: #e2c785;
}

.prestige-editorial-bedroom-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.suite-prestige-editorial-page .prestige-editorial-sleeping-compact {
  display: block;
  padding: clamp(58px, 6vw, 82px) max(24px, calc((100vw - 1390px) / 2)) clamp(66px, 7vw, 96px);
}

.prestige-editorial-sleeping-inner {
  width: min(100%, 1080px);
}

.prestige-editorial-sleeping-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.prestige-editorial-sleeping-toolbar h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-editorial-sleeping-toolbar p {
  margin: 7px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
}

.prestige-editorial-sleeping-navigation {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.prestige-editorial-sleeping-navigation > span {
  margin-right: 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  white-space: nowrap;
}

.prestige-editorial-sleeping-navigation b {
  font-weight: 700;
}

.prestige-editorial-sleeping-navigation button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(20, 35, 59, 0.18);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--navy);
  cursor: pointer;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.prestige-editorial-sleeping-navigation button:hover,
.prestige-editorial-sleeping-navigation button:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--ivory);
}

.prestige-editorial-sleeping-navigation button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.prestige-editorial-sleeping-navigation button:disabled {
  opacity: 0.35;
  cursor: default;
}

.prestige-editorial-sleeping-navigation button:disabled:hover {
  border-color: rgba(20, 35, 59, 0.18);
  background: var(--ivory);
  color: var(--navy);
}

.prestige-editorial-sleeping-navigation svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prestige-editorial-sleeping-track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 3px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.prestige-editorial-sleeping-track::-webkit-scrollbar {
  display: none;
}

.prestige-editorial-sleep-card {
  flex: 0 0 calc((100% - 16px) / 2);
  min-width: 0;
  scroll-snap-align: start;
}

.prestige-editorial-sleep-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  object-fit: cover;
}

.prestige-editorial-sleep-card h3 {
  margin: 14px 0 4px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.prestige-editorial-sleep-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
}

@media (min-width: 1181px) {
  .suite-prestige-editorial-page.has-suite-floating-booking .prestige-editorial-sleeping-inner {
    width: min(760px, calc(100vw - 520px));
  }
}

@media (max-width: 720px) {
  .suite-prestige-editorial-page .prestige-editorial-sleeping-compact {
    padding: 46px 18px 62px;
  }

  .prestige-editorial-sleeping-toolbar {
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
  }

  .prestige-editorial-sleeping-toolbar h2 {
    font-size: 24px;
  }

  .prestige-editorial-sleeping-toolbar p {
    max-width: 20ch;
  }

  .prestige-editorial-sleeping-navigation > span {
    display: none;
  }

  .prestige-editorial-sleeping-navigation button {
    width: 36px;
    height: 36px;
  }

  .prestige-editorial-sleep-card {
    flex-basis: 84%;
  }
}

.prestige-editorial-booking-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.suite-prestige-editorial-page .suite-amenity-preview li {
  position: relative;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
}

.suite-prestige-editorial-page .suite-amenity-preview svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.35;
}

.suite-prestige-editorial-page .suite-amenity-preview .is-unavailable {
  color: var(--muted);
}

.suite-prestige-editorial-page .suite-amenity-preview .is-unavailable span {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.suite-prestige-editorial-page .prestige-editorial-amenities-simple {
  display: block;
  padding: clamp(64px, 7vw, 96px) max(24px, calc((100vw - 1390px) / 2));
  border-top: 1px solid rgba(20, 35, 59, 0.1);
  border-bottom: 1px solid rgba(20, 35, 59, 0.1);
  background: var(--ivory);
}

.prestige-editorial-amenities-inner {
  width: min(100%, 940px);
}

.prestige-editorial-amenities-inner > h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-editorial-amenities-simple .suite-amenity-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(34px, 6vw, 78px);
}

.suite-prestige-editorial-page .prestige-editorial-amenities-simple .suite-amenity-preview li {
  min-height: 54px;
  border: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}

.suite-prestige-editorial-page .prestige-editorial-amenities-simple .suite-amenity-preview svg {
  width: 27px;
  height: 27px;
}

.prestige-editorial-amenities-simple .button {
  min-height: 48px;
  margin-top: 22px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: rgba(20, 35, 59, 0.07);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.prestige-editorial-amenities-simple .button:hover,
.prestige-editorial-amenities-simple .button:focus-visible {
  background: var(--navy);
  color: var(--ivory);
}

.prestige-editorial-date-check {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding: clamp(64px, 7vw, 96px) max(24px, calc((100vw - 1390px) / 2));
  border-bottom: 1px solid rgba(20, 35, 59, 0.1);
  background: #fff;
}

.prestige-editorial-date-check-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-editorial-date-check-copy > p:not(.eyebrow) {
  max-width: 36ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
}

.prestige-editorial-date-check > .prestige-editorial-calendar-connection {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -12px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 35, 59, 0.1);
  color: rgba(20, 35, 59, 0.68);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  white-space: nowrap;
}

.prestige-editorial-date-check > .prestige-editorial-calendar-connection::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.prestige-editorial-calendar {
  min-width: 0;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
}

.prestige-editorial-calendar-toolbar {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: start;
}

.prestige-editorial-calendar-toolbar > button {
  display: grid;
  width: 38px;
  height: 38px;
  margin-top: 1px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  place-items: center;
}

.prestige-editorial-calendar-toolbar > button:hover,
.prestige-editorial-calendar-toolbar > button:focus-visible {
  background: rgba(20, 35, 59, 0.08);
}

.prestige-editorial-calendar-toolbar > button:focus-visible,
.prestige-editorial-calendar-day:focus-visible,
.prestige-editorial-calendar-footer button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.prestige-editorial-calendar-toolbar > button:disabled {
  opacity: 0.3;
  cursor: default;
}

.prestige-editorial-calendar-toolbar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.prestige-editorial-calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 50px);
}

.prestige-editorial-calendar-month h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.prestige-editorial-calendar-weekdays,
.prestige-editorial-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.prestige-editorial-calendar-weekdays {
  margin-bottom: 5px;
}

.prestige-editorial-calendar-weekdays span {
  color: rgba(20, 35, 59, 0.58);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

.prestige-editorial-calendar-day,
.prestige-editorial-calendar-blank {
  aspect-ratio: 1;
}

.prestige-editorial-calendar-day {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  place-items: center;
}

.prestige-editorial-calendar-day:hover:not(:disabled) {
  box-shadow: inset 0 0 0 1px var(--navy);
}

.prestige-editorial-calendar-day.is-in-range {
  border-radius: 0;
  background: rgba(179, 149, 91, 0.16);
}

.prestige-editorial-calendar-day.is-selected {
  border-radius: 50%;
  background: var(--navy);
  box-shadow: none;
  color: #fff;
}

.prestige-editorial-calendar-day.is-today:not(.is-selected)::after {
  position: absolute;
  right: 42%;
  bottom: 4px;
  left: 42%;
  height: 2px;
  border-radius: 2px;
  background: var(--prestige-editorial-copper);
  content: "";
}

.prestige-editorial-calendar-day:disabled {
  color: rgba(20, 35, 59, 0.24);
  cursor: default;
}

.prestige-editorial-calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 35, 59, 0.1);
}

.prestige-editorial-calendar-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
}

.prestige-editorial-calendar-footer button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.prestige-editorial-calendar-footer button:disabled {
  opacity: 0;
  pointer-events: none;
}

.prestige-editorial-lodgify-widget {
  --ldg-core-fontFamily: var(--sans);
  --ldg-psb-font-family: var(--sans);
  --ldg-psb-color-primary: var(--prestige-editorial-copper);
  --ldg-psb-color-primary-contrast: #fff;
  --ldg-psb-color-primary-darker: #a63d29;
  --ldg-psb-color-primary-lighter: #f6e2dc;
  --ldg-psb-background: transparent;
  --ldg-psb-input-background: #fff;
  --ldg-psb-border-radius: 12px;
  --ldg-psb-button-border-radius: 10px;
  --ldg-psb-box-shadow: none;
  width: 100%;
  min-width: 0;
  color: var(--navy);
  font-family: var(--sans);
}

.prestige-editorial-lodgify-widget #lodgify-search-bar {
  width: 100%;
  min-height: 76px;
  font-family: var(--sans);
}

.prestige-editorial-lodgify-widget #portable-search-bar,
.prestige-editorial-lodgify-widget #portable-search-bar * {
  font-family: var(--sans) !important;
}

.prestige-editorial-lodgify-widget-card {
  min-height: 94px;
}

.suite-booking-card .prestige-editorial-lodgify-widget-card #portable-search-bar {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.suite-booking-card .prestige-editorial-lodgify-widget-card #portable-search-bar > div:empty {
  display: none !important;
}

.suite-booking-card .prestige-editorial-lodgify-widget-card #portable-search-bar > button,
.suite-booking-card .prestige-editorial-lodgify-widget-card #portable-search-bar > a {
  width: 100% !important;
  max-width: none !important;
  min-height: 60px;
  margin: 0 !important;
}

.suite-booking-card .prestige-editorial-lodgify-widget-card #portable-search-bar > a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--prestige-editorial-copper) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

@media (min-width: 1181px) {
  .suite-prestige-editorial-page.has-suite-floating-booking .prestige-editorial-date-check {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-right: calc(clamp(48px, 5vw, 76px) + min(430px, 34vw) + 40px);
  }

  .suite-booking-card.is-suite-floating .prestige-editorial-lodgify-widget-card {
    min-height: 210px;
  }
}

@media (max-width: 820px) {
  .prestige-editorial-date-check {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (min-width: 1181px) {
  .suite-prestige-editorial-page.has-suite-floating-booking .prestige-editorial-amenities-inner {
    width: min(760px, calc(100vw - 520px));
  }
}

@media (max-width: 720px) {
  .suite-prestige-editorial-page .prestige-editorial-amenities-simple {
    padding: 54px 18px 62px;
  }

  .prestige-editorial-date-check {
    padding: 54px 18px 62px;
  }

  .prestige-editorial-amenities-inner > h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .prestige-editorial-amenities-simple .suite-amenity-preview {
    grid-template-columns: 1fr;
  }

  .suite-prestige-editorial-page .prestige-editorial-amenities-simple .suite-amenity-preview li {
    min-height: 50px;
  }

  .prestige-editorial-calendar {
    padding: 0;
    border-radius: 0;
  }

  .prestige-editorial-calendar-toolbar {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 5px;
  }

  .prestige-editorial-calendar-toolbar > button {
    width: 34px;
    height: 34px;
  }

  .prestige-editorial-calendar-months {
    grid-template-columns: 1fr;
  }

  .prestige-editorial-calendar-month:nth-child(2) {
    display: none;
  }

  .prestige-editorial-calendar-day {
    font-size: 13px;
  }

  .prestige-editorial-date-check > .prestige-editorial-calendar-connection {
    margin-top: 0;
    white-space: normal;
  }
}

.prestige-editorial-amenities-modal {
  width: min(860px, 100%);
}

.prestige-editorial-amenities-modal .detail-modal-header {
  margin-bottom: clamp(36px, 5vw, 58px);
}

.prestige-editorial-amenities-modal .amenities-modal-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.prestige-editorial-amenities-modal .amenities-modal-grid section {
  padding: 0 0 clamp(34px, 5vw, 48px);
}

.prestige-editorial-amenities-modal .amenities-modal-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.prestige-editorial-amenities-modal .amenities-modal-grid li {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  min-height: 66px;
  padding: 15px 0;
}

.prestige-editorial-amenities-modal .amenity-modal-icon {
  width: 27px;
  height: 27px;
  stroke-width: 1.3;
}

.amenity-modal-copy {
  display: grid;
  gap: 4px;
  line-height: 1.4;
}

.amenity-modal-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.prestige-editorial-amenities-modal .amenities-not-included {
  padding-bottom: 0;
}

.prestige-editorial-amenities-modal .amenities-not-included del {
  color: var(--muted);
  text-decoration-thickness: 1px;
}

.suite-prestige-editorial-page .practical-modal-list dd {
  overflow-wrap: anywhere;
}

.suite-intro-show-more {
  display: inline-flex;
  min-height: 48px;
  gap: 12px;
  margin-top: 24px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(20, 35, 59, 0.07);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  align-items: center;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease;
}

.suite-intro-show-more:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.suite-intro-show-more:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.suite-intro-show-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.prestige-editorial-space-modal-panel {
  width: min(780px, 100%);
  max-height: min(800px, 90svh);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--ivory);
  scrollbar-width: thin;
}

.prestige-editorial-space-modal .detail-modal-backdrop {
  background: rgba(20, 27, 39, 0.48);
  backdrop-filter: none;
}

.prestige-editorial-space-modal-panel .detail-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: block;
  margin: 0;
  padding: 68px 34px 24px;
  background: var(--ivory);
}

.prestige-editorial-space-modal-panel .detail-modal-header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.prestige-editorial-space-modal-panel .detail-modal-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  border: 0;
}

.prestige-editorial-space-modal-panel .detail-modal-close span {
  left: 10px;
  width: 18px;
}

.prestige-editorial-space-story {
  display: block;
  padding: 0 34px 38px;
}

.prestige-editorial-space-story-lead {
  max-width: none;
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

.prestige-editorial-space-story article {
  padding: 0;
  border: 0;
}

.prestige-editorial-space-story h3 {
  max-width: none;
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.prestige-editorial-space-story article > p {
  max-width: none;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

.prestige-editorial-space-story article > p:last-child {
  margin-bottom: 0;
}

.prestige-editorial-space-story-note {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.prestige-editorial-space-story-note a {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-weight: 700;
}

.prestige-editorial-registration-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.prestige-editorial-registration-details h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.prestige-editorial-registration-details dl,
.prestige-editorial-registration-details dt,
.prestige-editorial-registration-details dd {
  margin: 0;
}

.prestige-editorial-registration-details dl {
  display: grid;
  gap: 20px;
}

.prestige-editorial-registration-details dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.prestige-editorial-registration-details dd {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

@media (min-width: 721px) {
  .suite-prestige-editorial-page .prestige-editorial-things-modal-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 clamp(24px, 4vw, 48px);
  }
}

.prestige-editorial-dining {
  display: block;
}

.prestige-editorial-dining .suite-local-notes-header {
  display: block;
  max-width: 820px;
  margin-bottom: 0;
}

.prestige-editorial-dining .suite-local-notes-header h2 {
  max-width: none;
  font-family: var(--serif);
  font-size: clamp(54px, 5.6vw, 80px);
  font-weight: 500;
  white-space: normal;
}

.prestige-editorial-dining .suite-local-notes-header > p:not(.eyebrow) {
  max-width: 60ch;
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}

.prestige-editorial-local-discovery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 7vw, 100px);
  margin-top: clamp(56px, 6vw, 82px);
}

.prestige-editorial-local-column,
.prestige-editorial-local-practical > section {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.prestige-editorial-local-column-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.prestige-editorial-local-column-heading svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #e2c785;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.prestige-editorial-local-column-heading h3,
.prestige-editorial-local-subheading h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.prestige-editorial-local-places {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prestige-editorial-local-places li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: baseline;
}

.prestige-editorial-local-places a {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease;
}

.prestige-editorial-local-places a:hover {
  color: #e2c785;
}

.prestige-editorial-local-places a:focus-visible {
  outline: 2px solid #d2b16f;
  outline-offset: 4px;
}

.prestige-editorial-local-places li > span {
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  text-align: right;
  white-space: nowrap;
}

.prestige-editorial-local-restaurants {
  margin-top: clamp(72px, 8vw, 108px);
}

.prestige-editorial-local-subheading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.prestige-editorial-local-subheading .eyebrow {
  margin: 0;
  color: #d2b16f;
}

.prestige-editorial-local-subheading h3 {
  font-size: clamp(36px, 4vw, 58px);
}

.prestige-editorial-dining .suite-local-notes-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
  margin-top: 34px;
}

.prestige-editorial-dining .suite-local-notes-list article,
.prestige-editorial-dining .suite-local-notes-list article:last-child {
  min-height: 0;
  padding: 24px 0 28px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.prestige-editorial-dining .suite-local-notes-list article:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  transform: none;
}

.prestige-editorial-dining .suite-local-notes-list h4 {
  max-width: 18ch;
  margin: 10px 0 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.prestige-editorial-local-practical {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
  margin-top: clamp(76px, 8vw, 112px);
}

.prestige-editorial-local-practical .prestige-editorial-local-column-heading h3 {
  font-size: clamp(25px, 2.1vw, 32px);
}

.prestige-editorial-local-practical .prestige-editorial-local-places li {
  grid-template-columns: minmax(0, 1fr);
  gap: 3px;
  padding: 12px 0;
}

.prestige-editorial-local-practical .prestige-editorial-local-places li > span {
  text-align: left;
  white-space: normal;
}

.prestige-editorial-local-distance-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 1179px) {
  .suite-mobile-booking.is-hidden-over-guide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 110%, 0);
    transition:
      opacity 220ms ease,
      transform 360ms var(--ease-luxury),
      visibility 0s 360ms;
  }
}

@media (min-width: 1180px) {
  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-local-guide {
    padding-right: max(24px, calc((100vw - 1390px) / 2));
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-local-guide .suite-local-notes-header {
    max-width: 820px;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-local-guide .suite-local-notes-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 44px);
    margin-top: 34px;
  }
}

@media (max-width: 980px) {
  .prestige-editorial-local-discovery,
  .prestige-editorial-local-practical {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .prestige-editorial-dining .suite-local-notes-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .prestige-editorial-local-subheading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .prestige-editorial-local-practical {
    margin-top: 72px;
  }
}

@media (max-width: 720px) {
  .prestige-editorial-dining .suite-local-notes-header h2 {
    font-size: clamp(40px, 11.8vw, 50px);
    letter-spacing: -0.035em;
    line-height: 1;
    white-space: nowrap;
  }

  .prestige-editorial-local-discovery {
    margin-top: 48px;
  }

  .prestige-editorial-local-places li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .prestige-editorial-local-places li > span {
    text-align: left;
  }

  .prestige-editorial-local-restaurants {
    margin-top: 64px;
  }

  .prestige-editorial-local-subheading h3 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .prestige-editorial-dining .suite-local-notes-list {
    margin-top: 26px;
  }
}

.prestige-editorial-entrance-story .suite-detail-cta-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.suite-prestige-editorial-page .detail-gallery-track figure:nth-child(4n + 2) img,
.suite-prestige-editorial-page .detail-gallery-track figure:nth-child(4n + 3) img {
  object-position: center center;
}

/* Airbnb-inspired gallery preview: one decisive image followed by four
   supporting views. The complete, ordered photo tour remains one click away. */
.prestige-editorial-photo-preview [data-gallery-preview] {
  cursor: pointer;
}

.prestige-editorial-photo-preview [data-gallery-preview]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.suite-photo-grid-icon {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  gap: 2px;
}

.suite-photo-grid-icon i {
  width: 4px;
  height: 4px;
  border: 1px solid currentColor;
}

@media (min-width: 981px) {
  .prestige-editorial-photo-preview {
    width: min(1500px, calc(100% - clamp(72px, 12vw, 160px)));
    margin: 0 auto;
    padding: 0;
    border-radius: 14px;
    background: var(--ivory);
  }

  .prestige-editorial-gallery-intro h2 {
    max-width: none;
    font-size: clamp(30px, 2.7vw, 44px);
    white-space: nowrap;
  }

  .prestige-editorial-photo-preview .suite-carousel-viewport {
    overflow: visible;
  }

  .prestige-editorial-photo-preview .suite-carousel-track {
    display: grid;
    width: 100%;
    height: clamp(400px, 31vw, 620px);
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide,
  .prestige-editorial-photo-preview .suite-carousel-slide-wide {
    width: auto;
    height: auto;
    min-width: 0;
    margin: 0;
    flex: none;
    scroll-snap-align: none;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide:nth-child(n + 6),
  .prestige-editorial-photo-preview .suite-carousel-meta,
  .prestige-editorial-photo-preview .suite-carousel-control {
    display: none;
  }

  .prestige-editorial-photo-preview .suite-carousel-view-all {
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 10px;
  }
}

/* The full gallery follows Airbnb's visual-tour pattern: a vertically
   scrollable sequence with generous images, alternating full-width moments
   and paired supporting angles. */
.prestige-editorial-photo-tour {
  padding: 0;
  background: var(--ivory);
}

.prestige-editorial-photo-tour .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;
}

.prestige-editorial-film-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.prestige-editorial-film-play svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  fill: currentColor;
  stroke: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.prestige-editorial-film-play:hover svg,
.prestige-editorial-film-play:focus-visible svg {
  background: var(--white);
  color: var(--navy);
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .prestige-editorial-entrance-story .suite-detail-cta-media video {
    display: none;
  }

  .prestige-editorial-entrance-story .suite-detail-cta-media {
    background: url("../assets/videos/pdg15-suite-prestige-apartment-walkthrough-poster.jpg") center / cover no-repeat;
  }
}

.prestige-editorial-photo-tour .detail-modal-backdrop {
  display: none;
}

.prestige-editorial-photo-tour .detail-gallery-panel {
  width: 100%;
  height: 100svh;
  max-height: 100svh;
  padding: 0;
  border: 0;
  background: var(--ivory);
  box-shadow: none;
}

.prestige-editorial-photo-tour .detail-modal-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 0;
  background: var(--ivory);
}

.prestige-editorial-photo-tour-back,
.prestige-editorial-photo-tour-share {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--navy);
}

.prestige-editorial-photo-tour-back {
  width: 44px;
  padding: 0;
  border-radius: 50%;
}

.prestige-editorial-photo-tour-back:hover,
.prestige-editorial-photo-tour-share:hover {
  background: rgba(20, 35, 59, 0.06);
}

.prestige-editorial-photo-tour-back svg,
.prestige-editorial-photo-tour-share svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prestige-editorial-photo-tour-share {
  gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prestige-editorial-photo-tour .detail-gallery-viewport {
  min-height: 0;
  padding: 0 20px clamp(52px, 7vw, 96px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-block: contain;
  scroll-snap-type: none;
  scrollbar-width: thin;
  touch-action: pan-y;
}

.prestige-editorial-photo-tour .detail-gallery-viewport::-webkit-scrollbar {
  display: block;
  width: 8px;
}

.prestige-editorial-photo-tour .detail-gallery-viewport::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(20, 35, 59, 0.26);
}

.prestige-editorial-photo-tour .detail-gallery-track {
  display: block;
  width: min(100%, 1120px);
  height: auto;
  margin: 0 auto;
}

.prestige-editorial-photo-tour-nav {
  display: grid;
  width: min(100%, 1120px);
  margin: 0 auto clamp(52px, 6vw, 82px);
  padding: 22px 0 8px;
  grid-auto-columns: minmax(104px, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.prestige-editorial-photo-tour-nav::-webkit-scrollbar {
  display: none;
}

.prestige-editorial-photo-tour-nav button {
  display: grid;
  min-width: 0;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
}

.prestige-editorial-photo-tour-nav button img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.42 / 1;
  border-radius: 4px;
  object-fit: cover;
  transition: filter 180ms ease, transform 220ms var(--ease-luxury);
}

.prestige-editorial-photo-tour-nav button:hover img {
  filter: brightness(0.94);
  transform: scale(1.015);
}

.prestige-editorial-photo-tour-nav button span {
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prestige-editorial-photo-tour-room + .prestige-editorial-photo-tour-room {
  margin-top: clamp(62px, 8vw, 106px);
}

.prestige-editorial-photo-tour-room {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.prestige-editorial-photo-tour-room h3 {
  position: sticky;
  top: 24px;
  align-self: start;
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.prestige-editorial-photo-tour-room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.prestige-editorial-photo-tour .detail-gallery-track figure {
  display: block;
  height: auto;
  scroll-snap-align: none;
}

.prestige-editorial-photo-tour .prestige-editorial-photo-tour-room-grid figure:nth-child(5n + 1) {
  grid-column: 1 / -1;
}

.prestige-editorial-photo-tour .prestige-editorial-photo-tour-room-grid figure:last-child:nth-child(even) {
  grid-column: 1 / -1;
}

.prestige-editorial-photo-tour .detail-gallery-track img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.prestige-editorial-photo-tour .prestige-editorial-photo-tour-walkthrough {
  grid-column: 1 / -1;
}

.prestige-editorial-photo-tour .prestige-editorial-photo-tour-walkthrough video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #080f1a;
  object-fit: contain;
}

.prestige-editorial-photo-tour .detail-gallery-track figcaption {
  display: none;
}

.prestige-editorial-photo-tour .detail-gallery-track figure[data-image-open]::after {
  display: none;
}

.prestige-editorial-photo-tour .detail-gallery-footer {
  display: none;
}

.image-viewer.is-suite-gallery-image {
  padding: 0;
  background: var(--navy);
  color: var(--white);
  place-items: stretch;
}

.image-viewer.is-suite-gallery-image .image-viewer-backdrop {
  background: var(--navy);
}

.image-viewer.is-suite-gallery-image .image-viewer-panel {
  width: 100%;
  height: 100svh;
  max-height: none;
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--navy);
  box-shadow: none;
}

.image-viewer.is-suite-gallery-image .image-viewer-header {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 76px;
  padding: 14px clamp(18px, 3vw, 42px);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  border-bottom: 0;
  background: var(--navy);
  color: var(--white);
  align-items: center;
}

.image-viewer.is-suite-gallery-image .image-viewer-header .eyebrow,
.image-viewer.is-suite-gallery-image .image-viewer-header h2 {
  display: none;
}

.image-viewer.is-suite-gallery-image .image-viewer-header > div:first-child {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
}

.image-viewer.is-suite-gallery-image .image-viewer-actions {
  display: contents;
}

.image-viewer-counter {
  margin: 0;
  color: rgba(20, 35, 59, 0.62);
  font: 800 9px/1.2 var(--sans);
  letter-spacing: 0.14em;
}

.image-viewer.is-suite-gallery-image .image-viewer-counter {
  display: block;
  margin: 0;
  color: var(--white);
  font: 700 13px/1 var(--sans);
  letter-spacing: 0.08em;
}

.image-viewer-close strong {
  display: none;
}

.image-viewer.is-suite-gallery-image .image-viewer-zoom,
.image-viewer.is-suite-gallery-image .image-viewer-share,
.image-viewer.is-suite-gallery-image .image-viewer-close {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.image-viewer.is-suite-gallery-image .image-viewer-zoom {
  display: none;
}

.image-viewer.is-suite-gallery-image .image-viewer-close {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-self: start;
  gap: 10px;
  padding: 0 10px;
}

.image-viewer.is-suite-gallery-image .image-viewer-close strong {
  display: inline;
  font: 600 13px/1 var(--sans);
}

.image-viewer.is-suite-gallery-image .image-viewer-close span {
  left: 10px;
  width: 16px;
  background: currentColor;
}

.image-viewer.is-suite-gallery-image .image-viewer-close span:first-of-type {
  transform: rotate(45deg);
}

.image-viewer.is-suite-gallery-image .image-viewer-close span:nth-of-type(2) {
  transform: rotate(-45deg);
}

.image-viewer.is-suite-gallery-image .image-viewer-close strong {
  margin-left: 20px;
}

.image-viewer.is-suite-gallery-image .image-viewer-share {
  grid-column: 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 0 10px;
  font: 600 13px/1 var(--sans);
}

.image-viewer.is-suite-gallery-image .image-viewer-share svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.image-viewer.is-suite-gallery-image .image-viewer-share span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.image-viewer.is-suite-gallery-image .image-viewer-share:hover,
.image-viewer.is-suite-gallery-image .image-viewer-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.image-viewer.is-suite-gallery-image .image-viewer-close:focus-visible {
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
}

.image-viewer.is-suite-gallery-image .image-viewer-media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: default;
  touch-action: pan-y pinch-zoom;
}

.image-viewer.is-suite-gallery-image .image-viewer-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  padding: clamp(12px, 2vw, 30px) clamp(72px, 7vw, 112px) clamp(18px, 3vw, 42px);
  object-fit: contain;
  cursor: default;
  user-select: none;
}

.image-viewer-carousel-button[hidden] {
  display: none;
}

.image-viewer-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(20, 35, 59, 0.56);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
  place-items: center;
}

.image-viewer-carousel-button.is-previous {
  left: clamp(16px, 2.8vw, 42px);
}

.image-viewer-carousel-button.is-next {
  right: clamp(16px, 2.8vw, 42px);
}

.image-viewer-carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.image-viewer-carousel-button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.06);
}

.image-viewer-carousel-button:disabled {
  opacity: 0.26;
  cursor: default;
}

.image-viewer-carousel-button:focus-visible {
  outline: 2px solid #d2b675;
  outline-offset: 4px;
}

.image-viewer.is-suite-gallery-image.is-zoomed .image-viewer-carousel-button {
  opacity: 0;
  pointer-events: none;
}

.image-viewer.is-suite-gallery-image.is-zoomed .image-viewer-media img {
  width: 200%;
  height: auto;
  max-height: none;
  padding: 0;
}

.prestige-editorial-share-modal[hidden] {
  display: none;
}

.prestige-editorial-share-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  padding: 24px;
  place-items: center;
}

.prestige-editorial-share-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(20, 35, 59, 0.48);
  backdrop-filter: blur(3px);
}

.prestige-editorial-share-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: min(90svh, 820px);
  padding: clamp(28px, 4vw, 44px);
  overflow-y: auto;
  border: 1px solid rgba(20, 35, 59, 0.12);
  border-radius: 24px;
  background: var(--ivory);
  box-shadow: 0 34px 100px rgba(20, 35, 59, 0.25);
}

.prestige-editorial-share-panel h2 {
  max-width: calc(100% - 54px);
  margin: 0 0 26px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  line-height: 0.98;
}

.prestige-editorial-share-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
}

.prestige-editorial-share-close:hover {
  background: rgba(20, 35, 59, 0.06);
}

.prestige-editorial-share-close span {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.prestige-editorial-share-close span:first-child {
  transform: rotate(45deg);
}

.prestige-editorial-share-close span:last-child {
  transform: rotate(-45deg);
}

.prestige-editorial-share-property {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.prestige-editorial-share-property img {
  width: 92px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.prestige-editorial-share-property p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.prestige-editorial-share-property strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.prestige-editorial-share-property span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.prestige-editorial-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.prestige-editorial-share-grid a,
.prestige-editorial-share-grid button {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border: 1px solid rgba(20, 35, 59, 0.2);
  border-radius: 10px;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.prestige-editorial-share-grid a:hover,
.prestige-editorial-share-grid button:hover {
  border-color: var(--navy);
  background: rgba(20, 35, 59, 0.04);
}

.prestige-editorial-share-grid svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.prestige-editorial-share-grid svg.prestige-editorial-share-brand-icon {
  fill: currentColor;
  stroke: none;
}

.prestige-editorial-share-status {
  min-height: 18px;
  margin: 16px 0 0;
  color: var(--sage);
  font-size: 12px;
  font-weight: 650;
}

@keyframes prestige-editorial-hero-arrive {
  from {
    opacity: 0.72;
    transform: scale(1.055);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes prestige-editorial-bedroom-enter {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1181px) and (max-width: 1680px) {
  .suite-prestige-editorial-page.has-suite-floating-booking .suite-sleeping {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(44px, 5vw, 64px);
  }

  .suite-prestige-editorial-page.has-suite-floating-booking .suite-sleeping-header {
    max-width: none;
  }

  .suite-prestige-editorial-page.has-suite-floating-booking .suite-sleeping-header h2 {
    max-width: none;
    padding-right: 0;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    white-space: nowrap;
  }

  .suite-prestige-editorial-page.has-suite-floating-booking .prestige-editorial-bedroom-stage .suite-sleeping-card figure {
    height: clamp(420px, 41vw, 560px);
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .suite-prestige-editorial-page .suite-sleeping-header {
    max-width: none;
  }

  .suite-prestige-editorial-page .suite-sleeping-header h2 {
    max-width: none;
    padding-right: 0;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .suite-prestige-editorial-hero {
    min-height: 820px;
  }

  .suite-prestige-editorial-hero::before {
    background:
      linear-gradient(0deg, rgba(8, 15, 26, 0.7) 0%, rgba(8, 15, 26, 0.28) 55%, rgba(8, 15, 26, 0.1) 100%),
      linear-gradient(90deg, rgba(8, 15, 26, 0.44), rgba(8, 15, 26, 0.03));
  }

  .suite-prestige-editorial-hero .suite-detail-hero-media img {
    object-position: 46% center;
  }

}

@media (max-width: 980px) {
  .prestige-editorial-photo-preview {
    padding-top: 0;
  }

  .prestige-editorial-photo-section-share {
    right: 18px;
  }
}

@media (max-width: 720px) {
  .suite-prestige-editorial-hero {
    min-height: 760px;
  }

  .suite-prestige-editorial-page .suite-sleeping-header {
    padding-right: 12px;
  }

  .suite-prestige-editorial-page .suite-sleeping-header h2 {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 58px);
  }

  .prestige-editorial-photo-preview {
    padding: 0;
    overflow: hidden;
    background: var(--ivory);
  }

  .prestige-editorial-photo-preview .suite-carousel-track {
    gap: 0;
  }

  .prestige-editorial-photo-preview .suite-carousel-viewport {
    scroll-behavior: auto;
  }

  .prestige-editorial-gallery-intro {
    flex-direction: column;
    min-height: 0;
    align-items: stretch;
    gap: 14px;
    padding: 24px 18px 18px;
  }

  .prestige-editorial-gallery-intro h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.02;
    white-space: normal;
  }

  .prestige-editorial-gallery-intro .prestige-editorial-photo-section-share {
    align-self: flex-end;
    min-height: 40px;
    padding: 0 13px;
    border-color: rgba(20, 35, 59, 0.34);
    background: transparent;
    box-shadow: none;
    color: var(--navy);
  }

  .prestige-editorial-photo-preview .suite-carousel-slide,
  .prestige-editorial-photo-preview .suite-carousel-slide-wide {
    height: min(78vw, 520px);
    flex-basis: 100vw;
    background: var(--ivory);
    scroll-snap-stop: always;
  }

  .prestige-editorial-photo-preview .suite-carousel-slide img,
  .prestige-editorial-photo-preview .suite-carousel-slide:hover img {
    filter: saturate(0.9) contrast(1.015) brightness(0.995);
    transform: none;
    transition: none;
  }

  .prestige-editorial-photo-preview .suite-carousel-control {
    display: none;
  }

  .prestige-editorial-photo-preview .suite-carousel-meta {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 5;
    width: auto;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(20, 35, 59, 0.82);
    color: var(--white);
    pointer-events: none;
  }

  .prestige-editorial-photo-preview .suite-carousel-count {
    color: var(--white);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
  }

  .prestige-editorial-photo-preview .suite-carousel-label {
    display: none;
  }

  .prestige-editorial-photo-preview .suite-carousel-view-all {
    position: absolute;
    right: auto;
    bottom: 14px;
    left: 14px;
    z-index: 5;
    width: auto;
    min-height: 36px;
    margin: 0;
    gap: 8px;
    border-radius: 8px;
  }

  .prestige-editorial-photo-tour .detail-modal-header {
    min-height: 64px;
    padding: calc(10px + env(safe-area-inset-top)) 12px 10px;
  }

  .prestige-editorial-photo-tour .detail-gallery-viewport {
    padding: 0 12px calc(56px + env(safe-area-inset-bottom));
  }

  .prestige-editorial-photo-tour-nav {
    margin-bottom: 42px;
    padding-top: 12px;
    grid-auto-columns: 128px;
    gap: 10px;
  }

  .prestige-editorial-photo-tour-nav button span {
    font-size: 11px;
  }

  .prestige-editorial-photo-tour-room + .prestige-editorial-photo-tour-room {
    margin-top: 58px;
  }

  .prestige-editorial-photo-tour-room {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .prestige-editorial-photo-tour-room h3 {
    position: static;
    margin-bottom: 16px;
    font-size: 30px;
  }

  .prestige-editorial-photo-tour-room-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .prestige-editorial-photo-tour .prestige-editorial-photo-tour-room-grid figure:nth-child(5n + 1) {
    grid-column: auto;
  }

  .prestige-editorial-photo-tour .prestige-editorial-photo-tour-room-grid figure:last-child:nth-child(even) {
    grid-column: auto;
  }

  .prestige-editorial-photo-tour .detail-gallery-track figure[data-image-open]::after {
    display: none;
  }

  .prestige-editorial-share-modal {
    align-items: end;
    padding: 0;
  }

  .prestige-editorial-share-panel {
    width: 100%;
    max-height: 92svh;
    padding: 28px 20px calc(22px + env(safe-area-inset-bottom));
    border-radius: 22px 22px 0 0;
  }

  .prestige-editorial-share-close {
    top: 14px;
    right: 14px;
  }

  .prestige-editorial-share-panel h2 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .prestige-editorial-share-property {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 13px;
  }

  .prestige-editorial-share-property img {
    width: 74px;
    height: 62px;
  }

  .prestige-editorial-share-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .prestige-editorial-share-grid a,
  .prestige-editorial-share-grid button {
    min-height: 56px;
  }

  .image-viewer-actions {
    gap: 6px;
  }

  .image-viewer-zoom {
    min-height: 40px;
    padding: 0 10px;
    font-size: 8px;
  }

  .image-viewer.is-suite-gallery-image {
    align-items: stretch;
    padding: 0;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-panel {
    height: 100svh;
    max-height: none;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-header {
    min-height: calc(66px + env(safe-area-inset-top));
    padding: calc(10px + env(safe-area-inset-top)) 8px 10px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-header h2 {
    max-width: 17ch;
    font-size: 23px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-header .eyebrow {
    font-size: 8px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-media img {
    padding: 8px 10px calc(68px + env(safe-area-inset-bottom));
  }

  .image-viewer.is-suite-gallery-image .image-viewer-close {
    width: auto;
    height: 44px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-close span {
    left: 10px;
  }

  .image-viewer.is-suite-gallery-image .image-viewer-share,
  .image-viewer.is-suite-gallery-image .image-viewer-close {
    padding-inline: 8px;
  }

  .image-viewer-carousel-button {
    top: auto;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
    transform: none;
  }

  .image-viewer-carousel-button.is-previous {
    left: 14px;
  }

  .image-viewer-carousel-button.is-next {
    right: 14px;
  }

  .image-viewer-carousel-button:hover:not(:disabled) {
    transform: scale(1.04);
  }

  .suite-prestige-editorial-hero .suite-detail-hero-media img {
    object-position: 42% center;
  }

  .prestige-editorial-bedroom-stage .suite-sleeping-card figure {
    height: min(72vw, 430px);
  }

  .prestige-editorial-bedroom-stage .suite-sleeping-card > div {
    display: block;
    padding: 22px 20px 24px;
  }

  .prestige-editorial-bedroom-tabs button {
    padding: 8px;
  }

  .prestige-editorial-bedroom-tabs button strong {
    font-size: 15px;
  }

  .prestige-editorial-dining .suite-local-notes-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }

  .prestige-editorial-dining .suite-local-notes-list article,
  .prestige-editorial-dining .suite-local-notes-list article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .prestige-editorial-space-modal {
    padding: 0;
  }

  .prestige-editorial-space-modal-panel {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    border-radius: 0;
  }

  .prestige-editorial-space-modal-panel .detail-modal-header {
    padding: calc(66px + env(safe-area-inset-top)) 20px 20px;
  }

  .prestige-editorial-space-modal-panel .detail-modal-header h2 {
    font-size: 27px;
  }

  .prestige-editorial-space-modal-panel .detail-modal-close {
    top: calc(12px + env(safe-area-inset-top));
    left: 12px;
  }

  .prestige-editorial-space-story {
    padding: 0 20px calc(40px + env(safe-area-inset-bottom));
  }

  .prestige-editorial-space-story-lead,
  .prestige-editorial-space-story article > p {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .suite-prestige-editorial-hero .suite-detail-hero-media img {
    animation: none;
  }

  .prestige-editorial-bedroom-stage .suite-sleeping-card.is-active {
    animation: none;
  }
}

/* Suite Prestige editorial conversion layer --------------------------------- */

.suite-prestige-editorial-hero .hero-title-location {
  max-width: 19ch;
  font-size: clamp(30px, 0.37em, 46px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.prestige-editorial-booking-assurance {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(20, 35, 59, 0.13);
  list-style: none;
}

.suite-prestige-editorial-page .suite-widget-placeholder button {
  border-color: var(--prestige-editorial-copper);
  background: var(--prestige-editorial-copper);
}

.suite-detail-intro-copy h2 span {
  display: block;
}

.prestige-editorial-booking-assurance li {
  position: relative;
  padding-left: 20px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.prestige-editorial-booking-assurance li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--prestige-editorial-copper);
  font-weight: 800;
}

.prestige-editorial-booking-policy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.prestige-editorial-booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.prestige-editorial-booking-actions a,
.prestige-editorial-booking-actions button {
  display: grid;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 35, 59, 0.25);
  background: transparent;
  color: var(--navy);
  font: 700 9px/1.35 var(--sans);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  place-items: center;
}

.prestige-editorial-booking-actions a:hover,
.prestige-editorial-booking-actions button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--ivory);
}

.prestige-editorial-booking-actions a:focus-visible,
.prestige-editorial-booking-actions button:focus-visible,
.prestige-editorial-faq summary:focus-visible,
.prestige-editorial-final-actions a:focus-visible,
.prestige-editorial-final-actions button:focus-visible {
  outline: 2px solid var(--prestige-editorial-copper);
  outline-offset: 3px;
}

.prestige-editorial-conversion-section {
  padding: clamp(84px, 10vw, 148px) max(24px, calc((100vw - 1390px) / 2));
}

.prestige-editorial-conversion-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(260px, 0.62fr);
  column-gap: clamp(48px, 8vw, 128px);
  align-items: end;
}

.prestige-editorial-conversion-heading .eyebrow {
  grid-column: 1 / -1;
}

.prestige-editorial-conversion-heading h2 {
  max-width: 13ch;
  margin: 12px 0 0;
  padding-bottom: 0.08em;
  color: var(--navy);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.prestige-editorial-conversion-heading > p:not(.eyebrow) {
  max-width: 49ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.prestige-editorial-why {
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  background: var(--ivory);
}

.prestige-editorial-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(58px, 7vw, 92px);
  border-top: 1px solid rgba(20, 35, 59, 0.18);
  border-bottom: 1px solid rgba(20, 35, 59, 0.18);
}

.prestige-editorial-why-grid article {
  min-height: 250px;
  padding: 26px clamp(20px, 2vw, 34px) 30px;
  border-right: 1px solid rgba(20, 35, 59, 0.16);
}

.prestige-editorial-why-grid article:last-child {
  border-right: 0;
}

.prestige-editorial-why-grid span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.prestige-editorial-why-grid h3 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 0.98;
}

.prestige-editorial-why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.prestige-editorial-at-a-glance {
  border-top: 1px solid rgba(20, 35, 59, 0.08);
  background: #eee5d9;
}

.prestige-editorial-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(56px, 7vw, 88px) 0 0;
  border-top: 1px solid rgba(20, 35, 59, 0.18);
}

.prestige-editorial-glance-grid div {
  min-height: 178px;
  padding: 26px clamp(20px, 2.2vw, 36px) 30px 0;
  border-bottom: 1px solid rgba(20, 35, 59, 0.16);
}

.prestige-editorial-glance-grid div:not(:nth-child(3n + 1)) {
  padding-left: clamp(20px, 2.2vw, 36px);
  border-left: 1px solid rgba(20, 35, 59, 0.16);
}

.prestige-editorial-glance-grid dt,
.prestige-editorial-glance-grid dd {
  margin: 0;
}

.prestige-editorial-glance-grid dt {
  color: var(--prestige-editorial-copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prestige-editorial-glance-grid dd {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.18;
}

.prestige-editorial-amenity-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(30px, 4vw, 62px);
  border-top: 1px solid rgba(20, 35, 59, 0.14);
}

.prestige-editorial-amenity-groups section {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  min-height: 150px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20, 35, 59, 0.14);
}

.prestige-editorial-amenity-groups svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.prestige-editorial-amenity-groups h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.prestige-editorial-amenity-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.prestige-editorial-location-lead,
.suite-location-copy > p:not(.eyebrow):not(.suite-location-address):not(.prestige-editorial-location-lead) {
  max-width: 54ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.suite-location-copy > p.prestige-editorial-location-lead {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(17px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

.suite-location-copy > p:not(.eyebrow):not(.suite-location-address):not(.prestige-editorial-location-lead) {
  margin: 0 0 30px;
}

.prestige-editorial-peace .suite-practical-list div {
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
}

.prestige-editorial-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr);
  gap: clamp(64px, 9vw, 140px);
  border-top: 1px solid rgba(20, 35, 59, 0.1);
  background: var(--ivory);
}

.prestige-editorial-faq .prestige-editorial-conversion-heading {
  display: block;
  align-self: start;
}

.prestige-editorial-faq .prestige-editorial-conversion-heading h2 {
  max-width: 8ch;
}

.prestige-editorial-faq .prestige-editorial-conversion-heading > p:not(.eyebrow) {
  margin-top: 26px;
}

.prestige-editorial-faq-list {
  border-top: 1px solid rgba(20, 35, 59, 0.2);
}

.prestige-editorial-faq details {
  border-bottom: 1px solid rgba(20, 35, 59, 0.16);
}

.prestige-editorial-faq summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.prestige-editorial-faq summary::-webkit-details-marker {
  display: none;
}

.prestige-editorial-faq summary::before,
.prestige-editorial-faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1px;
  background: var(--navy);
  transition: transform 240ms ease;
}

.prestige-editorial-faq summary::after {
  transform: rotate(90deg);
}

.prestige-editorial-faq details[open] summary::after {
  transform: rotate(0deg);
}

.prestige-editorial-faq details p {
  max-width: 66ch;
  margin: -4px 0 24px;
  padding-right: 52px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.prestige-editorial-final-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(82px, 9vw, 132px) max(24px, calc((100vw - 1390px) / 2));
  background: var(--navy);
  color: var(--white);
  align-items: end;
}

.prestige-editorial-final-booking h2 {
  margin: 12px 0 24px;
  color: var(--white);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.prestige-editorial-final-booking > div > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

.prestige-editorial-final-actions {
  display: grid;
  gap: 12px;
  min-width: min(310px, 100%);
}

.prestige-editorial-final-actions a,
.prestige-editorial-final-actions button {
  display: grid;
  min-height: 58px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  font: 800 10px/1.35 var(--sans);
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  place-items: center;
}

.prestige-editorial-final-actions .prestige-editorial-final-primary {
  border-color: var(--prestige-editorial-copper);
  background: var(--prestige-editorial-copper);
}

.prestige-editorial-final-actions a:hover,
.prestige-editorial-final-actions button:hover {
  border-color: #d2b675;
  background: #d2b675;
  color: var(--navy);
}

@media (min-width: 1180px) {
  .suite-prestige-editorial-page .suite-booking-card.is-suite-floating.is-over-hero {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .suite-booking-card.is-suite-floating.is-over-hero .prestige-editorial-booking-note,
  .suite-booking-card.is-suite-floating.is-over-hero .prestige-editorial-booking-assurance,
  .suite-booking-card.is-suite-floating.is-over-hero .prestige-editorial-booking-policy,
  .suite-booking-card.is-suite-floating.is-over-hero .prestige-editorial-booking-actions {
    display: none;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-conversion-section,
  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-final-booking {
    padding-right: clamp(520px, 39vw, 610px);
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-conversion-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-why-grid,
  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-why-grid article:nth-child(2) {
    border-right: 0;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-why-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(20, 35, 59, 0.16);
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-glance-grid div:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-glance-grid div:nth-child(even) {
    padding-left: clamp(20px, 2.2vw, 36px);
    border-left: 1px solid rgba(20, 35, 59, 0.16);
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-faq {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .apartment-detail-page.has-suite-floating-booking .prestige-editorial-final-booking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1179px) {
  .prestige-editorial-conversion-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prestige-editorial-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prestige-editorial-why-grid article:nth-child(2) {
    border-right: 0;
  }

  .prestige-editorial-why-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(20, 35, 59, 0.16);
  }

  .prestige-editorial-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prestige-editorial-glance-grid div:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .prestige-editorial-glance-grid div:nth-child(even) {
    padding-left: clamp(20px, 3vw, 36px);
    border-left: 1px solid rgba(20, 35, 59, 0.16);
  }

  .prestige-editorial-faq {
    grid-template-columns: minmax(240px, 0.65fr) minmax(360px, 1fr);
    gap: clamp(42px, 7vw, 80px);
  }
}

@media (max-width: 720px) {
  .prestige-editorial-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 310px);
    margin-top: 16px;
  }

  .prestige-editorial-hero-facts div {
    min-height: 44px;
    justify-content: flex-start;
    padding: 7px 12px;
  }

  .prestige-editorial-hero-facts div:first-child,
  .prestige-editorial-hero-facts div:nth-child(3) {
    padding-left: 0;
  }

  .prestige-editorial-hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .prestige-editorial-hero-facts dt {
    font-size: 34px;
  }

  .prestige-editorial-hero-facts dd {
    font-size: 10.5px;
  }

  .suite-prestige-editorial-hero {
    min-height: max(820px, 100svh);
  }

  .suite-prestige-editorial-hero .hero-title-location {
    max-width: 18ch;
    font-size: 0.42em;
    line-height: 1.06;
  }

  .suite-prestige-editorial-hero .suite-detail-hero-copy > p:not(.eyebrow) {
    display: block;
    max-width: 34ch;
    margin: -8px 0 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .prestige-editorial-booking-actions,
  .prestige-editorial-why-grid,
  .prestige-editorial-glance-grid,
  .prestige-editorial-amenity-groups,
  .prestige-editorial-faq,
  .prestige-editorial-final-booking {
    grid-template-columns: 1fr;
  }

  .prestige-editorial-host-band {
    padding: 0 20px;
  }

  .prestige-editorial-host-card {
    min-height: 92px;
    gap: 14px;
    padding: 14px 0;
  }

  .prestige-editorial-host-card img {
    width: 56px;
    height: 56px;
  }

  .prestige-editorial-host-card h2 {
    display: block;
    font-size: 23px;
    line-height: 1.05;
  }

  .prestige-editorial-host-card h2 span {
    display: block;
    margin-bottom: 5px;
    font-size: 9px;
  }

  .prestige-editorial-bedroom-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prestige-editorial-bedroom-tabs button:nth-child(2) {
    border-right: 0;
  }

  .prestige-editorial-bedroom-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(20, 35, 59, 0.12);
  }

  .prestige-editorial-conversion-section {
    padding: 76px 20px;
  }

  .prestige-editorial-conversion-heading h2,
  .prestige-editorial-faq .prestige-editorial-conversion-heading h2 {
    max-width: 100%;
    font-size: clamp(46px, 14vw, 62px);
  }

  .prestige-editorial-conversion-heading > p:not(.eyebrow) {
    font-size: 14px;
  }

  .prestige-editorial-why-grid article,
  .prestige-editorial-why-grid article:nth-child(2),
  .prestige-editorial-why-grid article:last-child {
    min-height: 0;
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 35, 59, 0.16);
  }

  .prestige-editorial-why-grid article:last-child {
    border-bottom: 0;
  }

  .prestige-editorial-why-grid h3 {
    margin-top: 20px;
    font-size: 31px;
  }

  .prestige-editorial-glance-grid div,
  .prestige-editorial-glance-grid div:not(:nth-child(3n + 1)),
  .prestige-editorial-glance-grid div:nth-child(even) {
    min-height: 0;
    padding: 22px 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 35, 59, 0.16);
    border-left: 0;
  }

  .prestige-editorial-glance-grid dd {
    font-size: 23px;
  }

  .prestige-editorial-amenity-groups section {
    min-height: 0;
  }

  .prestige-editorial-peace .suite-practical-list div {
    grid-template-columns: 1fr;
  }

  .prestige-editorial-faq {
    gap: 44px;
  }

  .prestige-editorial-faq summary {
    padding: 22px 42px 22px 0;
    font-size: 23px;
  }

  .prestige-editorial-faq details p {
    padding-right: 0;
  }

  .prestige-editorial-final-booking {
    gap: 38px;
    padding: 76px 20px;
  }

  .prestige-editorial-final-booking h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .prestige-editorial-final-actions {
    min-width: 0;
  }

  .prestige-editorial-mobile-booking {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(132px, 42%);
    gap: 10px;
    align-items: center;
  }

  .prestige-editorial-mobile-booking > span {
    min-width: 0;
    color: var(--navy);
  }

  .prestige-editorial-mobile-booking strong,
  .prestige-editorial-mobile-booking small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .prestige-editorial-mobile-booking strong {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
  }

  .prestige-editorial-mobile-booking small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
}

/* Local guide carousel: all content remains in the HTML for search engines,
   while visitors read one larger, calmer panel at a time. */
.prestige-editorial-local-carousel {
  margin-top: clamp(48px, 5vw, 68px);
  overflow-anchor: none;
}

.prestige-editorial-local-carousel-controls {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.prestige-editorial-local-carousel-tabs {
  display: flex;
  min-width: 0;
  gap: clamp(22px, 4vw, 58px);
}

.prestige-editorial-local-carousel-tabs button {
  display: inline-flex;
  gap: 9px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--sans);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
}

.prestige-editorial-local-carousel-tabs button span {
  color: #d2b16f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.prestige-editorial-local-carousel-tabs button[aria-selected="true"] {
  border-bottom-color: #d2b16f;
  color: var(--white);
}

.prestige-editorial-local-carousel-tabs button:hover {
  color: var(--white);
}

.prestige-editorial-local-carousel-tabs button:focus-visible,
.prestige-editorial-local-carousel-arrows button:focus-visible {
  outline: 2px solid #d2b16f;
  outline-offset: 5px;
}

.prestige-editorial-local-carousel-arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.prestige-editorial-local-carousel-arrows > span {
  min-width: 45px;
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.prestige-editorial-local-carousel-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.prestige-editorial-local-carousel-arrows button:hover {
  border-color: #d2b16f;
  background: #d2b16f;
  color: var(--navy);
}

.prestige-editorial-local-carousel-arrows svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.prestige-editorial-local-carousel-viewport {
  overflow: hidden;
  overflow-anchor: none;
}

.prestige-editorial-local-carousel-track {
  display: flex;
  align-items: flex-start;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms var(--ease-luxury);
  will-change: transform;
}

.prestige-editorial-local-carousel-track.is-jumping {
  transition: none;
}

.prestige-editorial-local-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px) 1px 8px;
  overflow-anchor: none;
}

.prestige-editorial-local-slide .prestige-editorial-local-discovery,
.prestige-editorial-local-slide .prestige-editorial-local-restaurants,
.prestige-editorial-local-slide .prestige-editorial-local-practical {
  margin-top: 0;
}

.prestige-editorial-local-slide .prestige-editorial-local-column,
.prestige-editorial-local-slide .prestige-editorial-local-practical > section,
.prestige-editorial-local-slide .suite-local-notes-list article,
.prestige-editorial-local-slide .suite-local-notes-list article:last-child {
  padding-top: 0;
  border-top: 0;
}

.prestige-editorial-local-slide .prestige-editorial-local-column-heading {
  margin-bottom: 22px;
}

.prestige-editorial-local-slide .prestige-editorial-local-column-heading h3 {
  font-size: clamp(30px, 2.6vw, 39px);
}

.prestige-editorial-local-slide .prestige-editorial-local-places li {
  padding: 16px 0;
}

.prestige-editorial-local-slide .prestige-editorial-local-places a {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.5;
}

.prestige-editorial-local-slide .prestige-editorial-local-places li > span {
  font-size: 12px;
  line-height: 1.5;
}

.prestige-editorial-local-slide .prestige-editorial-local-subheading {
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1.44fr);
}

.prestige-editorial-local-slide .prestige-editorial-local-subheading h3 {
  font-size: clamp(41px, 4vw, 60px);
}

.prestige-editorial-local-slide .suite-local-notes-list {
  margin-top: 28px;
}

.prestige-editorial-local-slide .suite-local-notes-list article,
.prestige-editorial-local-slide .suite-local-notes-list article:last-child {
  padding: 22px 0 26px;
  border-bottom-color: rgba(255, 255, 255, 0.24);
}

.prestige-editorial-local-slide .suite-local-notes-list article > span {
  font-size: 11px;
}

.prestige-editorial-local-slide .suite-local-notes-list h4 {
  font-size: clamp(34px, 3.2vw, 46px);
}

.prestige-editorial-local-slide .suite-local-notes-list p {
  max-width: 37ch;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.62;
}

.prestige-editorial-local-slide .suite-local-notes-list a {
  font-size: 12px;
}

.prestige-editorial-local-slide .prestige-editorial-local-practical {
  gap: clamp(34px, 5vw, 72px);
}

.prestige-editorial-local-slide .prestige-editorial-local-distance-note {
  margin-top: 22px;
  font-size: 11px;
}

@media (prefers-reduced-motion: reduce) {
  .prestige-editorial-local-carousel-track,
  .prestige-editorial-local-carousel-viewport {
    transition: none;
  }
}

@media (max-width: 820px) {
  .prestige-editorial-local-carousel-controls {
    display: block;
  }

  .prestige-editorial-local-carousel-tabs {
    width: 100%;
    gap: 28px;
    padding: 4px 2px 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .prestige-editorial-local-carousel-tabs::-webkit-scrollbar {
    display: none;
  }

  .prestige-editorial-local-carousel-arrows {
    justify-content: flex-end;
    margin-top: 16px;
  }

  .prestige-editorial-local-slide {
    padding-top: 32px;
  }
}

@media (max-width: 720px) {
  .prestige-editorial-local-carousel {
    margin-top: 38px;
  }

  .prestige-editorial-local-carousel-tabs button {
    font-size: 15px;
  }

  .prestige-editorial-local-slide .prestige-editorial-local-discovery,
  .prestige-editorial-local-slide .prestige-editorial-local-practical,
  .prestige-editorial-local-slide .suite-local-notes-list {
    gap: 32px;
  }

  .prestige-editorial-local-slide .prestige-editorial-local-column-heading h3 {
    font-size: 32px;
  }

  .prestige-editorial-local-slide .prestige-editorial-local-subheading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .prestige-editorial-local-slide .prestige-editorial-local-subheading h3 {
    font-size: 42px;
  }

  .prestige-editorial-local-slide .suite-local-notes-list h4 {
    font-size: 37px;
  }
}

/* Mobile listing opening: lead with the real photo carousel, then present the
   property identity and practical facts in a compact booking summary. Desktop
   and tablet retain the cinematic hero. */
.prestige-editorial-mobile-property-type {
  display: none;
}

.prestige-editorial-mobile-summary-share {
  display: none;
}

@media (max-width: 720px) {
  .suite-prestige-editorial-page main#top {
    display: flex;
    flex-direction: column;
  }

  /* Keep the controls used most often on a phone comfortably tappable. */
  .suite-prestige-editorial-page .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .suite-prestige-editorial-hero .prestige-editorial-mobile-summary-share {
    min-height: 44px;
  }

  .suite-prestige-editorial-page .prestige-editorial-photo-preview .suite-carousel-view-all {
    min-height: 44px;
  }

  .suite-prestige-editorial-page .prestige-editorial-calendar-toolbar {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .suite-prestige-editorial-page .prestige-editorial-calendar-toolbar > button {
    width: 44px;
    height: 44px;
  }

  .suite-prestige-editorial-page .prestige-editorial-local-carousel-tabs button {
    min-height: 44px;
    align-items: center;
  }

  .suite-prestige-editorial-page #gallery {
    order: -2;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero {
    display: block;
    order: -1;
    min-height: 0;
    padding: 0;
    background: var(--ivory);
    color: var(--navy);
  }

  .suite-prestige-editorial-hero::before,
  .suite-prestige-editorial-hero::after,
  .suite-prestige-editorial-hero .suite-detail-hero-media,
  .suite-prestige-editorial-hero .hero-scroll-cue {
    display: none;
  }

  .suite-prestige-editorial-hero .suite-detail-hero-copy {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 25px 20px 30px;
    color: var(--navy);
    text-align: left;
  }

  .suite-prestige-editorial-hero .suite-hero-folio {
    display: none;
  }

  .suite-prestige-editorial-hero .suite-detail-hero-copy h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 11vw, 44px);
    line-height: 0.96;
    text-shadow: none;
  }

  .suite-prestige-editorial-hero .hero-title-main,
  .suite-prestige-editorial-hero .hero-title-location {
    color: var(--navy);
  }

  .suite-prestige-editorial-hero .hero-title-location {
    max-width: none;
    margin-top: 7px;
    font-family: var(--sans);
    font-size: clamp(12px, 3.55vw, 14px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    white-space: nowrap;
  }

  .suite-prestige-editorial-hero .prestige-editorial-mobile-summary-share {
    position: absolute;
    top: 25px;
    right: 20px;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(20, 35, 59, 0.22);
    border-radius: 999px;
    background: transparent;
    color: var(--navy);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .suite-prestige-editorial-hero .prestige-editorial-mobile-summary-share svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .suite-prestige-editorial-hero .suite-detail-hero-copy > p.prestige-editorial-mobile-property-type {
    display: block;
    max-width: none;
    margin: 20px 0 0;
    color: var(--navy);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.35;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts {
    display: flex;
    width: auto;
    max-width: none;
    margin: 9px 0 0;
    justify-content: flex-start;
    gap: 0;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div,
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:first-child,
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:nth-child(2),
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:nth-child(3),
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:nth-child(4) {
    position: relative;
    display: inline-flex;
    min-height: 0;
    align-items: baseline;
    gap: 3px;
    padding: 0 8px;
    border: 0;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:first-child {
    padding-left: 0;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:last-child {
    padding-right: 0;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:not(:last-child)::after {
    content: "\00b7";
    position: absolute;
    top: 0;
    right: -2px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.4;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts dt,
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:nth-child(3) dt {
    color: var(--navy);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
    text-shadow: none;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts dd {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
    text-shadow: none;
    text-transform: none;
  }

  .suite-prestige-editorial-page .prestige-editorial-photo-preview {
    position: relative;
  }

  .suite-prestige-editorial-page .prestige-editorial-gallery-intro {
    display: contents;
  }

  .suite-prestige-editorial-page .prestige-editorial-gallery-intro h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .suite-prestige-editorial-page .prestige-editorial-gallery-intro .prestige-editorial-photo-section-share {
    display: none;
  }

  .suite-prestige-editorial-page .prestige-editorial-gallery-intro .prestige-editorial-photo-section-share span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .suite-prestige-editorial-page .prestige-editorial-gallery-intro .prestige-editorial-photo-section-share svg {
    width: 20px;
    height: 20px;
  }

  .suite-prestige-editorial-page .prestige-editorial-photo-preview .suite-carousel-slide,
  .suite-prestige-editorial-page .prestige-editorial-photo-preview .suite-carousel-slide-wide {
    height: min(92vw, 460px);
  }
}

@media (max-width: 360px) {
  .suite-prestige-editorial-hero .suite-detail-hero-copy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .suite-prestige-editorial-hero .suite-detail-hero-copy h1 {
    padding-right: 48px;
    font-size: 36px;
    letter-spacing: -0.025em;
  }

  .suite-prestige-editorial-hero .prestige-editorial-mobile-summary-share {
    right: 16px;
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .suite-prestige-editorial-hero .prestige-editorial-mobile-summary-share span {
    display: none;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div,
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:first-child,
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:nth-child(2),
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:nth-child(3),
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:nth-child(4) {
    padding-right: 5px;
    padding-left: 5px;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:first-child {
    padding-left: 0;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:last-child {
    padding-right: 0;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts dt,
  .suite-prestige-editorial-hero .prestige-editorial-hero-facts div:nth-child(3) dt {
    font-size: 12px;
  }

  .suite-prestige-editorial-hero .prestige-editorial-hero-facts dd {
    font-size: 10px;
  }

  .prestige-editorial-mobile-booking {
    grid-template-columns: minmax(0, 1fr) 126px;
  }
}

/* Desktop listing opening: let the photography do the selling. The identity
   and practical facts form a restrained introduction, followed immediately
   by the Airbnb-style five-image preview. Mobile keeps its dedicated swipe
   gallery and summary unchanged. */
@media (min-width: 900px) {
  .suite-prestige-editorial-page .site-header {
    border-bottom: 1px solid rgba(20, 35, 59, 0.1);
    background: rgba(251, 248, 241, 0.97);
    box-shadow: none;
    color: var(--navy);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .suite-prestige-editorial-page .site-header .nav-cta {
    padding: 11px 18px;
    border: 1px solid var(--cta-terracotta);
    border-color: var(--cta-terracotta);
    background: var(--cta-terracotta);
    color: var(--white);
    white-space: nowrap;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero {
    display: block;
    min-height: 0;
    padding: 116px 0 28px;
    overflow: visible;
    background: var(--ivory);
    color: var(--navy);
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero::before,
  .suite-prestige-editorial-page .suite-prestige-editorial-hero::after,
  .suite-prestige-editorial-page .suite-prestige-editorial-hero .suite-detail-hero-media,
  .suite-prestige-editorial-page .suite-prestige-editorial-hero .hero-scroll-cue {
    display: none;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .suite-detail-hero-copy {
    display: grid;
    width: min(1500px, calc(100% - clamp(72px, 12vw, 160px)));
    max-width: none;
    margin: 0 auto;
    grid-template-areas:
      "folio facts"
      "title facts";
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(54px, 7vw, 112px);
    align-items: end;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .suite-hero-folio {
    grid-area: folio;
    margin-bottom: 10px;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .suite-hero-folio::after {
    background: rgba(179, 149, 91, 0.58);
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .suite-detail-hero-copy h1 {
    grid-area: title;
    max-width: none;
    margin: 0;
    color: var(--navy);
    font-size: clamp(48px, 4.5vw, 68px);
    line-height: 0.95;
    text-shadow: none;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .hero-title-main {
    display: block;
    color: var(--navy);
    letter-spacing: -0.045em;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .hero-title-location {
    display: block;
    max-width: none;
    margin-top: 9px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .prestige-editorial-hero-facts {
    grid-area: facts;
    display: grid;
    width: auto;
    min-width: min(540px, 42vw);
    margin: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .prestige-editorial-hero-facts div {
    min-height: 60px;
    gap: 8px;
    padding: 0 clamp(14px, 1.4vw, 22px);
    border-right-color: rgba(20, 35, 59, 0.18);
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .prestige-editorial-hero-facts dt {
    color: #a77e32;
    font-size: clamp(30px, 2.5vw, 38px);
    font-weight: 600;
    text-shadow: none;
  }

  .suite-prestige-editorial-page .suite-prestige-editorial-hero .prestige-editorial-hero-facts dd {
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-shadow: none;
  }

  .suite-prestige-editorial-page .prestige-editorial-photo-preview {
    margin-top: 0;
  }

  .suite-prestige-editorial-page .prestige-editorial-gallery-intro {
    min-height: 102px;
    padding: 18px 0 22px;
  }

  .suite-prestige-editorial-page .prestige-editorial-gallery-intro h2 {
    font-size: clamp(30px, 2.45vw, 42px);
  }

  .suite-prestige-editorial-page .suite-location-copy > p.prestige-editorial-location-lead,
  .suite-prestige-editorial-page .suite-location-copy > p:not(.eyebrow):not(.suite-location-address):not(.prestige-editorial-location-lead) {
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.65;
  }
}

@media (min-width: 1180px) {
  .suite-prestige-editorial-page.has-suite-floating-booking .suite-related {
    padding-right: max(24px, calc((100vw - 1390px) / 2));
  }

  .suite-prestige-editorial-page .suite-related-viewport {
    width: 100%;
    container-type: inline-size;
  }

  .suite-prestige-editorial-page .suite-related-grid {
    grid-auto-columns: calc((100cqi - 32px) / 3);
  }
}

.suite-prestige-page {
  --prestige-detail-copper: #a86543;
}

.prestige-icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.suite-prestige-page .prestige-detail-photo-tour-nav button.is-active img {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.suite-prestige-page .prestige-detail-photo-tour-nav button.is-active span {
  font-weight: 750;
}

.suite-prestige-page .prestige-detail-photo-tour-nav .is-video-tour {
  position: relative;
}

.suite-prestige-page .prestige-detail-photo-tour-nav .is-video-tour i {
  position: absolute;
  top: 35px;
  left: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(20, 35, 59, 0.84);
  box-shadow: 0 6px 18px rgba(20, 35, 59, 0.2);
  place-items: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.suite-prestige-page .prestige-detail-photo-tour-nav .is-video-tour i::after {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  content: "";
}

@media (min-width: 1180px) {
  .suite-prestige-page .prestige-detail-photo-tour-nav {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    grid-auto-columns: auto;
    grid-auto-flow: initial;
    gap: 10px;
  }
}

.suite-prestige-page .prestige-detail-photo-tour-room-grid .prestige-tour-video {
  grid-column: 1 / -1;
}

.suite-prestige-page .prestige-tour-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  object-fit: cover;
}

.suite-prestige-page .suite-prestige-hero .suite-detail-hero-media img {
  object-position: 50% 48%;
}

.suite-prestige-page .prestige-apartments-back {
  display: none;
}

.suite-prestige-page .prestige-detail-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: clamp(54px, 8vw, 116px);
  padding: 0 max(24px, calc((100vw - 1390px) / 2));
  border-bottom: 1px solid rgba(20, 35, 59, 0.1);
  background: var(--ivory);
}

.suite-prestige-page .prestige-detail-flow-main {
  min-width: 0;
}

.suite-prestige-page .prestige-detail-flow .suite-detail-intro,
.suite-prestige-page .prestige-detail-flow .prestige-detail-sleeping-compact,
.suite-prestige-page .prestige-detail-flow .prestige-detail-amenities-simple {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.suite-prestige-page .prestige-detail-flow .suite-detail-intro {
  display: block;
  padding-top: clamp(58px, 6vw, 84px);
  padding-bottom: clamp(58px, 6vw, 82px);
}

.suite-prestige-page .prestige-detail-flow .suite-detail-intro-copy {
  width: 100%;
  max-width: 720px;
}

.suite-prestige-page .prestige-detail-flow .suite-detail-intro-copy h2 {
  max-width: none;
}

.suite-prestige-page .prestige-detail-flow .prestige-detail-sleeping-compact {
  padding-top: clamp(58px, 6vw, 82px);
  padding-bottom: clamp(58px, 6vw, 82px);
  border-top: 1px solid rgba(20, 35, 59, 0.1);
}

.suite-prestige-page .prestige-detail-flow .prestige-detail-sleeping-inner,
.suite-prestige-page .prestige-detail-flow .prestige-detail-amenities-inner {
  width: 100%;
}

.suite-prestige-page .prestige-detail-flow .prestige-detail-sleeping-track::after {
  display: none;
}

.suite-prestige-page .prestige-detail-flow .prestige-detail-amenities-simple {
  padding-top: clamp(58px, 6vw, 82px);
  padding-bottom: clamp(72px, 7vw, 104px);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.suite-prestige-page .prestige-detail-flow .suite-booking-host {
  min-width: 0;
}

.suite-prestige-page .prestige-detail-flow .suite-booking-card {
  position: sticky;
  top: 122px;
  width: 100%;
  margin-top: clamp(58px, 6vw, 84px);
}

.suite-prestige-page .prestige-detail-flow .prestige-request-button {
  display: grid;
  min-height: 52px;
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 6px;
  place-items: center;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.suite-prestige-page .prestige-detail-flow .prestige-request-button:hover,
.suite-prestige-page .prestige-detail-flow .prestige-request-button:focus-visible {
  background: var(--prestige-detail-copper);
}

.suite-prestige-page .prestige-video-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: clamp(78px, 9vw, 128px) max(24px, calc((100vw - 1390px) / 2));
  background: #ebe4d9;
  color: var(--navy);
}

.suite-prestige-page .prestige-video-copy h2 {
  max-width: 11ch;
  margin: 12px 0 22px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.suite-prestige-page .prestige-video-copy > p:last-child {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
}

.suite-prestige-page .prestige-video-story video {
  display: block;
  width: 100%;
  max-height: 660px;
  border-radius: 14px;
  background: #111827;
  box-shadow: 0 24px 64px rgba(20, 35, 59, 0.18);
  object-fit: cover;
}

.suite-prestige-page {
  --prestige-editorial-copper: #bd4c33;
}

.suite-prestige-page .prestige-date-check {
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
}

.suite-prestige-page .prestige-map-shell .map-embed {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 360ms ease;
}

.suite-prestige-page .prestige-map-shell.is-map-loaded .map-embed {
  opacity: 1;
}

.suite-prestige-page .prestige-map-placeholder {
  position: absolute;
  inset: 0 0 47px;
  z-index: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  background:
    linear-gradient(34deg, transparent 46%, rgba(255, 255, 255, 0.92) 47%, rgba(255, 255, 255, 0.92) 51%, transparent 52%),
    linear-gradient(124deg, transparent 42%, rgba(255, 255, 255, 0.82) 43%, rgba(255, 255, 255, 0.82) 47%, transparent 48%),
    repeating-linear-gradient(0deg, rgba(20, 35, 59, 0.05) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, rgba(20, 35, 59, 0.05) 0 1px, transparent 1px 68px),
    #e9e7df;
  color: var(--navy);
  opacity: 1;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.suite-prestige-page .prestige-map-shell.is-map-loaded .prestige-map-placeholder {
  opacity: 0;
}

.suite-prestige-page .prestige-map-placeholder span {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  place-items: center;
  background: var(--prestige-detail-copper);
  color: #fff;
  font: 800 14px/1 var(--sans);
  box-shadow: 0 12px 28px rgba(20, 35, 59, 0.2);
}

.suite-prestige-page .prestige-map-placeholder span::after {
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 13px;
  height: 13px;
  background: var(--prestige-detail-copper);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.suite-prestige-page .prestige-map-placeholder strong,
.suite-prestige-page .prestige-map-placeholder small {
  padding: 3px 9px;
  background: rgba(251, 248, 241, 0.9);
}

.suite-prestige-page .prestige-map-placeholder strong {
  font: 600 20px/1.2 var(--serif);
}

.suite-prestige-page .prestige-map-placeholder small {
  color: var(--muted);
  font: 700 9px/1.4 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 1180px) {
  .suite-prestige-page .prestige-detail-flow .suite-booking-card.is-suite-floating {
    position: fixed;
    top: 50%;
    right: clamp(48px, 5vw, 76px);
    width: min(430px, 34vw);
    max-height: calc(100vh - 148px);
    margin-top: 0;
    padding: clamp(30px, 2.5vw, 38px);
    overflow: auto;
    transform: translate3d(0, -45%, 0);
  }

  .suite-prestige-page .suite-booking-card.is-suite-floating > .eyebrow,
  .suite-prestige-page .suite-booking-card.is-suite-floating > h2 {
    display: block;
  }

  .suite-prestige-page .suite-booking-card.is-suite-floating > h2 {
    margin-bottom: 22px;
    font-size: clamp(36px, 3vw, 46px);
  }

  .suite-prestige-page .suite-booking-card.is-suite-floating.is-section-hidden {
    transform: translate3d(0, -40%, 0);
  }

  .suite-prestige-page.has-suite-floating-booking .prestige-date-check {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-right: calc(clamp(48px, 5vw, 76px) + min(430px, 34vw) + 40px);
  }
}

.suite-prestige-page .prestige-entrance-story .suite-detail-cta-media video {
  object-position: center 52%;
}

@media (max-width: 1180px) {
  .suite-prestige-page .prestige-date-check {
    grid-template-columns: minmax(200px, 0.55fr) minmax(0, 1.45fr);
  }
}

@media (max-width: 820px) {
  .suite-prestige-page .prestige-date-check {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  .suite-prestige-page .prestige-entrance-story .suite-detail-cta-media {
    background: url("../assets/videos/pdg15-suite-prestige-apartment-walkthrough-poster.jpg") center / cover no-repeat;
  }
}

@media (min-width: 900px) {
  .suite-prestige-page .prestige-apartments-back {
    position: absolute;
    top: 82px;
    left: max(24px, calc((100vw - 1390px) / 2));
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .suite-prestige-page .prestige-apartments-back svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .suite-prestige-page .suite-prestige-hero .prestige-detail-hero-facts {
    min-width: min(620px, 49vw);
  }

  .suite-prestige-page .suite-prestige-hero .prestige-detail-hero-facts div:last-child dd {
    max-width: 72px;
  }
}

@media (max-width: 1100px) {
  .suite-prestige-page .prestige-detail-flow {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 48px;
  }
}

@media (max-width: 899px) {
  .suite-prestige-page .prestige-detail-flow {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
  }

  .suite-prestige-page .prestige-detail-flow .suite-booking-host {
    display: none;
  }

  .suite-prestige-page .prestige-video-story {
    grid-template-columns: 1fr;
    padding: 68px 20px;
  }

  .suite-prestige-page .prestige-video-copy h2 {
    max-width: 13ch;
  }
}

@media (max-width: 720px) {
  .suite-prestige-page .prestige-detail-flow .suite-detail-intro,
  .suite-prestige-page .prestige-detail-flow .prestige-detail-sleeping-compact,
  .suite-prestige-page .prestige-detail-flow .prestige-detail-amenities-simple {
    padding-right: 0;
    padding-left: 0;
  }

  .suite-prestige-page .prestige-detail-flow .prestige-detail-amenities-simple .suite-amenity-preview {
    grid-template-columns: 1fr;
  }

  .suite-prestige-page .prestige-video-copy h2 {
    font-size: 46px;
  }
}

/* The room tour is the index; tapping a photograph opens the focused viewer.
   A second tap enlarges it and leaves the image pannable on touch screens. */
.suite-prestige-page .prestige-detail-photo-tour [data-image-open] {
  cursor: zoom-in;
}

.suite-prestige-page .prestige-detail-photo-tour .detail-gallery-viewport {
  overflow-anchor: none;
  scroll-behavior: auto;
}

.suite-prestige-page .image-viewer.is-suite-gallery-image .image-viewer-media img {
  cursor: zoom-in;
}

.suite-prestige-page .image-viewer.is-suite-gallery-image.is-zoomed .image-viewer-media {
  overflow: auto;
  touch-action: pan-x pan-y pinch-zoom;
}

.suite-prestige-page .image-viewer.is-suite-gallery-image.is-zoomed .image-viewer-media img {
  cursor: zoom-out;
}

:root {
  --pdg-nav-ivory: #fbf8f1;
  --pdg-nav-navy: #14233b;
  --pdg-nav-gold: #b3955b;
  --pdg-nav-terracotta: #bd4c33;
  --pdg-nav-line: rgba(20, 35, 59, 0.16);
  --pdg-nav-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --pdg-nav-sans: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  --pdg-nav-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body.pdg-menu-open { overflow: hidden !important; }
.legal-page .legal-shell > * { min-width: 0 !important; }
.legal-page .legal-placeholder { overflow-wrap: anywhere; word-break: break-word; }
.legal-page .legal-aside h1 { color: var(--pdg-nav-navy); text-shadow: none; }

.pdg-global-nav-active .site-header { display: none !important; }
.pdg-global-nav-active .mobile-availability,
.pdg-global-nav-active .suite-mobile-booking { display: none !important; }

.pdg-global-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 80px;
  color: #fff;
  font-family: var(--pdg-nav-sans);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease, opacity 240ms ease;
}

.pdg-global-header.is-scrolled,
.pdg-global-header.is-context-solid {
  color: var(--pdg-nav-navy);
  background: rgba(251, 248, 241, 0.93);
  box-shadow: 0 12px 46px rgba(20, 35, 59, 0.1);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.pdg-global-header.is-menu-open,
.pdg-booking-open .pdg-global-header {
  opacity: 0;
  pointer-events: none;
}

.pdg-global-header__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 clamp(24px, 4.5vw, 72px);
}

.pdg-global-header__side { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 38px); }
.pdg-global-header__side--right { justify-content: flex-end; }

.pdg-global-header a,
.pdg-global-header button {
  border: 0;
  background: none;
  color: inherit;
  font: 600 12px/1 var(--pdg-nav-sans);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pdg-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
}

.pdg-menu-toggle__icon { display: grid; gap: 5px; width: 19px; }
.pdg-menu-toggle__icon i { display: block; width: 100%; height: 1px; background: currentColor; }

.pdg-global-brand { display: grid; justify-items: center; gap: 2px; }
.pdg-global-brand span { font: 500 28px/0.9 var(--pdg-nav-serif); letter-spacing: 0.03em; }
.pdg-global-brand small { font: 600 8px/1 var(--pdg-nav-sans); letter-spacing: 0.2em; }

.pdg-desktop-link { position: relative; padding: 12px 0; }
.pdg-desktop-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--pdg-nav-ease);
}
.pdg-desktop-link:hover::after,
.pdg-desktop-link:focus-visible::after,
.pdg-desktop-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.pdg-global-header .pdg-global-booking {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid currentColor;
  cursor: pointer;
}
.pdg-global-header.is-scrolled .pdg-global-booking,
.pdg-global-header.is-context-solid .pdg-global-booking { border-color: var(--pdg-nav-terracotta); background: var(--pdg-nav-terracotta); color: #fff; }

.pdg-global-menu[hidden] { display: none !important; }
.pdg-global-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  color: var(--pdg-nav-navy);
  font-family: var(--pdg-nav-sans);
}
.pdg-global-menu__backdrop { position: absolute; inset: 0; border: 0; background: rgba(6, 12, 22, 0.56); opacity: 0; transition: opacity 420ms ease; }
.pdg-global-menu__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 58%) minmax(360px, 42%);
  width: min(1380px, calc(100% - 40px));
  height: calc(100dvh - 40px);
  margin: 20px;
  overflow: hidden;
  background: var(--pdg-nav-ivory);
  box-shadow: 0 36px 120px rgba(4, 10, 20, 0.28);
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 360ms ease, transform 520ms var(--pdg-nav-ease);
}
.pdg-global-menu.is-open .pdg-global-menu__backdrop { opacity: 1; }
.pdg-global-menu.is-open .pdg-global-menu__dialog { opacity: 1; transform: none; }

.pdg-global-menu__content { display: flex; min-width: 0; flex-direction: column; padding: clamp(28px, 3.4vw, 54px); overflow-y: auto; }
.pdg-global-menu__topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: clamp(20px, 2.8vh, 34px); }
.pdg-global-menu__topline p { margin: 0; color: #746d64; font: 700 10px/1 var(--pdg-nav-sans); letter-spacing: 0.2em; text-transform: uppercase; }
.pdg-global-menu__close { position: relative; width: 42px; height: 42px; border: 1px solid var(--pdg-nav-line); border-radius: 50%; background: transparent; cursor: pointer; }
.pdg-global-menu__close span::before,
.pdg-global-menu__close span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 16px; height: 1px; background: currentColor; }
.pdg-global-menu__close span::before { transform: translate(-50%, -50%) rotate(45deg); }
.pdg-global-menu__close span::after { transform: translate(-50%, -50%) rotate(-45deg); }

.pdg-global-menu__desktop-layout { display: flex; flex-direction: column; align-items: stretch; }
.pdg-global-menu__section { min-width: 0; }
.pdg-global-menu__primary-link { display: flex; align-items: baseline; gap: 14px; width: fit-content; padding: 5px 0; color: inherit; font: 500 clamp(31px, 3vw, 48px)/1 var(--pdg-nav-serif); text-decoration: none; transition: color 180ms ease, transform 280ms var(--pdg-nav-ease); }
.pdg-global-menu__primary-link > span { width: 18px; color: var(--pdg-nav-gold); font: 700 9px/1 var(--pdg-nav-sans); letter-spacing: 0.12em; }
.pdg-global-menu__primary-link:hover,
.pdg-global-menu__primary-link:focus-visible { color: var(--pdg-nav-terracotta); transform: translateX(5px); }

.pdg-global-menu__secondary { margin: 8px 0 12px 32px; }
.pdg-global-menu__apartments { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 58px); }
.pdg-global-menu__stay-column { display: grid; align-content: start; gap: clamp(18px, 2.2vw, 28px); }
.pdg-global-menu__secondary section { min-width: 0; }
.pdg-global-menu__label { margin: 0 0 8px; color: #756f67; font: 700 10px/1 var(--pdg-nav-sans); letter-spacing: 0.18em; text-transform: uppercase; }
.pdg-global-menu__secondary ul,
.pdg-mobile-collection ul { display: grid; gap: 1px; margin: 0; padding: 0; list-style: none; }
.pdg-global-menu__secondary a { color: inherit; text-decoration: none; }
.pdg-global-menu__secondary li a { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px solid rgba(20,35,59,.08); font-size: 15px; line-height: 1.2; }
.pdg-global-menu__secondary li small { color: #847d74; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.pdg-global-menu__section--journal { margin-top: 2px; }
.pdg-global-menu__journal { margin-top: 7px; margin-bottom: 0; }
.pdg-global-menu__journal ul { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(28px, 4vw, 58px); }
.pdg-global-menu__all { display: inline-block; margin-top: 12px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.pdg-global-menu__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: auto; padding-top: 18px; }
.pdg-global-menu__foot p { max-width: 260px; margin: 0; color: #776f66; font: 500 15px/1.35 var(--pdg-nav-serif); }
.pdg-global-menu__booking { display: inline-flex; min-height: 46px; align-items: center; padding: 0 22px; border: 0; background: var(--pdg-nav-terracotta); color: #fff; cursor: pointer; font: 700 10px var(--pdg-nav-sans); letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }

.pdg-global-menu__visual { position: relative; min-width: 0; height: 100%; margin: 0; overflow: hidden; background: #111a28; }
.pdg-global-menu__visual::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(8,16,28,.62), transparent 46%); pointer-events: none; }
.pdg-global-menu__visual img { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; object-fit: cover; transform: scale(1.025); transition: opacity 560ms cubic-bezier(.22,.61,.36,1), transform 1100ms var(--pdg-nav-ease); will-change: opacity, transform; }
.pdg-global-menu__visual img.is-active { opacity: 1; transform: scale(1); }
.pdg-global-menu__visual figcaption { position: absolute; right: clamp(24px,3vw,44px); bottom: clamp(24px,3vw,44px); left: clamp(24px,3vw,44px); z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; color: #fff; }
.pdg-global-menu__visual figcaption span { font: 500 30px/1 var(--pdg-nav-serif); }
.pdg-global-menu__visual figcaption small { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.pdg-global-menu__mobile { display: none; }

.pdg-mobile-booking { display: none; }

.pdg-global-footer.site-footer {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #f3f0ea;
  color: var(--pdg-nav-navy);
  font-family: var(--pdg-nav-sans);
  text-align: left;
}
.pdg-global-footer__inner { width: 100%; padding: clamp(52px, 6vw, 96px) clamp(28px, 4.5vw, 76px) 30px; }
.pdg-global-footer.has-desktop-booking-widget .pdg-global-footer__inner { padding-bottom: 128px; }
.pdg-global-footer__top { display: grid; grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(145px, .72fr)); gap: clamp(36px, 5vw, 88px); }
.pdg-global-footer__brand { min-width: 0; }
.pdg-global-footer__logo { display: inline-block; color: inherit; font: 500 clamp(48px, 5vw, 78px)/.88 var(--pdg-nav-serif); letter-spacing: -.055em; text-decoration: none; }
.pdg-global-footer__brand > p { max-width: 270px; margin: 24px 0 30px; color: #625e58; font: 500 clamp(18px, 1.65vw, 25px)/1.25 var(--pdg-nav-serif); }
.pdg-global-footer__booking { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 25px; border: 1px solid var(--pdg-nav-navy); background: transparent; color: inherit; cursor: pointer; font: 800 10px/1 var(--pdg-nav-sans); letter-spacing: .13em; text-decoration: none; text-transform: uppercase; transition: background 180ms ease, color 180ms ease; }
.pdg-global-footer__booking:hover,
.pdg-global-footer__booking:focus-visible { background: var(--pdg-nav-navy); color: #fff; }
.pdg-global-footer__group { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 13px; }
.pdg-global-footer__group > p { margin: 3px 0 9px; color: #6f6961; font: 800 10px/1 var(--pdg-nav-sans); letter-spacing: .17em; text-transform: uppercase; }
.pdg-global-footer__group > a { position: relative; color: inherit; font-size: 14px; line-height: 1.3; text-decoration: none; }
.pdg-global-footer__group > a::after { content: ""; position: absolute; right: 0; bottom: -3px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--pdg-nav-ease); }
.pdg-global-footer__group > a:hover::after,
.pdg-global-footer__group > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.pdg-global-footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; margin-top: clamp(54px, 7vw, 106px); padding-top: 24px; border-top: 1px solid rgba(20,35,59,.16); color: #6f6a63; }
.pdg-global-footer__bottom p { margin: 0; font: 600 10px/1.3 var(--pdg-nav-sans); letter-spacing: .06em; }
.pdg-global-footer__bottom > p:last-child { text-align: right; }
.pdg-global-footer__bottom nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 22px; }
.pdg-global-footer__bottom a { color: inherit; font-size: 10px; text-decoration: none; }
.pdg-global-footer__bottom a:hover,
.pdg-global-footer__bottom a:focus-visible { color: var(--pdg-nav-navy); text-decoration: underline; text-underline-offset: 4px; }

.pdg-context-back {
  position: absolute;
  top: 96px;
  left: clamp(24px, 4.5vw, 72px);
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font: 700 9px/1 var(--pdg-nav-sans);
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.pdg-context-back span { font-size: 15px; transition: transform 220ms var(--pdg-nav-ease); }
.pdg-context-back--dark { color: var(--pdg-nav-navy); }
.pdg-context-back:hover span,
.pdg-context-back:focus-visible span { transform: translateX(-4px); }

/* Suite Prestige Lighthouse improvements: preserve the composition while
   strengthening small-text contrast and mobile interaction semantics. */
.suite-prestige-page .prestige-detail-host-card h2 span,
.suite-prestige-page .pdg-folio-mark,
.suite-prestige-page .prestige-detail-flow-main .suite-detail-intro-copy > .eyebrow,
.suite-prestige-page .prestige-detail-flow-main .suite-address-row > span,
.suite-prestige-page .prestige-editorial-date-check-copy > .eyebrow,
.suite-prestige-page .prestige-location .suite-location-copy > .eyebrow {
  color: #826229;
}

.suite-prestige-page .pdg-global-footer__group > p {
  color: #6f685f;
}

.suite-prestige-page .pdg-context-back {
  min-height: 24px;
  align-items: center;
}

@media (max-width: 1180px), (pointer: coarse) {
  html.pdg-global-nav-active body:not(.legal-page) { padding-bottom: 72px !important; }
  .pdg-global-header { height: 68px; }
  .pdg-global-header__bar { grid-template-columns: 1fr auto 1fr; padding: 0 18px; }
  .pdg-desktop-link,
  .pdg-menu-toggle > span:last-child,
  .pdg-global-header .pdg-global-booking { display: none; }
  .pdg-global-header__side--right { min-height: 1px; }
  .pdg-menu-toggle { width: 44px; height: 44px; justify-content: center; padding: 0; border: 1px solid currentColor !important; }
  .pdg-global-brand span { font-size: 24px; }
  .pdg-global-brand small { font-size: 7px; }
  .pdg-context-back { top: 82px; left: 20px; }

  .pdg-global-menu__backdrop { display: none; }
  .pdg-global-menu__dialog { display: block; width: 100%; height: 100dvh; margin: 0; transform: translateY(-18px); box-shadow: none; }
  .pdg-global-menu__content { height: 100%; padding: 20px 22px 96px; }
  .pdg-global-menu__topline { padding-bottom: 20px; border-bottom: 1px solid var(--pdg-nav-line); }
  .pdg-global-menu__topline p { font: 500 23px/1 var(--pdg-nav-serif); letter-spacing: 0; text-transform: none; }
  .pdg-global-menu__close { width: 44px; height: 44px; }
  .pdg-global-menu__desktop-layout,
  .pdg-global-menu__visual { display: none; }
  .pdg-global-menu__mobile { display: block; }
  .pdg-global-menu__mobile > a,
  .pdg-global-menu__mobile summary { display: block; padding: 18px 0; border-bottom: 1px solid var(--pdg-nav-line); color: inherit; cursor: pointer; font: 500 clamp(28px, 8.7vw, 42px)/1 var(--pdg-nav-serif); text-decoration: none; list-style: none; }
  .pdg-global-menu__mobile summary::-webkit-details-marker { display: none; }
  .pdg-global-menu__mobile summary { position: relative; padding-right: 38px; }
  .pdg-global-menu__mobile summary::after { content: "+"; position: absolute; right: 2px; top: 19px; font: 400 28px/1 var(--pdg-nav-sans); }
  .pdg-global-menu__mobile details[open] summary::after { content: "−"; }
  .pdg-global-menu__mobile summary span { display: block; margin-top: 5px; color: #817a71; font: 600 8px/1 var(--pdg-nav-sans); letter-spacing: .14em; text-transform: uppercase; }
  .pdg-mobile-collection { padding: 12px 0 20px 18px; border-bottom: 1px solid var(--pdg-nav-line); }
  .pdg-mobile-collection p { margin: 16px 0 7px; color: #847c73; font: 700 8px/1 var(--pdg-nav-sans); letter-spacing: .16em; text-transform: uppercase; }
  .pdg-mobile-collection li a,
  .pdg-mobile-overview { display: flex; min-height: 44px; align-items: center; justify-content: space-between; padding: 9px 0; color: inherit; font-size: 13px; text-decoration: none; }
  .pdg-mobile-collection li small { color: #8b837a; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
  .pdg-mobile-overview { font-weight: 700; }
  .pdg-global-menu__foot { margin-top: 24px; padding-top: 0; }
  .pdg-global-menu__foot p { display: none; }
  .pdg-global-menu__booking { width: 100%; justify-content: center; min-height: 54px; }

  .pdg-mobile-booking { position: fixed; right: 0; bottom: 0; left: 0; z-index: 72; display: block; padding: 9px max(14px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left)); background: rgba(251,248,241,.96); border-top: 1px solid rgba(20,35,59,.12); backdrop-filter: blur(18px); transition: opacity 180ms ease, transform 240ms var(--pdg-nav-ease); }
  .pdg-mobile-booking__button { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: center; border: 0; background: var(--pdg-nav-terracotta); color: #fff; cursor: pointer; font: 800 11px/1 var(--pdg-nav-sans); letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
  .pdg-booking-open .pdg-mobile-booking { opacity: 0; transform: translateY(100%); pointer-events: none; }

  .pdg-global-footer__inner { padding: 54px 22px 30px; }
  .pdg-global-footer.has-desktop-booking-widget .pdg-global-footer__inner { padding-bottom: 30px; }
  .pdg-global-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 46px 26px; }
  .pdg-global-footer__brand { grid-column: 1 / -1; padding-bottom: 6px; }
  .pdg-global-footer__logo { font-size: clamp(54px, 16vw, 82px); }
  .pdg-global-footer__brand > p { margin: 20px 0 24px; font-size: 22px; }
  .pdg-global-footer__group { gap: 12px; }
  .pdg-global-footer__group:last-child { grid-column: 1 / -1; }
  .pdg-global-footer__bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding-top: 24px; }
  .pdg-global-footer__bottom nav { justify-content: flex-start; }
  .pdg-global-footer__bottom > p:last-child { text-align: left; }
}

@media (max-width: 720px) {
  .pdg-global-footer__inner {
    padding: 46px max(20px, env(safe-area-inset-right)) calc(28px + env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  }

  .pdg-global-footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .pdg-global-footer__brand {
    grid-column: auto;
    padding-bottom: 32px;
  }

  .pdg-global-footer__logo {
    font-size: clamp(54px, 18vw, 68px);
  }

  .pdg-global-footer__group,
  .pdg-global-footer__group:last-child {
    display: grid;
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    padding: 24px 0;
    border-top: 1px solid rgba(20, 35, 59, .14);
  }

  .pdg-global-footer__group > p {
    grid-column: 1 / -1;
    margin: 0 0 7px;
  }

  .pdg-global-footer__group > a {
    font-size: 13px;
    line-height: 1.25;
  }

  .pdg-global-footer__bottom {
    gap: 14px;
    margin-top: 28px;
  }
}

@media (max-width: 360px) {
  .pdg-global-header__bar { padding: 0 12px; }
  .pdg-global-menu__content { padding-right: 18px; padding-left: 18px; }
  .pdg-mobile-collection { padding-left: 10px; }
}

/* iPhone landscape: once viewport-fit=cover is enabled, keep controls clear
   of the camera / rounded corners and reclaim vertical room from the two
   fixed navigation bars. */
@media (max-width: 1180px) and (orientation: landscape) and (max-height: 520px) {
  html.pdg-global-nav-active body:not(.legal-page) {
    padding-bottom: calc(58px + env(safe-area-inset-bottom)) !important;
  }

  .pdg-global-header {
    height: 58px;
  }

  .pdg-global-header__bar {
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .pdg-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .pdg-global-brand span {
    font-size: 22px;
  }

  .pdg-context-back {
    top: 66px;
    left: max(16px, env(safe-area-inset-left));
  }

  .pdg-mobile-booking {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(6px + env(safe-area-inset-bottom));
    left: auto;
    width: min(260px, 38vw);
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .pdg-mobile-booking__button {
    min-height: 44px;
    padding: 0 20px;
    box-shadow: 0 8px 24px rgba(20, 35, 59, .16);
  }

  .pdg-global-menu__content {
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdg-global-header,
  .pdg-global-menu__backdrop,
  .pdg-global-menu__dialog,
  .pdg-global-menu__visual img,
  .pdg-desktop-link::after,
  .pdg-mobile-booking { transition-duration: 0.01ms !important; }
}

/* Shared phone and coarse-pointer target sizing. Keep the established icon
   sizes while ensuring the surrounding interactive area is at least 44px. */
@media (max-width: 720px), (pointer: coarse) {
  .apartment-detail-page .nav-toggle,
  .apartment-detail-page .image-detail-trigger,
  .apartment-detail-page .suite-widget-guest-step,
  .apartment-detail-page .suite-carousel-control,
  .apartment-detail-page .suite-carousel-view-all,
  .apartment-detail-page .suite-related-controls button,
  .apartment-detail-page .detail-modal-close,
  .apartment-detail-page .image-viewer-close,
  .apartment-detail-page .image-viewer-share,
  .apartment-detail-page .image-viewer-zoom,
  .apartment-detail-page .image-viewer-carousel-button,
  .apartment-detail-page [class*="-sleeping-navigation"] button,
  .apartment-detail-page [class*="-calendar-toolbar"] > button,
  .apartment-detail-page [class*="-photo-section-share"],
  .apartment-detail-page [class*="-mobile-summary-share"],
  .apartment-detail-page [class*="-share-close"],
  .apartment-detail-page [class*="-local-carousel-tabs"] button,
  .apartment-detail-page [class*="-local-carousel-arrows"] button,
  .apartment-detail-page [class*="-photo-tour-room-grid"] [role="button"] {
    min-width: 44px;
    min-height: 44px;
  }

  .apartment-detail-page [class*="-calendar-toolbar"] {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .apartment-detail-page [class*="-calendar-footer"] button,
  .apartment-detail-page [data-detail-modal-open] {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .apartment-detail-page [class*="-calendar-days"] {
    grid-template-columns: repeat(7, minmax(44px, 1fr));
  }

  .apartment-detail-page [class*="-calendar-day"] {
    min-width: 44px;
    min-height: 44px;
  }
}
