:root {
  --ink: #11120f;
  --ink-2: #1b1c18;
  --ink-soft: #2a2b26;
  --ivory: #f5f1ea;
  --ivory-2: #ece6db;
  --stone: #8d887d;
  --stone-light: #b9b3a6;
  --brass: #b59a6d;
  --brass-deep: #8f7549;
  --brass-light: #d9c197;
  --line-dark: rgba(17, 18, 15, 0.14);
  --line-light: rgba(245, 241, 234, 0.18);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1320px;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
em { font-style: italic; }
::selection { background: var(--brass); color: var(--ink); }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Placeholder art for image slots ---------- */
[data-img] { position: relative; background: #2a2a24; overflow: hidden; }
[data-img].is-missing img { display: none; }
[data-img].is-missing::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(181,154,109,0.28), transparent 60%),
    radial-gradient(90% 80% at 10% 100%, rgba(245,241,234,0.08), transparent 60%),
    linear-gradient(160deg, #2c2c26 0%, #151612 100%);
}
[data-img].is-missing::after {
  content: "700";
  position: absolute; right: 4%; bottom: -6%;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(160px, 26vw, 420px); line-height: 1;
  color: rgba(245, 241, 234, 0.05);
  letter-spacing: -0.04em;
}

/* ---------- Curtain intro ---------- */
.curtain {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: grid; place-items: center;
  transition: transform 1.1s var(--ease) 0.5s;
}
.curtain__mark {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(64px, 12vw, 140px);
  color: var(--ivory); letter-spacing: 0.02em;
  opacity: 0; transform: translateY(20px);
  animation: markIn 0.9s var(--ease) 0.1s forwards;
}
@keyframes markIn { to { opacity: 1; transform: none; } }
body.is-loaded .curtain { transform: translateY(-100%); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 40px;
  padding: 26px var(--gutter);
  color: var(--ivory);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  color: var(--ink);
  padding-top: 16px; padding-bottom: 16px;
  border-bottom-color: var(--line-dark);
}
.nav__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; margin-right: auto; }
.nav__num { font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: 0.02em; line-height: 1; }
.nav__rule { width: 1px; height: 22px; background: currentColor; opacity: 0.4; }
.nav__name { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 500; }
.nav__links { display: flex; gap: 36px; }
.nav__links a, .nav__cta {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  border: 1px solid currentColor; padding: 12px 22px;
  transition: background 0.4s, color 0.4s;
}
.nav__cta:hover { background: var(--ivory); color: var(--ink); }
.nav.is-solid .nav__cta:hover { background: var(--ink); color: var(--ivory); }
.nav__toggle { display: none; }

.drawer {
  position: fixed; inset: 0; z-index: 49;
  background: var(--ink); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  padding: 0 var(--gutter);
}
.drawer[hidden] { display: none; }
.drawer a { font-family: var(--serif); font-size: 40px; font-weight: 300; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; text-decoration: none;
  padding: 18px 34px; border: 1px solid transparent; cursor: pointer;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s;
}
.btn--light { background: var(--ivory); color: var(--ink); }
.btn--light:hover { background: var(--brass); }
.btn--ghost { border-color: rgba(245,241,234,0.6); color: var(--ivory); }
.btn--ghost:hover { background: rgba(245,241,234,0.1); border-color: var(--ivory); }
.btn--dark { background: var(--ink); color: var(--ivory); }
.btn--dark:hover { background: var(--brass-deep); }

