:root {
  --accent: #a9794e;
  --accent-soft: #d9b590;
  --page-tint: rgba(169, 121, 78, 0.12);
  --paper: #f8f1e6;
  --paper-blush: #f3e6da;
  --paper-deep: #e7d5c0;
  --ink: #1b140f;
  --ink-soft: #6f6157;
  --line: rgba(22, 17, 13, 0.11);
  --line-strong: rgba(22, 17, 13, 0.22);
  --shadow-soft: 0 18px 50px rgba(31, 21, 14, 0.08);
  --shadow-strong: 0 40px 100px rgba(31, 21, 14, 0.12);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max: 1440px;
  font-family: "Alegreya Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.static-home {
  width: min(100% - 40px, 760px);
  margin: clamp(56px, 12vh, 140px) auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
}

.static-home h1 {
  margin: 10px 0;
  font-size: clamp(48px, 9vw, 88px);
}

.static-home p:not(.micro-label) {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.static-home nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.static-home nav a {
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 244, 226, 0.92), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(134, 153, 118, 0.14), transparent 20%),
    radial-gradient(circle at 70% 74%, rgba(191, 133, 101, 0.16), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, var(--paper) 44%, var(--paper-blush) 74%, var(--paper-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(161, 121, 86, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 40%, rgba(0, 0, 0, 0.12));
}

body.lightbox-open {
  overflow: hidden;
}

::selection {
  background: rgba(169, 121, 78, 0.18);
  color: var(--ink);
}

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

figure {
  margin: 0;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-shell::before {
  background:
    radial-gradient(circle at 14% 9%, var(--page-tint), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.42), transparent 18%);
}

.site-shell::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.04), transparent 28%);
}

