@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/fa-regular-400.woff2") format("woff2");
}

:where(.fa-regular, .far) {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}

.fa-arrow-right::before {
  content: "\f061";
}

:root {
  --paper: #f3f3f3;
  --paper-2: #fbfbfb;
  --ink: #181715;
  --muted: #666661;
  --line: rgba(24, 23, 21, 0.16);
  --charcoal: #24221f;
  --olive: #5d5f5a;
  --gold: #c99b55;
  --terracotta: #53534f;
  --white: #f7f7f3;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --wide: min(1380px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 48px;
  padding: 24px 64px;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  color: var(--white);
  background: rgba(24, 23, 21, 0.76);
  border-bottom: 1px solid rgba(247, 247, 243, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  line-height: 0;
}

.brand-mark {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--gold);
  transform: rotate(45deg);
}

.brand span:not(.brand-mark) {
  font-size: 15px;
}

.brand em {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.brand-logo {
  display: block;
  width: 220px;
  height: auto;
}

.site-header .brand-logo,
.site-footer .brand-logo {
  filter: brightness(0) invert(1);
}

.site-footer .brand-logo {
  width: 220px;
  filter: none;
  margin-left: -20px;
}

.mobile-menu .brand-logo {
  width: 200px;
  filter: none;
  margin-left: -20px;
}

.desktop-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav > a,
.desktop-nav .nav-item > a,
.desktop-nav .nav-parent {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-item {
  position: relative;
}

.nav-item.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}

.has-submenu > a::after,
.has-submenu > .nav-parent::after {
  content: "⌄";
  margin-left: 8px;
  font-size: 13px;
  line-height: 1;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 3;
  min-width: 220px;
  display: grid;
  padding: 12px 0;
  border: 1px solid rgba(247, 247, 243, 0.18);
  border-radius: 8px;
  background: rgba(24, 23, 21, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .submenu {
  border-color: rgba(247, 247, 243, 0.16);
  background: rgba(24, 23, 21, 0.98);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  padding: 12px 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.submenu a:nth-child(2) {
  border-top: 1px solid rgba(247, 247, 243, 0.14);
  border-bottom: 1px solid rgba(247, 247, 243, 0.14);
}

.submenu a:hover {
  color: var(--gold);
}

.desktop-nav a,
.desktop-nav .nav-parent,
.lang {
  opacity: 0.82;
}

.desktop-nav a:hover,
.desktop-nav .nav-parent:hover,
.desktop-nav a.active,
.desktop-nav .nav-parent.active,
.lang:hover,
.lang.active {
  opacity: 1;
  color: var(--gold);
}

.lang {
  font-weight: 800;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.book-small,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.book-small:hover {
  transform: translateY(-2px);
  background: #72726d;
}

.book-small {
  font-weight: 600;
}

.primary-action {
  gap: 10px;
  min-height: 50px;
  padding: 4px 20px 4px 24px;
  border: 1px solid rgba(159, 159, 164, 0.64);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color 300ms ease, border-color 300ms ease, background 300ms ease, transform 180ms ease;
}

.hero .primary-action,
.primary-action.light {
  color: var(--white);
  border-color: rgba(247, 247, 243, 0.72);
  background: transparent;
}

.primary-action:hover {
  color: var(--white);
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}

.primary-action i {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
  transform: rotate(-45deg);
  transition: transform 300ms ease-in-out;
}

.primary-action:hover i {
  transform: rotate(0deg);
}

.menu-button {
  display: none;
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  place-content: center;
  gap: 5px;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(247, 247, 243, 0.25);
  border-radius: 999px;
  color: inherit;
  background: rgba(247, 247, 243, 0.08);
}

.menu-button span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 0;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(460px, 100vw);
  padding: 42px;
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: -28px 0 70px rgba(24, 23, 21, 0.18);
  overflow-y: auto;
  transform: translateX(104%);
  transition: transform 360ms cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open,
body.menu-open .mobile-menu {
  transform: translateX(0);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(24, 23, 21, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 28px;
}

.side-menu-nav {
  display: grid;
  margin: 40px 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.side-menu-nav > a,
.side-menu-group > span,
.side-menu-group > a {
  display: flex;
  align-items: center;
  min-height: 46px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.side-menu-nav > a:last-child {
  border-bottom: 0;
}

.side-menu-group {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.side-menu-group > span {
  color: var(--gold);
}

.side-menu-group > a {
  min-height: 38px;
  gap: 12px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.side-menu-group > a::before {
  content: "";
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.side-menu-group > a:last-child {
  border-bottom: 0;
}

.side-menu-nav a:hover,
.side-menu-nav a.active,
.side-menu-group > span.active {
  color: var(--gold);
}

.side-menu-lang {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0 -14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.side-menu-lang a {
  color: var(--muted);
}

.side-menu-lang a:hover,
.side-menu-lang .active {
  color: var(--gold);
}

.side-menu-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 38px;
}

.side-menu-gallery a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
}

.side-menu-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.side-menu-gallery a:hover img {
  transform: scale(1.06);
}

.side-menu-contact {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}

.side-menu-contact a {
  color: var(--ink);
  font-weight: 700;
}

.side-menu-social {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1200ms ease;
  animation: heroDrift 15s ease-in-out infinite alternate;
}

.hero-image.active {
  opacity: 1;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.84), rgba(14, 13, 12, 0.55) 42%, rgba(14, 13, 12, 0.25)),
    linear-gradient(0deg, rgba(14, 13, 12, 0.52), rgba(14, 13, 12, 0.08) 36%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--wide);
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  grid-template-rows: 1fr;
  gap: 28px 42px;
}

.hero-stamp {
  grid-column: 1 / 3;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(247, 247, 243, 0.35);
  border-radius: 999px;
  background: rgba(247, 247, 243, 0.08);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
}

.hero-stamp span,
.section-label span,
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-copy {
  align-self: end;
  max-width: 820px;
  padding-bottom: 92px;
}

.kicker {
  max-width: 500px;
  margin: 0 0 22px;
  color: rgba(247, 247, 243, 0.78);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.96;
}

h1 .line {
  display: block;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(247, 247, 243, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.text-action {
  position: relative;
  font-weight: 700;
}

.text-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.text-action.dark {
  color: var(--ink);
}

.hero-panel {
  align-self: end;
  border: 0;
  border-radius: 8px;
  padding: 30px;
  background: rgba(247, 247, 243, 0.12);
  backdrop-filter: blur(18px);
  animation: floatPanel 5s ease-in-out infinite alternate;
}

.hero-panel > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.hero-panel b {
  display: inline;
  margin-bottom: 0;
  color: inherit;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.hero-panel span,
.hero-panel li {
  color: rgba(247, 247, 243, 0.78);
}

.hero-panel span {
  color: #e1b675;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.hero-panel ul {
  padding: 22px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid rgba(247, 247, 243, 0.22);
  list-style: none;
}

.hero-meta {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(247, 247, 243, 0.22);
}

.hero-meta div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding-top: 18px;
}

.hero-meta span {
  color: rgba(247, 247, 243, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.hero-meta b {
  font-family: var(--serif);
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 720ms ease forwards;
  animation-delay: 0s;
}

.delay {
  animation-delay: 180ms;
}

.delay-2 {
  animation-delay: 340ms;
}

.delay-3 {
  animation-delay: 500ms;
}

.section-band {
  width: var(--wide);
  margin: 0 auto;
  padding: 112px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-label.invert {
  color: rgba(247, 247, 243, 0.65);
}

.section-head {
  display: grid;
  grid-template-columns: 0.55fr 1.05fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head-wide {
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.suites {
  width: var(--wide);
  padding-bottom: 88px;
}

.suites .section-head-wide {
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.suites .section-head-wide h2 {
  max-width: 390px;
}

.suites .section-head-wide p {
  max-width: 820px;
}

.section-head.compact {
  grid-template-columns: 0.75fr 1fr;
}

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.25vw, 50px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.section-head p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.benefits {
  width: 100%;
  padding-top: 82px;
  padding-bottom: 86px;
  padding-left: max(32px, calc((100vw - 1380px) / 2));
  padding-right: max(32px, calc((100vw - 1380px) / 2));
  background: #e1e1e1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  padding: 30px 32px 32px;
  border-left: 1px solid rgba(24, 23, 21, 0.18);
  background: transparent;
}

.benefit-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.benefit-card:last-child {
  padding-right: 0;
}

.benefit-card h2 {
  max-width: 280px;
  margin-top: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.02;
  color: var(--ink);
}

.benefit-card p {
  margin: 0;
  max-width: 310px;
  padding-top: 24px;
  color: rgba(24, 23, 21, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.benefit-icon {
  display: none;
}

.benefit-icon.quote {
  border-radius: 999px;
  border-left-style: double;
  border-right-style: double;
}

.benefit-icon.star {
  border-radius: 0 999px 0 999px;
}

.benefit-icon.arch {
  border-radius: 999px 999px 0 0;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.suite-card {
  display: grid;
  padding: 18px;
  border-radius: 8px;
  background: transparent;
  transition: transform 220ms ease, background-color 220ms ease;
}

.suite-card:hover {
  transform: translateY(-5px);
  background: #e1e1e1;
}

.suite-card:focus-visible {
  background: #e1e1e1;
}

.suite-card figure {
  position: relative;
  aspect-ratio: 5 / 6;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--olive);
}

.suite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.suite-card:hover img {
  transform: scale(1.04);
}

.suite-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 23, 21, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.suite-body {
  display: grid;
  grid-template-rows: 18px auto auto auto;
  padding: 22px 0 0;
}

.suite-type {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.suite-body h3 {
  margin: 16px 0 18px;
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.suite-body p {
  min-height: 84px;
  margin: 0;
  color: var(--muted);
}

.suite-body dl {
  display: grid;
  grid-template-columns: 0.9fr 0.78fr 1.32fr;
  gap: 0;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 23, 21, 0.14);
}

.suite-body dl div {
  min-width: 0;
  padding: 0 12px;
}

.suite-body dl div:first-child {
  padding-left: 0;
}

.suite-body dl div:nth-child(2) {
  border-right: 1px solid rgba(24, 23, 21, 0.14);
  border-left: 1px solid rgba(24, 23, 21, 0.14);
}

.suite-body dl div:last-child {
  padding-right: 0;
}

dt {
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

dd {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.suite-body dd {
  display: block;
  color: var(--ink);
  line-height: 1.18;
  white-space: nowrap;
}

.suite-body dd strong {
  margin-right: 5px;
}

.suite-body dd.has-prefix strong {
  margin-left: 5px;
}

dd strong {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
  color: inherit;
}

.suite-link {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 18px;
  border-top: 1px solid rgba(24, 23, 21, 0.22);
  border-bottom: 1px solid rgba(24, 23, 21, 0.22);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.suite-card:active .suite-link {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(210, 163, 82, 0.08);
}

.suite-link:active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(210, 163, 82, 0.08);
}

.neighborhood {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-copy h2 {
  max-width: 780px;
}

.location-title {
  max-width: 660px;
  font-size: clamp(30px, 2.8vw, 42px);
}

.location-copy p {
  max-width: 660px;
  margin: 26px 0 36px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.location-feature-list {
  display: grid;
  border-top: 1px solid rgba(24, 23, 21, 0.14);
}

.location-feature-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 18px 10px;
  border: 0;
  border-bottom: 1px solid rgba(24, 23, 21, 0.14);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.location-feature-item span {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}

.location-feature-item strong {
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
}

.location-feature-item em {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.location-feature-item:hover em,
.location-feature-item:focus-visible em {
  color: var(--gold);
}

.location-feature-item:focus-visible {
  outline: 1px solid rgba(24, 23, 21, 0.24);
  outline-offset: 2px;
}

.location-media {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 22px;
  align-content: start;
}

.location-preview {
  position: relative;
  aspect-ratio: 0.9;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.location-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  opacity: 1;
  transition: opacity 360ms ease;
  cursor: zoom-in;
}

.location-preview.is-changing img {
  opacity: 0.42;
}

.location-preview figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(24, 23, 21, 0.72);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  opacity: 1;
  transition: opacity 260ms ease;
}

.location-preview.is-changing figcaption {
  opacity: 0;
}

.location-carousel-controls {
  display: none;
}

.location-carousel-control {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(247, 247, 243, 0.44);
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 23, 21, 0.42);
  backdrop-filter: blur(10px);
}

.location-carousel-control span {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.location-action {
  justify-self: start;
  align-self: start;
  min-height: 46px;
}

.gallery {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: var(--charcoal);
  color: var(--white);
}

.gallery-track {
  overflow: hidden;
  margin: 18px 0;
}

.gallery-row {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: galleryScroll 72s linear infinite;
}

.gallery-track.reverse .gallery-row {
  animation-direction: reverse;
  animation-duration: 84s;
}

.gallery-row img {
  width: clamp(260px, 32vw, 460px);
  height: clamp(190px, 22vw, 300px);
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  filter: saturate(0.94);
}

.gallery-action {
  width: var(--wide);
  margin: 36px auto 0;
  text-align: left;
}

.gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(247, 247, 243, 0.4);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.gallery-button:hover {
  border-color: rgba(247, 247, 243, 0.68);
  background: rgba(247, 247, 243, 0.1);
}

.gallery-page {
  width: 100%;
  margin: 0;
  padding: 18px;
  padding-top: 52px;
}

.gallery-page-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  margin-bottom: 54px;
}

.gallery-page-head .eyebrow {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-page-head .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.gallery-page-head h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 62px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
}

.gallery-page-head h1 em {
  color: var(--gold);
  font-style: italic;
}

.gallery-page-head p {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.gallery-mosaic.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  animation: none;
}

.gallery-mosaic.gallery-row img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 6px;
  filter: saturate(0.88) contrast(0.96) brightness(0.96);
  object-fit: cover;
  transition: filter 260ms ease, transform 260ms ease;
}

.gallery-mosaic.gallery-row img:hover {
  filter: none;
  transform: scale(1.012);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(12, 12, 11, 0.86);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: min(1180px, 92vw);
  max-height: 86svh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 247, 243, 0.4);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: 18px;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  border-color: rgba(247, 247, 243, 0.82);
  background: rgba(247, 247, 243, 0.08);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 30px;
}

.lightbox-nav {
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.lightbox-nav i {
  display: none;
}

.lightbox-prev::before {
  content: "\2190";
}

.lightbox-next::before {
  content: "\2192";
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.faq.section-band {
  width: 100%;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: #e1e1e1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

.faq .section-head {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 30px;
  margin-bottom: 0;
  position: sticky;
  top: 120px;
}

.faq .section-head h2 {
  max-width: 420px;
  margin-top: 0;
}

.faq-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.faq .primary-action {
  align-self: start;
  justify-self: start;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(24, 23, 21, 0.16);
}

.faq details {
  border-bottom: 1px solid rgba(24, 23, 21, 0.16);
  background: transparent;
}

.faq summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 26px 58px 26px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 23, 21, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  max-width: 760px;
  margin: 0;
  padding: 0 58px 28px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.site-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr 1.05fr;
  gap: 38px;
  align-items: start;
  padding: 86px max(32px, calc((100vw - 1380px) / 2)) 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 23, 21, 0.95), rgba(24, 23, 21, 0.78)),
    url("img/footer/footer-bg.jpg") center / cover;
}

.site-footer .brand {
  color: var(--white);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(247, 247, 243, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.footer-brand .footer-booking-copy {
  margin-top: 22px;
}

.footer-brand .primary-action {
  justify-self: start;
  margin-top: 4px;
}

.footer-apartment {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-apartment img {
  width: 72px;
  aspect-ratio: 1.2;
  border-radius: 6px;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-apartment:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.site-footer nav {
  display: grid;
  justify-content: start;
  gap: 12px;
}

.footer-nav a {
  color: rgba(247, 247, 243, 0.78);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-nav a {
  min-width: 170px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(247, 247, 243, 0.16);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  margin: 0;
  color: rgba(247, 247, 243, 0.72);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(247, 247, 243, 0.72);
  font-size: inherit;
  font-weight: 400;
  line-height: 1.7;
  text-transform: none;
}

.footer-contact .primary-action {
  justify-self: start;
  margin-top: 8px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 247, 243, 0.18);
  color: rgba(247, 247, 243, 0.58);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.contact-page {
  width: var(--wide);
  margin: 0 auto;
  padding: 118px 0 96px;
}

.contact-copy,
.contact-intro {
  display: grid;
  align-content: start;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
}

.contact-copy .eyebrow,
.form-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-copy .eyebrow::before,
.form-head .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.contact-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 50px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.contact-copy h1 em {
  color: var(--gold);
  font-style: italic;
}

.contact-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.contact-copy > .primary-action {
  justify-self: start;
  margin-top: 34px;
  border-color: var(--gold);
  color: var(--gold);
  background: var(--paper-2);
}

.contact-copy > .primary-action:hover {
  color: var(--white);
  background: var(--gold);
}

.contact-quick {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  background: rgba(24, 23, 21, 0.14);
}

.contact-quick a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: center;
  padding: 22px 0;
  background: var(--paper);
}

.contact-quick strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-quick em {
  display: block;
  grid-column: 1;
  margin-top: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
  white-space: normal;
}

.contact-faq {
  display: grid;
}

.contact-faq details {
  border-top: 1px solid rgba(24, 23, 21, 0.16);
}

.contact-faq details:last-child {
  border-bottom: 1px solid rgba(24, 23, 21, 0.16);
}

.contact-faq summary {
  position: relative;
  list-style: none;
  padding: 24px 58px 24px 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
}

.contact-faq summary::-webkit-details-marker {
  display: none;
}

.contact-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 6px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(24, 23, 21, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  transform: translateY(-50%);
}

.contact-faq details[open] summary::after {
  content: "-";
}

.contact-faq details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.contact-map-section {
  width: 100%;
  padding: 0 0 96px;
  background: var(--paper);
}

.contact-map-inner {
  display: block;
  width: 100%;
}

.contact-map-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: end;
}

.contact-map-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-map-head .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.contact-map-head h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 50px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.contact-map {
  overflow: hidden;
  border-radius: 0;
  background: var(--line);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: min(58vw, 620px);
  min-height: 360px;
  border: 0;
  pointer-events: auto;
  filter: grayscale(1) contrast(0.94) brightness(0.96);
}

.contact-intro {
  gap: 28px;
  padding-top: 46px;
}

.contact-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.contact-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(24, 23, 21, 0.14);
}

.contact-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 34px;
  background: var(--paper-2);
}

.contact-card span {
  margin-bottom: 40px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.contact-card h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-card a {
  justify-self: start;
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
  margin-top: 34px;
  padding: 46px;
  background: #e1e1e1;
}

.form-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(24, 23, 21, 0.16);
}

.form-head .eyebrow {
  margin-bottom: 0;
}

.form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label.wide {
  grid-column: 1 / -1;
}

.contact-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24, 23, 21, 0.24);
  border-radius: 0;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--ink);
}

.contact-form button {
  justify-self: start;
  margin-top: 8px;
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  color: var(--ink);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.location-editorial,
.location-story {
  width: var(--wide);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.location-editorial {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 7vw, 112px);
  padding: 108px 0 104px;
  align-items: start;
}

.location-editorial-intro {
  grid-column: 2;
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.location-editorial-head,
.location-times-panel {
  position: sticky;
  top: 128px;
  align-self: start;
}

.location-editorial-head {
  display: grid;
  gap: 34px;
}

.location-times-panel {
  grid-row: 1 / span 2;
  padding-top: 42px;
}

.location-times-panel .location-feature-item {
  grid-template-columns: 34px 1fr auto;
  gap: 16px;
  padding: 17px 0;
}

.location-editorial h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
}

.location-editorial h1 em {
  color: var(--gold);
  font-style: italic;
}

.location-editorial-body {
  display: grid;
  gap: 28px;
  max-width: 860px;
  margin-top: -60px;
}

.location-editorial-body p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
}

.location-editorial-body .lede {
  max-width: 760px;
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: clamp(20px, 1.55vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.location-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0 0 4px;
}

.location-thumb {
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--line);
  cursor: pointer;
  overflow: hidden;
}

.location-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.68) contrast(0.92) brightness(0.9);
  opacity: 0.56;
  transform: scale(1.02);
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
  cursor: zoom-in;
}

.location-thumb.active img,
.location-thumb:hover img,
.location-thumb:focus-visible img {
  filter: none;
  opacity: 1;
  transform: scale(1);
}

.location-thumb:focus-visible {
  outline: 1px solid rgba(24, 23, 21, 0.34);
  outline-offset: 3px;
}

.location-mobile-carousel {
  display: none;
}

.location-mobile-lede {
  display: none;
  margin: 0;
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: clamp(18px, 5vw, 21px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.story-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.story-rule::before {
  content: none;
}

.location-story {
  padding: 76px 0 96px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 7vw, 110px);
}

.location-story .section-label {
  align-self: start;
}

.location-story-copy {
  display: grid;
  gap: 24px;
  max-width: 860px;
}

.location-story-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
}

.content-page {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 110px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
}

.content-copy {
  display: grid;
  gap: 20px;
}

.content-copy p {
  color: var(--muted);
  font-size: 18px;
}

.content-copy h2 {
  margin-top: 32px;
}

.about-page {
  padding-top: 96px;
}

.ph {
  position: relative;
  display: grid;
  place-items: center;
  background-color: #d8d6cf;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(24, 23, 21, 0.055) 14px 15px);
  color: rgba(24, 23, 21, 0.62);
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(24, 23, 21, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.ph span {
  position: relative;
  padding: 6px 12px;
  border: 1px solid rgba(24, 23, 21, 0.14);
  border-radius: 2px;
  background: rgba(216, 214, 207, 0.92);
}

.about-editorial {
  width: var(--wide);
  margin: 0 auto;
  padding: 132px 0 124px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.editorial-media {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 16px;
}

.editorial-media .ph.tall {
  aspect-ratio: 3 / 4.4;
  border-radius: 4px;
}

.editorial-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.editorial-media .about-media-main {
  aspect-ratio: 3 / 4.4;
  border-radius: 4px;
}

.editorial-media .strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.editorial-media .strip .ph {
  aspect-ratio: 1;
  border-radius: 2px;
  font-size: 9px;
}

.editorial-media .strip img {
  aspect-ratio: 1;
  border-radius: 2px;
}

.editorial-media .strip .ph::before {
  inset: 8px;
}

.editorial-copy .eyebrow,
.location-editorial-intro .eyebrow,
.location-editorial-body .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.editorial-copy .eyebrow::before,
.location-editorial-intro .eyebrow::before,
.location-editorial-body .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.location-editorial-intro .eyebrow {
  margin-bottom: 0;
}

.editorial-copy h1 {
  max-width: 720px;
  margin: 0 0 48px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 44px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
}

.editorial-copy h1 em {
  color: var(--gold);
  font-style: italic;
}

.editorial-body {
  display: grid;
  gap: 28px;
}

.editorial-body p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
}

.editorial-body p.lede {
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: clamp(20px, 1.55vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.editorial-body .rule {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.editorial-body .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.editorial-body .rule::before {
  content: none;
}

.editorial-body .room-facilities-title {
  color: var(--gold);
}

.editorial-body .room-facilities-title::after {
  content: none;
}

.room-facilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: -8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.room-facilities li {
  position: relative;
  padding: 13px 0 13px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.room-facilities li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.policy-page {
  padding-top: 96px;
}

.policy-hero,
.policy-layout {
  width: var(--container);
  margin: 0 auto;
}

.policy-hero {
  padding: 118px 0 0;
}

.policy-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.policy-hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.policy-hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(36px, 4vw, 50px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.18;
}

.policy-hero .policy-brand-title {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 50px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.policy-hero .policy-brand-title em {
  color: var(--gold);
}

.policy-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(42px, 7vw, 96px);
  padding: 38px 0 118px;
}

.policy-layout--single {
  width: var(--container);
  grid-template-columns: 1fr;
}

.policy-sidebar {
  position: sticky;
  top: 128px;
  align-self: start;
  display: grid;
  border-top: 1px solid var(--line);
}

.policy-sidebar a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.policy-sidebar a:hover,
.policy-sidebar a:focus-visible {
  color: var(--gold);
  padding-left: 8px;
}

.policy-copy {
  display: grid;
  gap: 38px;
}

.policy-section {
  display: grid;
  gap: 12px;
}

.policy-section p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.68;
}

.policy-section a {
  color: var(--ink);
  font-weight: 700;
}

.policy-section .story-rule {
  margin: 10px 0 4px;
  color: var(--gold);
}

.policy-section .story-rule:first-child {
  margin-top: 0;
}

.policy-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 2px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.policy-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.policy-section h2:first-child {
  margin-top: 0;
}

.policy-section h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.policy-times {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
  margin: 0;
}

.policy-times div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 0;
}

.policy-times div:nth-child(odd) {
  padding-left: 0;
  border-right: 0;
}

.policy-times dt {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.policy-times dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.68;
}

.policy-note {
  display: grid;
  gap: 8px;
  margin: 0;
  border-top: 0;
  border-bottom: 0;
}

.policy-note h2 {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.28;
}

.policy-note div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  align-items: start;
  padding: 0;
  border-top: 0;
}

.policy-note strong,
.policy-note span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.policy-note p {
  font-family: var(--sans);
  font-size: 17px;
  font-style: normal;
  line-height: 1.68;
}

.policy-intro {
  color: var(--muted) !important;
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-subtitle {
  margin: 10px 0 -6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.apartment-specs {
  margin: 4px 0 42px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.apartment-specs dl {
  display: grid;
  grid-template-columns: 0.9fr 0.78fr 1.32fr;
  gap: 0;
  margin: 0;
}

.apartment-specs div {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.apartment-specs div:first-child {
  padding-left: 0;
}

.apartment-specs div:last-child {
  border-right: 0;
  padding-right: 0;
}

.apartment-specs dt {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.apartment-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  white-space: normal;
}

.apartment-specs dd strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.apartment-specs dd.has-prefix strong {
  margin-left: 5px;
}

.apartment-gallery {
  margin-top: 76px;
  overflow: hidden;
}

.apartment-gallery .gallery-track {
  margin: 0;
}

.apartment-gallery .gallery-row {
  gap: 18px;
  animation-duration: 62s;
}

.apartment-gallery .gallery-row img {
  width: auto;
  height: clamp(260px, 26vw, 300px);
  aspect-ratio: auto;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 6px;
}

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

.page-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  overflow: hidden;
}

.page-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-card div {
  padding: 24px;
}

.page-card h2 {
  font-size: 34px;
}

.page-card p {
  color: var(--muted);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes floatPanel {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

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

@media (max-width: 1240px) {
  .desktop-nav {
    gap: 20px;
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .book-small,
  .header-actions .lang {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 18px 22px;
  }

  .menu-button {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .hero-stamp,
  .hero-meta {
    grid-column: 1;
  }

  .hero-copy {
    padding-top: 9svh;
  }

  .hero-panel {
    max-width: 430px;
  }

  .section-head,
  .benefits,
  .location-showcase,
  .gallery-head,
  .gallery-page-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-page-head p {
    grid-column: 1;
  }

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

  .gallery-mosaic.gallery-row img {
    aspect-ratio: 4 / 5;
  }

  .faq.section-band {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-page {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-map-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-intro {
    padding-top: 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .form-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq .section-head h2 {
    max-width: none;
  }

  .faq .section-head {
    position: static;
  }

  .suites .section-head-wide {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .suites .section-head-wide h2,
  .suites .section-head-wide p {
    max-width: none;
  }

  .content-grid,
  .location-editorial,
  .location-story,
  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .policy-sidebar {
    position: static;
    top: auto;
  }

  .policy-note div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .location-editorial {
    gap: 34px;
  }

  .location-editorial-head,
  .location-times-panel {
    position: static;
  }

  .location-times-panel {
    grid-row: auto;
    order: 2;
    padding-top: 0;
  }

  .location-editorial-intro {
    grid-column: auto;
    order: 1;
  }

  .location-editorial-body {
    order: 3;
    margin-top: 0;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial-media {
    position: relative;
    top: auto;
  }

  .apartment-specs dl {
    grid-template-columns: 1fr;
  }

  .apartment-specs div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .apartment-specs div:first-child {
    padding-top: 0;
  }

  .apartment-specs div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .suite-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .suite-link {
    display: inline-flex;
  }

  .suite-body dl {
    margin-bottom: 18px;
  }

  .benefit-card {
    min-height: 230px;
    border-left: 0;
    border-top: 1px solid rgba(24, 23, 21, 0.18);
  }

  .benefit-card:first-child {
    border-top: 0;
  }

  .footer-bottom {
    grid-column: 1;
  }

  .location-preview {
    aspect-ratio: 16 / 10;
  }

  .location-media {
    position: relative;
    top: auto;
  }

  .site-footer nav {
    justify-content: start;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .hero-inner {
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .location-title {
    font-size: clamp(28px, 9vw, 36px);
  }

  .hero-meta,
  .hero-meta div,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 22px;
  }

  .section-band {
    padding: 74px 0;
  }

  .benefits.section-band {
    width: 100%;
    padding: 56px 28px 58px;
  }

  .benefit-card,
  .benefit-card:first-child,
  .benefit-card:last-child {
    min-height: 0;
    padding: 30px 0 34px;
  }

  .benefit-card h2,
  .benefit-card p {
    max-width: none;
  }

  .gallery-page {
    padding: 12px;
    padding-top: 44px;
  }

  .gallery-page-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .gallery-page-head h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .gallery-page-head p {
    font-size: 16px;
  }

  .gallery-mosaic.gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .lightbox {
    padding: 72px 18px 34px;
    overflow: hidden;
  }

  .lightbox img {
    max-width: calc(100vw - 36px);
    max-height: calc(100svh - 128px);
    border-radius: 6px;
  }

  .lightbox button {
    width: 40px;
    height: 40px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 26px;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .location-story {
    padding: 58px 0 68px;
  }

  .location-editorial {
    padding: 72px 0 76px;
  }

  .location-editorial h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .location-editorial-body {
    gap: 24px;
  }

  .location-thumb-grid {
    display: none;
  }

  .location-mobile-carousel {
    display: block;
    max-width: none;
    margin: 0;
  }

  .location-mobile-lede {
    display: block;
    margin: 0;
    color: var(--ink);
    font-size: clamp(18px, 5vw, 21px);
    font-weight: 400;
    line-height: 1.45;
  }

  .location-editorial-body p {
    font-size: 16px;
    line-height: 1.7;
  }

  .location-editorial-body .lede {
    display: none;
  }

  .about-editorial {
    padding: 84px 0;
  }

  .editorial-copy h1 {
    margin-bottom: 36px;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.14;
  }

  .editorial-body p.lede {
    font-size: clamp(18px, 5vw, 21px);
  }

  .policy-page {
    padding-top: 78px;
  }

  .policy-hero {
    width: var(--wide);
    padding: 72px 0 0;
  }

  .policy-layout--single {
    width: var(--wide);
  }

  .policy-hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .policy-hero p,
  .policy-section p {
    font-size: 16px;
  }

  .policy-layout {
    padding: 34px 0 84px;
  }

  .policy-times {
    grid-template-columns: 1fr;
  }

  .policy-times div,
  .policy-times div:nth-child(odd) {
    padding: 0;
    border-right: 0;
  }

  .policy-note h2 {
    font-size: 18px;
  }

  .policy-note p {
    font-size: 17px;
  }

  .room-facilities {
    grid-template-columns: 1fr;
  }

  .suite-body dl {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.95fr) minmax(0, 1.3fr);
    margin-top: 26px;
    padding-top: 18px;
  }

  .suite-body dl div {
    padding: 0 10px;
    border: 0;
  }

  .suite-body dl div:first-child {
    padding-left: 0;
  }

  .suite-body dl div:nth-child(2) {
    border-right: 1px solid rgba(24, 23, 21, 0.14);
    border-left: 1px solid rgba(24, 23, 21, 0.14);
  }

  .suite-body dl div:last-child {
    padding-right: 0;
  }

  .suite-body dd {
    display: flex;
    align-items: baseline;
    gap: 5px;
    white-space: normal;
  }

  .suite-body dd strong,
  .suite-body dd.has-prefix strong {
    margin: 0;
  }

  .suite-body dd {
    font-size: 11px;
  }

  .suite-body dd strong {
    font-size: 23px;
  }

  .location-feature-item {
    grid-template-columns: 34px 1fr auto;
    gap: 14px;
    padding: 17px 0;
    cursor: default;
    pointer-events: none;
  }

  .location-preview {
    aspect-ratio: 4 / 5;
  }

  .location-carousel-controls {
    position: absolute;
    top: 50%;
    right: 14px;
    left: 14px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .location-carousel-control {
    pointer-events: auto;
  }

  .location-carousel-control:active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(24, 23, 21, 0.68);
  }

  .faq.section-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-page {
    padding: 74px 0;
  }

  .contact-copy h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .contact-intro p {
    font-size: 20px;
  }

  .contact-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .contact-card span {
    margin-bottom: 28px;
    font-size: 36px;
  }

  .contact-quick {
    margin-top: 36px;
  }

  .contact-quick a {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .contact-quick em {
    grid-column: 1;
    margin-top: 0;
    padding-left: 0;
    white-space: normal;
  }

  .contact-faq summary {
    padding: 22px 48px 22px 0;
    font-size: 16px;
  }

  .contact-faq summary::after {
    right: 0;
    width: 30px;
    height: 30px;
  }

  .contact-faq details p {
    padding: 0 0 24px;
    font-size: 15px;
  }

  .contact-map-section {
    padding: 0;
  }

  .contact-map iframe {
    min-height: 320px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .contact-form label.wide {
    grid-column: 1;
  }

  .faq summary {
    padding: 22px 48px 22px 0;
    font-size: 16px;
  }

  .faq summary::after {
    right: 0;
    width: 30px;
    height: 30px;
  }

  .faq details p {
    padding: 0 0 24px;
    font-size: 15px;
  }
}