/* ---------- Type ---------- */
.eyebrow, .kicker {
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 500;
  margin: 0 0 28px;
}
.kicker { color: var(--brass-deep); }
.display {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5.6vw, 84px); line-height: 1.02; letter-spacing: -0.015em;
  margin: 0 0 36px;
}
.display em { color: var(--brass-deep); font-weight: 300; }
.display--sm { font-size: clamp(36px, 4.2vw, 62px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  color: var(--ivory); display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%;
  transform: scale(1.12); transition: transform 2.6s var(--ease);
}
body.is-loaded .hero__media img { transform: scale(1.02); }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,18,15,0.6) 0%, rgba(17,18,15,0) 28%),
    linear-gradient(90deg, rgba(17,18,15,0.62) 0%, rgba(17,18,15,0.3) 45%, rgba(17,18,15,0) 75%),
    linear-gradient(0deg, rgba(17,18,15,0.9) 0%, rgba(17,18,15,0.4) 45%, rgba(17,18,15,0.18) 75%);
}
.hero__inner {
  position: relative; width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 160px var(--gutter) 56px;
}
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(54px, 10vw, 168px); line-height: 0.92; letter-spacing: -0.025em;
  margin: 0 0 34px;
}
.hero__title em { color: var(--brass-light); font-weight: 300; }
.hero__title, .hero__lede, .band__quote { text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__title .line > span {
  display: inline-block; transform: translateY(105%);
  transition: transform 1.3s var(--ease);
}
.hero__title .line:nth-child(2) > span { transition-delay: 0.12s; }
body.is-loaded .hero__title .line > span { transform: none; transition-delay: 0.95s; }
body.is-loaded .hero__title .line:nth-child(2) > span { transition-delay: 1.07s; }
.hero__lede { font-size: clamp(16px, 1.4vw, 19px); max-width: 520px; margin: 0 0 40px; color: rgba(245,241,234,0.86); font-weight: 300; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__facts {
  position: relative; margin: 0; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
}
.hero__facts > div { padding: 26px 24px 30px 0; }
.hero__facts > div + div { padding-left: 24px; border-left: 1px solid var(--line-light); }
.hero__facts dt { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass); margin-bottom: 6px; }
.hero__facts dd { margin: 0; font-family: var(--serif); font-size: clamp(18px, 1.7vw, 24px); font-weight: 400; line-height: 1.25; }

.hero__scroll {
  position: absolute; right: var(--gutter); top: 50%;
  width: 1px; height: 90px; background: rgba(245,241,234,0.25); overflow: hidden;
}
.hero__scroll span {
  position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--ivory);
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue { to { top: 100%; } }

/* ---------- Intro ---------- */
.intro { padding: clamp(110px, 16vw, 220px) 0 clamp(90px, 12vw, 170px); }
.intro__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.intro__copy { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; color: #45443d; }
.intro__copy p { margin: 0; }

/* ---------- Band ---------- */
.band { position: relative; min-height: 88vh; display: flex; align-items: flex-end; color: var(--ivory); }
.band__media { position: absolute; inset: -10% 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,18,15,0.88) 0%, rgba(17,18,15,0.45) 45%, rgba(17,18,15,0.05) 75%); }
.band__inner { position: relative; z-index: 1; padding-bottom: clamp(56px, 8vw, 110px); }
.band__quote {
  font-family: var(--serif); font-weight: 300; margin: 0;
  font-size: clamp(32px, 4.4vw, 66px); line-height: 1.08; max-width: 980px; letter-spacing: -0.01em;
}
.band__quote em { color: var(--brass-light); }