.site-header,
.page-content {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(22, 17, 13, 0.08);
  background: rgba(252, 247, 240, 0.82);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 16px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.site-header-bar {
  display: none;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 6px;
  border: 1px solid rgba(22, 17, 13, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 34px rgba(31, 21, 14, 0.06);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex: none;
  position: relative;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

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

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  background: rgba(22, 17, 13, 0.06);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(22, 17, 13, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(31, 21, 14, 0.06);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.nav-toggle-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle-icon {
  display: grid;
  gap: 5px;
}

.nav-toggle-icon span {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-nav-open .nav-toggle-icon span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-icon span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.header-cta,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #f7f1e8;
  box-shadow: 0 16px 36px rgba(22, 17, 13, 0.14);
}

.button-link {
  border: 1px solid var(--line-strong);
}

.button-link.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #f7f1e8;
  box-shadow: 0 18px 36px rgba(22, 17, 13, 0.12);
}

.button-link.secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-link.light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #f7f1e8;
}

.header-cta:hover,
.button-link:hover,
.text-link:hover,
.copy-link:hover {
  transform: translateY(-1px);
}

.text-link,
.copy-link {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.copy-link {
  cursor: pointer;
}

.page-content {
  padding-bottom: 88px;
}

.brand-essay {
  margin: 18px 0 0;
  max-width: 37rem;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.72;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 16%, rgba(195, 151, 103, 0.16), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(125, 145, 117, 0.14), transparent 18%),
    linear-gradient(180deg, #fffaf3 0%, #f8eee2 58%, #ead8c2 100%);
  transition:
    opacity 700ms ease,
    visibility 700ms ease;
}

.page-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: radial-gradient(rgba(161, 121, 86, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.loader-mark {
  position: relative;
  width: min(240px, 58vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(90, 65, 42, 0.16);
  animation: loaderSpin 15s linear infinite;
}

.loader-ring-2 {
  inset: 11%;
  animation-direction: reverse;
  animation-duration: 11s;
}

.loader-mark::before {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 46% 46% 18% 18%;
  border: 1px solid rgba(90, 65, 42, 0.16);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.76), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(243, 229, 213, 0.38));
  animation: loaderFloat 2.8s ease-in-out infinite;
}

.loader-mark::after {
  content: "";
  position: absolute;
  bottom: 10%;
  width: 64%;
  height: 14px;
  border-radius: 999px;
  background: rgba(75, 54, 37, 0.16);
  filter: blur(16px);
}

.loader-logo {
  position: relative;
  z-index: 1;
  width: 62%;
  filter: drop-shadow(0 18px 34px rgba(30, 22, 14, 0.18));
  animation: loaderPulse 2.4s ease-in-out infinite;
}

.loader-ghat {
  display: flex;
  gap: 8px;
}

.loader-ghat span {
  width: 16px;
  height: 14px;
  border: 1px solid rgba(90, 65, 42, 0.22);
  border-bottom-width: 2px;
  border-radius: 16px 16px 4px 4px;
  background: rgba(255, 255, 255, 0.28);
  animation: loaderLift 1.6s ease-in-out infinite;
}

.loader-ghat span:nth-child(2) {
  animation-delay: 120ms;
}

.loader-ghat span:nth-child(3) {
  animation-delay: 240ms;
}

.loader-ghat span:nth-child(4) {
  animation-delay: 360ms;
}

@keyframes loaderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes loaderLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.home-masthead,
.statement-band,
.brand-manifesto,
.property-masthead,
.suite-masthead,
.quote-band,
.detail-grid-block,
.section-block,
.sequence-intro,
.chapter-sequence,
.empty-state {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.home-masthead,
.property-masthead,
.suite-masthead {
  padding: clamp(56px, 8vw, 100px) 0 56px;
}

.detail-grid-block,
.section-block,
.sequence-intro,
.chapter-sequence {
  padding-top: clamp(48px, 7vw, 80px);
}

.section-block-last {
  padding-bottom: 72px;
}

.home-masthead-grid,
.property-masthead-grid,
.suite-masthead-grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.home-masthead-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: calc(100svh - 168px);
}

.property-masthead-grid,
.suite-masthead-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
}

.masthead-copy,
.property-copy,
.suite-copy {
  max-width: 40rem;
}

.micro-label,
.story-kicker,
.suite-ref,
.chapter-index {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.micro-label {
  color: var(--accent);
}

.story-kicker,
.suite-ref {
  color: var(--ink-soft);
}

.chapter-index {
  color: var(--accent);
  margin-bottom: 22px;
}

.display-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 9vw, 132px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.display-title em {
  font-style: italic;
  color: #8f6148;
}

.display-subtitle {
  margin: 20px 0 0;
  max-width: 34rem;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.48;
  color: var(--ink-soft);
}

.property-support,
.story-support,
.section-heading > p,
.concierge-meta p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.74;
}

.property-support {
  margin-top: 16px;
  max-width: 34rem;
}

.story-summary {
  margin: 14px 0 12px;
  max-width: 18ch;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.story-title {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 9ch;
}

.property-title {
  max-width: 9ch;
}

.section-heading {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 42rem;
  margin-bottom: 34px;
  padding-left: 24px;
}

.home-collection-heading {
  display: grid;
  justify-items: start;
  align-items: start;
  gap: 10px;
  margin-bottom: 38px;
}

.home-collection-heading h2 {
  margin: 0;
  max-width: 13ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.8vw, 70px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(22, 17, 13, 0));
}

.section-heading h2,
.chapter-copy h2,
.suite-copy h3,
.alt-suite-copy h3,
.empty-state h1,
.concierge-copy h2,
.manifesto-heading h2,
.property-editorial-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(38px, 4.6vw, 68px);
  max-width: 12ch;
}

.suite-copy h3,
.alt-suite-copy h3 {
  font-size: clamp(34px, 2.8vw, 46px);
  margin-top: 8px;
}

.chapter-copy h2 {
  font-size: clamp(38px, 4.5vw, 62px);
  margin: 10px 0 14px;
}

.empty-state h1 {
  font-size: clamp(44px, 7vw, 90px);
  max-width: 10ch;
  margin: 12px auto 18px;
}

.concierge-copy h2 {
  font-size: clamp(38px, 5vw, 78px);
  max-width: 10ch;
  color: #f7f1e8;
}

.story-support {
  max-width: 32rem;
  font-size: clamp(17px, 1.55vw, 21px);
}

.brand-manifesto {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px 42px;
  padding: 42px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.manifesto-heading {
  max-width: 32rem;
}

.manifesto-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  align-items: start;
  padding-top: 10px;
}

.manifesto-columns.is-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 36rem;
}

.manifesto-columns p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.78;
}

.descriptor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
}

.descriptor-row-compact {
  margin-top: 18px;
}