/* ---------- Building ---------- */
.building { padding: clamp(110px, 14vw, 200px) 0; }
.section-head { margin-bottom: clamp(56px, 7vw, 96px); max-width: 900px; }
.section-head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section-head--row .display { margin-bottom: 0; }
.section-head__note { color: var(--stone); max-width: 520px; margin: -12px 0 0; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.feature { padding: 44px 40px 52px 0; border-bottom: 1px solid var(--line-dark); }
.feature:not(:nth-child(3n+1)) { padding-left: 40px; border-left: 1px solid var(--line-dark); }
.feature__n { font-family: var(--serif); font-size: 15px; color: var(--brass-deep); letter-spacing: 0.1em; }
.feature h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.3vw, 34px); line-height: 1.1; margin: 18px 0 16px; }
.feature p { margin: 0; color: #55534b; font-size: 15px; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1.15fr 1fr; background: var(--ink); color: var(--ivory); }
.split__media { min-height: 80vh; }
.split__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split__copy { padding: clamp(64px, 9vw, 140px) clamp(28px, 7vw, 120px); align-self: center; }
.split__copy p { color: rgba(245,241,234,0.75); max-width: 460px; }
.split--rev { grid-template-columns: 1fr 1.15fr; background: var(--ivory); color: var(--ink); }
.split--rev .split__copy p { color: #55534b; }
.split--rev .kicker, .split--rev .display em { color: var(--brass-deep); }
.split .kicker { color: var(--brass); }
.split .display em { color: var(--brass); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 16px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  text-decoration: none;
}
.link-arrow::after { content: ""; width: 44px; height: 1px; background: currentColor; transition: width 0.5s var(--ease); }
.link-arrow:hover::after { width: 72px; }

/* ---------- Suites ---------- */
.suites { padding: clamp(110px, 14vw, 200px) 0; background: var(--ivory-2); }
.suite-list { display: grid; gap: 22px; }
.suite {
  display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 40px;
  background: var(--ivory); padding: 40px 48px;
  border: 1px solid var(--line-dark);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.suite:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -40px rgba(17,18,15,0.45); }
.suite > * { min-width: 0; }
.suite__id { display: flex; flex-direction: column; }
.suite__label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--stone); }
.suite__num { font-family: var(--serif); font-weight: 300; font-size: 84px; line-height: 1; letter-spacing: -0.02em; }
.suite__num--word { font-size: 40px; line-height: 1.15; margin-top: 6px; font-style: italic; }
.suite__specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0; }
.suite__specs dt { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--stone); margin-bottom: 6px; }
.suite__specs dd { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.25; display: flex; align-items: center; gap: 10px; }
.suite__text { margin: 0; color: #55534b; max-width: 640px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #6f8f5e; box-shadow: 0 0 0 4px rgba(111,143,94,0.18); }
.suite__cta {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; text-decoration: none;
  padding: 16px 26px; border: 1px solid var(--ink); white-space: nowrap;
  transition: background 0.4s, color 0.4s;
}
.suite__cta:hover { background: var(--ink); color: var(--ivory); }
.suite--open { background: transparent; }

/* ---------- Location ---------- */
.location { padding: clamp(110px, 14vw, 200px) 0; }
.location__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
.location__copy > p { color: #55534b; max-width: 520px; }
.proximity { list-style: none; padding: 0; margin: 48px 0 0; border-top: 1px solid var(--line-dark); }
.proximity li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--line-dark); font-size: 15px;
}
.proximity li span:last-child { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--brass-deep); white-space: nowrap; }
.location__map { position: sticky; top: 110px; }
.location__map iframe {
  width: 100%; aspect-ratio: 4 / 5; border: 0; display: block;
  filter: grayscale(1) contrast(1.05) brightness(1.02) sepia(0.12);
}
.location__addr { font-family: var(--serif); font-size: 22px; line-height: 1.3; margin: 22px 0 0; }

/* ---------- Gallery ---------- */
.gallery { padding: clamp(90px, 12vw, 170px) 0; background: var(--ink); color: var(--ivory); }
.gallery .kicker, .gallery .display em { color: var(--brass); }
.gallery__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(120px, 14vw, 210px); gap: 14px; }
.gallery__item { position: relative; overflow: hidden; cursor: zoom-in; border: 0; padding: 0; background: #22231e; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), opacity 0.6s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:nth-child(6n+1) { grid-column: span 7; grid-row: span 3; }
.gallery__item:nth-child(6n+2) { grid-column: span 5; grid-row: span 2; }
.gallery__item:nth-child(6n+3) { grid-column: span 5; grid-row: span 1; }
.gallery__item:nth-child(6n+4) { grid-column: span 4; grid-row: span 2; }
.gallery__item:nth-child(6n+5) { grid-column: span 4; grid-row: span 2; }
.gallery__item:nth-child(6n+6) { grid-column: span 4; grid-row: span 2; }
.gallery__empty {
  grid-column: 1 / -1; grid-row: span 2; display: grid; place-items: center; text-align: center;
  border: 1px solid var(--line-light); color: var(--stone-light);
  font-family: var(--serif); font-style: italic; font-size: 24px;
}

/* ---------- Inquire ---------- */
.inquire { padding: clamp(110px, 14vw, 200px) 0; }
.inquire__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(48px, 8vw, 130px); }
.inquire__intro > p { color: #55534b; max-width: 440px; }
.contact-card { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.contact-card p { margin: 0 0 4px; }
.contact-card__label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px !important; }
.contact-card__name { font-family: var(--serif); font-size: 28px; }
.contact-card a { text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.contact-card a:empty { display: none; }

.form { display: flex; flex-wrap: wrap; gap: 8px 32px; align-content: start; }
.field { position: relative; flex: 1 1 100%; padding-top: 22px; }
.field--half { flex: 1 1 calc(50% - 16px); min-width: 220px; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 17px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid rgba(17,18,15,0.3);
  padding: 12px 0 12px; border-radius: 0; outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color 0.4s;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 10px) 55%, calc(100% - 5px) 55%;
  background-size: 5px 5px; background-repeat: no-repeat; cursor: pointer;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--brass-deep); }