.descriptor {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.descriptor::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.45);
}

.inline-actions {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-gallery,
.story-media,
.property-gallery,
.suite-gallery {
  display: grid;
  gap: 20px;
}

.hero-gallery {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  grid-template-rows: repeat(2, auto);
  align-items: stretch;
}

.hero-frame-1 {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
}

.hero-frame-2 {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
}

.hero-frame-3 {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
}

.story-media {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  width: min(100%, 420px);
  justify-self: center;
}

.story-main {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
}

.story-accent {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.property-gallery,
.suite-gallery {
  grid-template-columns: minmax(0, 1fr) 220px;
  grid-template-rows: auto;
  align-items: end;
}

.property-main,
.suite-primary {
  grid-column: 1;
  grid-row: 1;
}

.property-detail,
.suite-secondary {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.property-plaque,
.suite-plaque {
  grid-column: 1;
  grid-row: 2;
}

.story-plaque {
  align-self: start;
  padding: 28px 30px;
  border: 1px solid rgba(22, 17, 13, 0.1);
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.story-plaque strong {
  display: block;
  margin-top: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.story-plaque span {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.frame-card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}

button.frame-card {
  cursor: zoom-in;
}

.frame-matte {
  position: relative;
  display: block;
  padding: 14px;
  border: 1px solid rgba(22, 17, 13, 0.08);
  border-radius: 36px;
  background: rgba(255, 251, 247, 0.76);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.frame-matte::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(82, 58, 38, 0.08), rgba(0, 0, 0, 0.12));
  mix-blend-mode: multiply;
}

.frame-matte::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 22px;
}

.toned-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(0.78) contrast(1.02) brightness(0.94) sepia(0.08);
  transform: scale(1.02);
  transition: transform 260ms ease;
}

.frame-card:hover .toned-image,
.suite-card-link:hover .toned-image,
.alt-suite-card:hover .toned-image {
  transform: scale(1.04);
}

.hero-frame-1 .frame-matte,
.story-main .frame-matte,
.property-main .frame-matte,
.suite-primary .frame-matte {
  border-radius: 220px 220px 28px 28px;
  padding: 16px 16px 20px;
}

.hero-frame-1 .toned-image,
.story-main .toned-image,
.property-main .toned-image,
.suite-primary .toned-image {
  border-radius: 204px 204px 20px 20px;
  object-position: center center;
}

.hero-frame-1 .toned-image,
.story-main .toned-image,
.property-main .toned-image,
.suite-primary .toned-image {
  aspect-ratio: 5 / 6;
}

.hero-frame-2 .toned-image,
.hero-frame-3 .toned-image,
.story-accent .toned-image,
.property-detail .toned-image,
.suite-secondary .toned-image {
  aspect-ratio: 4 / 5;
}

.suite-media .toned-image,
.alt-suite-media .toned-image {
  aspect-ratio: 16 / 9;
}

.ritual-media .toned-image {
  aspect-ratio: 4 / 5;
}

.home-collection {
  padding-top: clamp(30px, 4vw, 48px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.collection-story {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  position: relative;
  border-top: 1px solid var(--line);
}

.collection-story::after {
  content: "";
  position: absolute;
  right: 0;
  top: 32px;
  width: 116px;
  height: 38px;
  border-top: 1px solid rgba(22, 17, 13, 0.14);
  border-bottom: 1px solid rgba(22, 17, 13, 0.08);
  border-radius: 999px;
  opacity: 0.7;
  pointer-events: none;
}

.collection-story + .collection-story {
  margin-top: 0;
}

.collection-story-reverse {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 0.94fr);
}

.collection-story-reverse .story-copy {
  order: 2;
}

.collection-story-reverse .story-media {
  order: 1;
}

.property-editorial {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px 42px;
  align-items: start;
  padding: 22px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.property-editorial::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 128px;
  height: 18px;
  background:
    radial-gradient(circle at 9px 9px, rgba(169, 121, 78, 0.14) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.7;
}

.property-editorial-heading {
  max-width: 30rem;
}

.property-editorial-heading h2 {
  margin-top: 8px;
  font-size: clamp(38px, 4.2vw, 62px);
}

.property-editorial-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.7;
  max-width: 38rem;
}

.suite-copy > p:last-child,
.suite-copy > p:nth-of-type(2),
.chapter-copy > p:last-child,
.empty-state > p:not(.micro-label) {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.suite-copy > p:last-child,
.suite-copy > p:nth-of-type(2),
.chapter-copy > p:last-child {
  margin-top: 14px;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px 26px;
}

.suite-card {
  min-width: 0;
}

.suite-card-link,
.alt-suite-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.suite-copy,
.alt-suite-copy {
  padding: 22px 2px 0;
}

.suite-essay {
  max-width: 34rem;
}

.suite-link {
  display: inline-flex;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.alt-suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.suite-ref-top {
  margin-top: 14px;
}

.suite-title {
  max-width: 11ch;
}

.sequence-intro {
  padding-top: 26px;
}

.photo-rail-shell {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(22, 17, 13, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(249, 241, 231, 0.74)),
    radial-gradient(circle at top left, rgba(169, 121, 78, 0.08), transparent 30%);
  box-shadow: var(--shadow-soft);
}

.photo-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 26vw);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.photo-rail::-webkit-scrollbar {
  display: none;
}

.rail-card {
  scroll-snap-align: start;
  min-width: 0;
}

.rail-card .toned-image {
  aspect-ratio: 4 / 5;
}

.rail-button {
  min-height: 54px;
  border: 1px solid rgba(22, 17, 13, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(31, 21, 14, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.rail-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(31, 21, 14, 0.12);
}

.chapter-sequence {
  padding-top: 12px;
}

.chapter-block {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.chapter-block.is-reverse {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.chapter-block.is-reverse .chapter-copy {
  order: 2;
}

.chapter-block.is-reverse .chapter-gallery {
  order: 1;
}

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

.gallery-item .toned-image {
  aspect-ratio: 4 / 5;
}

.gallery-item.is-featured {
  grid-column: span 2;
}

.gallery-item.is-featured .toned-image {
  aspect-ratio: 16 / 10;
  min-height: 360px;
}

.chapter-gallery > :first-child:last-child {
  grid-column: span 2;
}

.chapter-gallery > :first-child:last-child .toned-image {
  aspect-ratio: 16 / 10;
  min-height: 380px;
}

.concierge-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px 40px;
  align-items: end;
  padding: clamp(34px, 5vw, 52px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(135deg, #17110d 0%, #21160f 48%, #14100d 100%);
  box-shadow: 0 40px 100px rgba(18, 13, 9, 0.2);
  color: #f7f1e8;
}

.concierge-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.concierge-copy,
.concierge-meta {
  position: relative;
  z-index: 1;
}

.concierge-meta p {
  max-width: 24rem;
  color: rgba(247, 241, 232, 0.9);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
}

.concierge-number {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.92);
}

.on-dark {
  color: rgba(247, 241, 232, 0.78);
}

.concierge-panel .button-link.light {
  min-height: 56px;
  padding: 0 28px;
  border-color: transparent;
  background: #f7f1e8;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(15, 11, 8, 0.18);
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1faa59;
  color: #fff;
  box-shadow: 0 18px 38px rgba(18, 13, 9, 0.22);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 160px);
  padding: 84px 0;
  text-align: center;
}

.empty-state .button-link {
  margin-top: 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 11, 8, 0.84);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-panel {
  width: min(100%, 1320px);
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: -6px;
  right: 0;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f7f1e8;
  cursor: pointer;
}

.lightbox-stage {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  gap: 16px;
  align-items: center;
}

.lightbox-nav {
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f7f1e8;
  cursor: pointer;
}

.lightbox-nav:disabled {
  opacity: 0.4;
  cursor: default;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.lightbox-image {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: 28px;
}

.lightbox-caption {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.7);
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header-inner {
    padding: 18px 0 16px;
  }

  .home-masthead-grid,
  .brand-manifesto,
  .property-editorial,
  .property-masthead-grid,
  .suite-masthead-grid,
  .collection-story,
  .collection-story-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .collection-story-reverse .story-copy,
  .collection-story-reverse .story-media,
  .chapter-block.is-reverse .chapter-copy,
  .chapter-block.is-reverse .chapter-gallery {
    order: initial;
  }

  .story-media,
  .property-gallery,
  .suite-gallery {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .section-heading {
    align-items: start;
  }

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

  .photo-rail {
    grid-auto-columns: minmax(260px, 44vw);
  }

  .chapter-block,
  .chapter-block.is-reverse {
    grid-template-columns: 1fr;
  }

  .concierge-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    border-bottom-color: rgba(22, 17, 13, 0.04);
    background: linear-gradient(180deg, rgba(253, 249, 242, 0.96), rgba(248, 241, 230, 0.92));
    backdrop-filter: none;
  }

  .site-header-inner {
    width: min(calc(100% - 28px), var(--max));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0 12px;
  }

  .home-masthead,
  .brand-manifesto,
  .property-editorial,
  .property-masthead,
  .suite-masthead,
  .section-block,
  .sequence-intro,
  .chapter-sequence,
  .empty-state,
  .collection-story {
    width: min(calc(100% - 28px), var(--max));
  }

  .display-title {
    font-size: clamp(60px, 18vw, 98px);
    max-width: 100%;
  }

  .story-title {
    font-size: clamp(46px, 12vw, 78px);
  }

  .home-collection-heading h2 {
    font-size: clamp(38px, 9.5vw, 56px);
  }

  .display-subtitle {
    font-size: 18px;
  }

  .brand-essay {
    max-width: 100%;
  }

  .story-summary {
    max-width: 100%;
    font-size: 30px;
  }

  .hero-gallery {
    display: none;
  }

  .hero-frame-1,
  .hero-frame-2,
  .hero-frame-3 {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .story-media,
  .property-gallery,
  .suite-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    width: 100%;
  }

  .story-main,
  .property-main,
  .suite-primary,
  .property-detail,
  .suite-secondary {
    grid-column: auto;
    grid-row: auto;
  }

  .manifesto-columns,
  .alt-suite-grid,
  .chapter-gallery {
    grid-template-columns: 1fr;
  }

  .hero-frame-1 .frame-matte,
  .story-main .frame-matte,
  .property-main .frame-matte,
  .suite-primary .frame-matte {
    border-radius: 34px;
    padding: 14px;
  }

  .hero-frame-1 .toned-image,
  .story-main .toned-image,
  .property-main .toned-image,
  .suite-primary .toned-image {
    border-radius: 22px;
    aspect-ratio: 4 / 5;
  }

  .gallery-item.is-featured,
  .chapter-gallery > :first-child:last-child {
    grid-column: auto;
  }

  .gallery-item.is-featured .toned-image,
  .chapter-gallery > :first-child:last-child .toned-image {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-stage {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    min-height: 52px;
  }

  .lightbox-image {
    max-height: 68svh;
  }

  .photo-rail-shell {
    grid-template-columns: 1fr;
  }

  .rail-button {
    display: none;
  }

  .photo-rail {
    grid-auto-columns: minmax(220px, 74vw);
  }

  .header-cta {
    display: none;
  }

  .site-header-bar {
    display: flex;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    padding: 8px;
    overflow: visible;
    border-radius: 28px;
  }

  .site-header.is-nav-open .site-nav {
    display: grid;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(31, 21, 14, 0.08);
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 10px;
    text-align: center;
    letter-spacing: 0.13em;
  }

  .whatsapp-fab {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .site-header-inner {
    width: min(calc(100% - 22px), var(--max));
    gap: 8px;
  }

  .site-nav {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px;
    border-radius: 24px;
  }

  .nav-link {
    min-height: 42px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .inline-actions {
    gap: 12px 16px;
    align-items: stretch;
  }

  .button-link {
    width: 100%;
  }

  .inline-actions .text-link,
  .inline-actions .copy-link,
  .inline-actions .concierge-number {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .copy-link,
  .text-link {
    padding-bottom: 10px;
  }

  .concierge-panel {
    padding: 28px 22px;
  }

  .concierge-copy h2 {
    max-width: none;
  }

  .concierge-meta {
    width: 100%;
  }

  .concierge-meta .inline-actions {
    margin-top: 20px;
  }

  .concierge-panel .button-link.light,
  .concierge-number {
    min-height: 54px;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 18px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .home-collection-heading h2 {
    font-size: 34px;
  }

  .chapter-copy h2 {
    font-size: 34px;
  }

  .concierge-copy h2 {
    font-size: 34px;
  }

  .loader-mark {
    width: min(220px, 70vw);
  }
}