.field label {
  position: absolute; left: 0; top: 34px; font-size: 15px; color: var(--stone);
  pointer-events: none; transition: top 0.35s var(--ease), font-size 0.35s var(--ease), letter-spacing 0.35s, color 0.35s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field label.is-static {
  top: 4px; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass-deep);
}
.field.is-invalid input { border-bottom-color: #a2543f; }
.form .btn { margin-top: 28px; }
.form__status { flex-basis: 100%; margin: 12px 0 0; font-size: 14px; color: var(--brass-deep); min-height: 1.5em; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(245,241,234,0.7); padding: 72px 0 60px; }
.footer__grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-end; }
.footer__brand { display: flex; align-items: center; gap: 22px; color: var(--ivory); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.8; }
.footer__num { font-family: var(--serif); font-size: 72px; font-weight: 300; line-height: 1; letter-spacing: 0; }
.footer__meta { max-width: 520px; font-size: 13px; }
.footer__meta p { margin: 0 0 10px; }
.footer__fine { font-size: 11px; color: rgba(245,241,234,0.4); line-height: 1.6; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(12,12,10,0.96);
  display: grid; grid-template-columns: 80px 1fr 80px; align-items: center;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; display: grid; place-items: center; height: 100vh; padding: 60px 0; }
.lightbox img { max-height: calc(100vh - 140px); max-width: 100%; object-fit: contain; }
.lightbox figcaption { color: var(--stone-light); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 16px; }
.lightbox button { background: none; border: 0; color: var(--ivory); cursor: pointer; font-family: var(--serif); }
.lightbox__nav { font-size: 56px; font-weight: 300; height: 100%; opacity: 0.6; transition: opacity 0.3s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__close { position: absolute; top: 18px; right: 26px; font-size: 44px; font-weight: 300; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.hero .reveal { transition-delay: 1.35s; }
.hero .reveal + .reveal { transition-delay: 1.5s; }
.hero__ctas.reveal { transition-delay: 1.65s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
  .curtain { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .suite { grid-template-columns: 1fr; gap: 26px; padding: 34px; }
  .suite__specs { grid-template-columns: repeat(2, 1fr); }
  .suite__cta { justify-self: start; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature, .feature:not(:nth-child(3n+1)) { padding: 40px 32px 44px 0; border-left: 0; }
  .feature:nth-child(2n) { padding-left: 32px; border-left: 1px solid var(--line-dark); }
}
@media (max-width: 860px) {
  .nav { gap: 16px; padding: 20px var(--gutter); }
  .nav__cta { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; gap: 7px; background: none; border: 0; padding: 10px 0 10px 10px; cursor: pointer; z-index: 51;
  }
  .nav__toggle span { width: 26px; height: 1px; background: currentColor; transition: transform 0.4s var(--ease); }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  body.drawer-open .nav { color: var(--ivory); background: transparent; border-color: transparent; }

  .hero__facts { grid-template-columns: 1fr 1fr; }
  .hero__facts > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero__facts > div:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .hero__facts > div { padding: 18px 12px 20px 0; }
  .hero__facts > div + div { padding-left: 16px; }
  .hero__scroll { display: none; }

  .intro__grid, .intro__copy, .location__grid, .inquire__grid, .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .intro__copy { gap: 22px; }
  .split__media { min-height: 62vh; }
  .features { grid-template-columns: 1fr; }
  .feature, .feature:not(:nth-child(3n+1)), .feature:nth-child(2n) { padding: 34px 0 38px; border-left: 0; }
  .location__map { position: static; }
  .location__map iframe { aspect-ratio: 1 / 1; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 42vw; gap: 8px; }
  .gallery__item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery__item:nth-child(3n+1) { grid-column: span 2; grid-row: span 1; }
  .lightbox { grid-template-columns: 44px 1fr 44px; }
  .lightbox__nav { font-size: 40px; }
}
@media (max-width: 520px) {
  .suite { padding: 28px 22px; }
  .suite__specs { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
  .suite__specs dd { font-size: 18px; }
  .suite__num { font-size: 68px; }
  .suite__num--word { font-size: 34px; }
  .suite__cta { white-space: normal; text-align: center; justify-self: stretch; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .field--half { flex-basis: 100%; }
}
