:root {
  --paper: #f3f0e8;
  --ink: #18201c;
  --cream: #e9e4d8;
  --accent: #b99a44;
  --brand-navy: #27336d;
  --brand-blue: #263f92;
  --brand-gold-light: #d6c38f;
  --brand-gold: #b99a44;
  --line: rgba(243, 240, 232, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

main,
section,
header,
footer,
nav,
div,
article,
aside,
figure {
  min-width: 0;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.heroImage {
  object-fit: cover;
  object-position: 50% 55%;
  z-index: -3;
  transform: scale(1.015);
}

.heroShade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 16, 13, 0.82) 0%, rgba(10, 16, 13, 0.35) 52%, rgba(10, 16, 13, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 16, 13, 0.62) 0%, transparent 46%);
}

.siteHeader {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brandLogo {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 3.25rem;
}

.brandLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brandWords {
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brandWords small {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.6rem);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

nav a:not(.inquiryNav) {
  opacity: 0.84;
}

.inquiryNav {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--brand-gold-light);
  color: var(--brand-navy);
  font-weight: 750;
}

.heroContent {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  max-width: 57rem;
  padding: 9rem clamp(1.25rem, 7vw, 8rem) 8rem;
}

.eyebrow,
.sectionNumber {
  margin: 0 0 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font: 400 clamp(4rem, 9.5vw, 8.8rem) / 0.81 Georgia, "Times New Roman", serif;
  letter-spacing: -0.065em;
}

.hero h1 em {
  display: block;
  color: #e6cabc;
  font-weight: 400;
}

.heroIntro {
  max-width: 38rem;
  margin: 2rem 0 2.2rem;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.primaryCta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 17.5rem);
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, background 180ms ease;
}

.primaryCta:hover {
  transform: translateY(-2px);
  background: #fff;
}

.heroMeta {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2.2rem;
  display: flex;
  gap: 2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) minmax(18rem, 1.4fr) minmax(15rem, 0.8fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem);
}

.sectionNumber {
  color: var(--accent);
}

.intro h2 {
  max-width: 13ch;
  margin: 0 0 2rem;
  font: 400 clamp(2.8rem, 5.4vw, 5.7rem) / 0.94 Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
}

.intro div > p {
  max-width: 34rem;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.72;
  color: #4b524e;
}

.courtyardPreview {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: 0.35rem;
  background: var(--cream);
}

.courtyardPreview img {
  object-fit: cover;
}

@media (max-width: 820px) {
  .siteHeader nav a:not(.inquiryNav) {
    display: none;
  }

  .heroContent {
    padding-bottom: 10.5rem;
  }

  .heroMeta {
    left: 1.25rem;
    right: 1.25rem;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .heroMeta span:last-child {
    display: none;
  }

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

  .courtyardPreview {
    aspect-ratio: 4 / 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primaryCta {
    transition: none;
  }
}

/* ST89 hub */
.hubPage {
  min-height: 100svh;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  background: #e9e5dc;
}

.hubHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.6rem;
  border-bottom: 1px solid rgba(24, 32, 28, 0.2);
}

.hubHeader p,
.hubFooter {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hubBrand {
  display: inline-flex;
  align-items: baseline;
  font: 400 1.35rem/1 Georgia, serif;
  letter-spacing: -0.06em;
}

.hubBrand strong {
  margin-left: 0.12rem;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.hubIntro {
  display: grid;
  grid-template-columns: minmax(9rem, 0.55fr) minmax(20rem, 1.45fr) minmax(16rem, 0.75fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(3.5rem, 6vw, 6rem);
}

.hubIntro .eyebrow {
  color: var(--accent);
}

.hubIntro h1 {
  margin: 0;
  font: 400 clamp(3.5rem, 7vw, 7.4rem) / 0.9 Georgia, "Times New Roman", serif;
  letter-spacing: -0.065em;
}

.hubLead {
  margin: 0;
  max-width: 30rem;
  color: #545b57;
  font-size: 1rem;
  line-height: 1.65;
}

.destinationGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 33rem;
  overflow: hidden;
  border-radius: 0.35rem;
}

.destination {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 3rem);
  color: #fff;
}

.destination img {
  z-index: -3;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.destination:hover img {
  transform: scale(1.025);
}

.destinationShade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(20deg, rgba(7, 14, 11, 0.76), rgba(7, 14, 11, 0.08) 70%);
}

.destinationTop,
.destinationContent small,
.destinationContent > span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.destinationContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.destinationContent small {
  margin-bottom: 0.8rem;
  opacity: 0.68;
}

.destinationContent strong {
  margin-bottom: 1.7rem;
  font: 400 clamp(2.8rem, 5.3vw, 5.8rem) / 0.9 Georgia, serif;
  letter-spacing: -0.055em;
}

.destinationContent > span {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.destinationContent b {
  font-size: 1rem;
}

.profileDestination {
  background: #202824;
}

.profileTexture {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  opacity: 0.16;
}

.profileTexture i {
  align-self: center;
  font: italic 400 min(35vw, 34rem)/0.7 Georgia, serif;
  letter-spacing: -0.18em;
}

.profileTexture i:last-child {
  color: #d97055;
}

.hubFooter {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0 2.6rem;
  color: #666d69;
}

/* The Suites details */
.factsStrip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(24, 32, 28, 0.16);
  background: var(--paper);
}

.factsStrip div {
  padding: clamp(2rem, 4vw, 4.2rem);
  border-right: 1px solid rgba(24, 32, 28, 0.16);
}

.factsStrip div:last-child {
  border-right: 0;
}

.factsStrip strong {
  display: block;
  margin-bottom: 0.6rem;
  font: 400 clamp(2.8rem, 4.8vw, 5.2rem)/0.9 Georgia, serif;
  letter-spacing: -0.06em;
}

.factsStrip span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
  color: #646b67;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.amenitiesStrip {
  display: grid;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(36rem, 1.35fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--brand-navy);
  color: #fff;
}

.amenitiesHeading h2 {
  margin: 0;
  font: 400 clamp(2.8rem, 5vw, 5.3rem)/0.94 Georgia, serif;
  letter-spacing: -0.055em;
}

.amenitiesGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.amenitiesGrid div {
  min-width: 0;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.amenitiesGrid div:last-child {
  border-right: 0;
}

.amenitiesGrid span,
.amenitiesGrid strong {
  display: block;
}

.amenitiesGrid span {
  margin-bottom: 1rem;
  color: var(--brand-gold-light);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.amenitiesGrid strong {
  font: 400 clamp(1.05rem, 1.45vw, 1.45rem)/1.15 Georgia, serif;
  overflow-wrap: anywhere;
}

.planSection {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(25rem, 1.25fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem);
  background: #222a26;
  color: var(--paper);
}

.planCopy h2,
.locationCopy h2 {
  margin: 0 0 2rem;
  font: 400 clamp(3rem, 5.7vw, 6.2rem)/0.92 Georgia, serif;
  letter-spacing: -0.06em;
}

.planCopy > p:last-child {
  max-width: 34rem;
  color: rgba(243, 240, 232, 0.7);
  font-size: 1.02rem;
  line-height: 1.7;
}

.floorplan {
  position: relative;
  display: block;
  aspect-ratio: 1.86 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 0.3rem;
  background: #fff;
}

.floorplan img {
  object-fit: contain !important;
  padding: 1.25rem;
  transition: transform 220ms ease;
}

.floorplan:hover img {
  transform: scale(1.015);
}

.floorplanHint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  background: rgba(39, 51, 109, 0.92);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.roomSection {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5.5rem);
  background: var(--paper);
}

.roomIntro {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(22rem, 1.35fr) minmax(15rem, 0.65fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.roomIntro h2,
.sharedHeading h2,
.inquiryCopy h2 {
  margin: 0;
  font: 400 clamp(3rem, 5.7vw, 6.2rem)/0.92 Georgia, serif;
  letter-spacing: -0.06em;
}

.roomIntro > div > p,
.sharedHeading > p:last-child,
.inquiryCopy > p {
  max-width: 40rem;
  color: #555d58;
  line-height: 1.7;
}

.visualNote {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--brand-gold);
  color: #6a706c;
  font-size: 0.76rem;
  line-height: 1.6;
}

.roomGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 3.2rem);
}

.roomCard {
  overflow: hidden;
  border: 1px solid rgba(24, 32, 28, 0.16);
  background: #fff;
}

.roomVisual {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #dedbd3;
}

.roomVisual img,
.sharedVisual img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .65, .2, 1);
}

.roomCard:hover .roomVisual img,
.sharedCard:hover .sharedVisual img {
  transform: scale(1.025);
}

.visualBadge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(27, 33, 30, .68);
  color: #fff;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.roomCardBody {
  padding: clamp(1.4rem, 3vw, 2.6rem);
}

.roomCardMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--brand-navy);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.roomCardMeta strong {
  color: #555d58;
}

.roomCard h3,
.sharedCard h3 {
  margin: 1.2rem 0 .75rem;
  font: 400 clamp(2rem, 3.25vw, 3.3rem)/1 Georgia, serif;
  letter-spacing: -.045em;
}

.roomCardBody > p,
.sharedCard > div > p {
  margin: 0;
  color: #555d58;
  line-height: 1.65;
}

.roomInquiryButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-radius: .15rem;
  background: var(--brand-navy);
  color: #fff;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.roomInquiryButton:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.detailLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(24, 32, 28, .2);
  color: var(--brand-navy);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.sharedSection {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5.5rem);
  background: #e9e5dc;
}

.sharedHeading {
  display: grid;
  grid-template-columns: minmax(9rem, .45fr) minmax(22rem, 1.2fr) minmax(16rem, .65fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.sharedGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sharedCard {
  background: var(--paper);
}

.sharedCard:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
}

.sharedCard:last-child > .sharedVisual {
  aspect-ratio: 16 / 10;
}

.sharedVisual {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
}

.sharedCard > div {
  padding: clamp(1.25rem, 2.5vw, 2.2rem);
}

.sharedCard > div > span {
  color: var(--brand-navy);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sharedCard h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

.sharedFacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
  border-top: 1px solid rgba(24, 32, 28, .2);
  border-bottom: 1px solid rgba(24, 32, 28, .2);
}

.sharedFacts > div {
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border-right: 1px solid rgba(24, 32, 28, .2);
}

.sharedFacts > div:last-child {
  border-right: 0;
}

.sharedFacts span,
.sharedFacts strong {
  display: block;
}

.sharedFacts span {
  color: var(--brand-gold);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sharedFacts strong {
  margin: .8rem 0;
  font: 400 1.8rem/1.05 Georgia, serif;
}

.sharedFacts p {
  margin: 0;
  color: #555d58;
  line-height: 1.55;
}

.inquirySection {
  display: grid;
  grid-template-columns: minmax(18rem, .75fr) minmax(28rem, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--brand-navy);
  color: #fff;
}

.inquiryCopy {
  align-self: start;
  position: sticky;
  top: 2rem;
}

.inquiryCopy .sectionNumber {
  color: var(--brand-gold-light);
}

.inquiryCopy > p {
  color: rgba(255,255,255,.72);
}

.inquiryTrust {
  display: grid;
  gap: .7rem;
  margin-top: 2.5rem;
}

.inquiryTrust span {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.inquiryTrust span::before {
  content: "✓";
  color: var(--brand-gold-light);
}

.leadForm {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: clamp(1.4rem, 3.5vw, 3.2rem);
  background: var(--paper);
  color: var(--ink);
}

.leadHoneypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.leadField {
  display: grid;
  gap: .55rem;
}

.leadFieldFull,
.leadConsent,
.leadSubmit {
  grid-column: 1 / -1;
}

.leadField label {
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.leadField label span {
  color: #777d79;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
}

.leadField input,
.leadField select,
.leadField textarea {
  width: 100%;
  min-width: 0;
  padding: .9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 32, 28, .28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.leadField input:focus,
.leadField select:focus,
.leadField textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 1px 0 var(--brand-blue);
}

.leadField textarea {
  resize: vertical;
}

.leadConsent {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  color: #555d58;
  font-size: .78rem;
  line-height: 1.55;
}

.leadConsent input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: .12rem;
  accent-color: var(--brand-navy);
}

.leadSubmit {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: space-between;
  padding-top: .5rem;
}

.leadSubmit button {
  flex: 0 0 auto;
  padding: 1rem 1.2rem;
  border: 0;
  border-radius: .15rem;
  background: var(--brand-navy);
  color: #fff;
  cursor: pointer;
  font: 750 .7rem/1 Arial, sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.leadSubmit button:hover {
  background: var(--brand-blue);
}

.leadSubmit small {
  max-width: 24rem;
  color: #717773;
  font-size: .68rem;
  line-height: 1.5;
}

.leadResultPage {
  min-height: 100svh;
  background: var(--brand-navy);
  color: #fff;
}

.leadResult {
  display: grid;
  min-height: 100svh;
  padding: clamp(1.5rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(38, 63, 146, .9), transparent 45%),
    var(--brand-navy);
}

.leadResultBrand {
  display: flex;
  align-items: center;
  align-self: start;
  gap: .8rem;
  width: fit-content;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.leadResultBrand img {
  width: 2.2rem;
  height: 3.2rem;
  object-fit: contain;
}

.leadResultBrand span,
.leadResultBrand small {
  display: block;
}

.leadResultBrand small {
  margin-top: .2rem;
  color: rgba(255,255,255,.65);
  font-size: .58rem;
}

.leadResult > section {
  align-self: center;
  max-width: 60rem;
  padding-block: 5rem;
}

.leadResult h1 {
  max-width: 11ch;
  margin: 0 0 1.5rem;
  font: 400 clamp(3.4rem, 8vw, 8rem)/.9 Georgia, serif;
  letter-spacing: -.065em;
}

.leadResult section > p:not(.sectionNumber) {
  max-width: 38rem;
  color: rgba(255,255,255,.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.leadResult section > a {
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.locationSection {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 82svh;
  overflow: hidden;
  color: #fff;
}

.locationImage {
  z-index: -3;
  object-fit: cover;
}

.locationShade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(0deg, rgba(9, 14, 11, 0.82), rgba(9, 14, 11, 0.08) 70%);
}

.locationCopy {
  width: 100%;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 8rem);
}

.locationCopy h2 {
  max-width: 12ch;
}

.locationCopy > p:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.neighborhoodSection {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem);
  background: #e9e5dc;
}

.neighborhoodIntro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(20rem, 1.25fr) minmax(17rem, 0.75fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}

.neighborhoodIntro h2 {
  margin: 0;
  font: 400 clamp(3rem, 5.7vw, 6.2rem)/0.92 Georgia, serif;
  letter-spacing: -0.06em;
}

.neighborhoodIntro > p:last-child {
  margin: 0;
  color: #505753;
  font-size: 1rem;
  line-height: 1.7;
}

.benefitGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid rgba(24, 32, 28, 0.22);
  border-bottom: 1px solid rgba(24, 32, 28, 0.22);
}

.benefitGrid article {
  min-height: 21rem;
  padding: 2rem clamp(1.2rem, 2.4vw, 2.5rem) 2.4rem;
  border-right: 1px solid rgba(24, 32, 28, 0.22);
}

.benefitGrid article:nth-child(3n) {
  border-right: 0;
}

.benefitGrid article:nth-child(-n+3) {
  border-bottom: 1px solid rgba(24, 32, 28, 0.22);
}

.benefitGrid article > span {
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.benefitGrid h3 {
  margin: 5.5rem 0 1.25rem;
  font: 400 clamp(1.55rem, 2.2vw, 2.3rem)/1.04 Georgia, serif;
  letter-spacing: -0.04em;
}

.benefitGrid p {
  margin: 0;
  color: #5b625e;
  font-size: 0.87rem;
  line-height: 1.65;
}

.artistCallout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding: clamp(2.2rem, 5vw, 5rem);
  border-radius: 0.35rem;
  background: var(--brand-gold-light);
  color: var(--brand-navy);
}

.artistCallout p {
  max-width: 18ch;
  margin: 0;
  font: 400 clamp(2.5rem, 5vw, 5.4rem)/0.94 Georgia, serif;
  letter-spacing: -0.055em;
}

.artistCallout span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.instagramCallout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid rgba(39, 51, 109, 0.18);
  border-radius: 0.35rem;
  background: #f7f4ed;
  color: var(--brand-navy);
  transition: transform 180ms ease, border-color 180ms ease;
}

.instagramCallout:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 51, 109, 0.42);
}

.instagramWordmark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 10rem;
}

.instagramLogo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
}

.instagramCopy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.instagramCopy small {
  color: #656778;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.instagramCopy strong {
  font: 400 clamp(1.5rem, 2.4vw, 2.5rem)/1 Georgia, serif;
  letter-spacing: -0.035em;
}

.instagramArrow {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(39, 51, 109, 0.3);
  border-radius: 50%;
  font-size: 1.2rem;
}

.audienceSection {
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(28rem, 1.15fr);
  gap: clamp(3rem, 8vw, 10rem);
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem);
  background: #18201c;
  color: var(--paper);
}

.audienceHeading h2 {
  max-width: 11ch;
  margin: 0 0 2rem;
  font: 400 clamp(3rem, 5.7vw, 6.2rem)/0.92 Georgia, serif;
  letter-spacing: -0.06em;
}

.audienceHeading > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: rgba(243, 240, 232, 0.66);
  font-size: 1rem;
  line-height: 1.72;
}

.audienceList {
  border-top: 1px solid rgba(243, 240, 232, 0.24);
}

.audienceList article {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0 2.2rem;
  border-bottom: 1px solid rgba(243, 240, 232, 0.24);
}

.audienceIndex {
  color: #dc745a;
  font: italic 400 1.4rem/1 Georgia, serif;
}

.audienceList h3 {
  margin: 0 0 0.7rem;
  font: 400 clamp(1.5rem, 2.3vw, 2.4rem)/1 Georgia, serif;
  letter-spacing: -0.04em;
}

.audienceList p {
  max-width: 37rem;
  margin: 0;
  color: rgba(243, 240, 232, 0.62);
  font-size: 0.9rem;
  line-height: 1.62;
}

.suiteFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.25rem, 4vw, 4.5rem);
  background: var(--brand-navy);
  color: #fff;
}

.suiteFooter p {
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.65;
}

.footerLinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footerLinks a {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.78;
}

.legalPage {
  min-height: 100svh;
  background: var(--paper);
}

.legalContent {
  display: grid;
  grid-template-columns: minmax(15rem, .7fr) minmax(24rem, 1.3fr);
  gap: clamp(3rem, 8vw, 9rem);
  min-height: calc(100svh - 14rem);
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem);
}

.legalContent h1 {
  margin: 0;
  color: var(--brand-navy);
  font: 400 clamp(4rem, 8vw, 8rem)/.88 Georgia, "Times New Roman", serif;
  letter-spacing: -.065em;
}

.legalDetails {
  display: grid;
  gap: 2.8rem;
  align-content: start;
  padding-top: .35rem;
}

.legalDetails section {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(24, 32, 28, .2);
}

.legalDetails h2 {
  margin: 0 0 1rem;
  color: var(--brand-gold);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legalDetails p,
.legalDetails address {
  margin: 0;
  color: #4f5752;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.75;
}

.legalDetails a {
  color: var(--brand-navy);
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.mobileInquiryCta {
  display: none;
}

/* The Suites detail pages */
.suiteDetailPage {
  min-height: 100svh;
  background: var(--paper);
}

.detailHeader {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.7rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  background: var(--brand-navy);
  color: #fff;
}

.detailHero {
  display: grid;
  grid-template-columns: minmax(24rem, 1.15fr) minmax(22rem, .85fr);
  min-height: calc(100svh - 6.7rem);
}

.detailHeroVisual {
  position: relative;
  min-height: 44rem;
  margin: 0;
  overflow: hidden;
  background: #dedbd3;
}

.detailHeroVisual img {
  object-fit: cover;
}

.detailHeroCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7.5rem) clamp(1.5rem, 5vw, 6rem);
}

.detailBack {
  align-self: flex-start;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(24, 32, 28, .28);
  color: #5b625e;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.detailHeroCopy h1 {
  margin: 0;
  color: var(--brand-navy);
  font: 400 clamp(4.2rem, 8vw, 8rem)/.82 Georgia, "Times New Roman", serif;
  letter-spacing: -.065em;
}

.detailArea {
  margin: 1rem 0 clamp(2rem, 4vw, 4rem);
  color: var(--brand-gold);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.detailHeroCopy h2 {
  max-width: 14ch;
  margin: 0 0 1.2rem;
  font: 400 clamp(2rem, 3.7vw, 3.7rem)/.98 Georgia, serif;
  letter-spacing: -.045em;
}

.detailLead {
  max-width: 35rem;
  margin: 0;
  color: #555d58;
  font-size: 1.02rem;
  line-height: 1.7;
}

.detailAvailability {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 1.7rem 0 0;
  color: var(--brand-navy);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.detailAvailability span {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 .35rem rgba(185, 154, 68, .14);
}

.detailPrimaryCta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 23rem);
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  border-radius: 999px;
  background: var(--brand-navy);
  color: #fff;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.detailPrimaryCta:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.detailFeatures {
  display: grid;
  grid-template-columns: minmax(18rem, .75fr) minmax(25rem, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--brand-navy);
  color: #fff;
}

.detailFeatures h2,
.detailExplore h2 {
  margin: 0;
  font: 400 clamp(2.8rem, 5vw, 5.3rem)/.94 Georgia, serif;
  letter-spacing: -.055em;
}

.detailFeatures .sectionNumber {
  color: var(--brand-gold-light);
}

.detailFeatures ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  list-style: none;
}

.detailFeatures li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.detailFeatures li span {
  color: var(--brand-gold-light);
  font-size: .68rem;
  letter-spacing: .14em;
}

.detailFeatures li strong {
  font: 400 clamp(1.15rem, 2vw, 1.8rem)/1.2 Georgia, serif;
}

.detailExplore {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5.5rem);
}

.detailExploreHeading {
  display: grid;
  grid-template-columns: minmax(9rem, .45fr) minmax(22rem, 1.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.detailExploreGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(24, 32, 28, .2);
}

.detailExploreGrid a {
  position: relative;
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  padding: 1.6rem;
  border-right: 1px solid rgba(24, 32, 28, .2);
  border-bottom: 1px solid rgba(24, 32, 28, .2);
  transition: background 180ms ease, color 180ms ease;
}

.detailExploreGrid a:nth-child(3n) {
  border-right: 0;
}

.detailExploreGrid a:hover {
  background: var(--brand-navy);
  color: #fff;
}

.detailExploreGrid span,
.detailExploreGrid small {
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .65;
}

.detailExploreGrid strong {
  margin: auto 0 .45rem;
  font: 400 clamp(1.5rem, 2.5vw, 2.5rem)/1 Georgia, serif;
  letter-spacing: -.04em;
}

.detailExploreGrid b {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--brand-gold);
  font-size: 1.2rem;
}

@media (max-width: 820px) {
  .hubIntro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hubLead {
    max-width: 34rem;
  }

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

  .destination {
    min-height: 30rem;
  }

  .hubFooter span:nth-child(2) {
    display: none;
  }

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

  .factsStrip div:nth-child(even) {
    border-right: 0;
  }

  .factsStrip div:not(:last-child) {
    border-bottom: 1px solid rgba(24, 32, 28, 0.16);
  }

  .factsStrip .availabilityFact {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .planSection,
  .amenitiesStrip,
  .neighborhoodIntro,
  .audienceSection,
  .roomIntro,
  .sharedHeading,
  .inquirySection,
  .legalContent {
    grid-template-columns: 1fr;
  }

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

  .amenitiesGrid div:nth-child(2n) {
    border-right: 0;
  }

  .amenitiesGrid div:nth-child(-n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .roomGrid {
    gap: 1.2rem;
  }

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

  .sharedCard {
    display: grid;
    grid-template-columns: minmax(12rem, 1fr) minmax(14rem, 1fr);
  }

  .sharedVisual {
    aspect-ratio: auto;
    min-height: 20rem;
  }

  .detailHero,
  .detailFeatures,
  .detailExploreHeading {
    grid-template-columns: 1fr;
  }

  .detailHeroVisual {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

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

  .detailExploreGrid a:nth-child(3n) {
    border-right: 1px solid rgba(24, 32, 28, .2);
  }

  .detailExploreGrid a:nth-child(2n) {
    border-right: 0;
  }

  .inquiryCopy {
    position: static;
  }

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

  .benefitGrid article:nth-child(2) {
    border-right: 0;
  }

  .benefitGrid article:nth-child(3n) {
    border-right: 1px solid rgba(24, 32, 28, 0.22);
  }

  .benefitGrid article:nth-child(even) {
    border-right: 0;
  }

  .benefitGrid article:nth-child(-n+4) {
    border-bottom: 1px solid rgba(24, 32, 28, 0.22);
  }

  .benefitGrid article:nth-child(n+5) {
    border-bottom: 0;
  }

  .artistCallout {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagramCallout {
    grid-template-columns: 1fr auto;
  }

  .instagramWordmark {
    grid-column: 1 / -1;
  }

  .floorplan {
    aspect-ratio: 1.5 / 1;
  }
}

@media (max-width: 520px) {
  .hubPage {
    padding-inline: 1rem;
  }

  .siteHeader {
    padding-inline: 1rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brandWords {
    max-width: 8.5rem;
    overflow-wrap: anywhere;
  }

  .inquiryNav {
    padding: 0.65rem 0.75rem;
  }

  .hubHeader p {
    display: none;
  }

  .hubIntro h1 {
    font-size: 3.2rem;
  }

  .destinationContent strong {
    font-size: 3.1rem;
  }

  .factsStrip strong {
    font-size: 2.5rem;
  }

  .factsStrip div {
    overflow: hidden;
  }

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

  .amenitiesGrid div,
  .amenitiesGrid div:nth-child(2n) {
    border-right: 0;
  }

  .amenitiesGrid div:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .floorplan {
    aspect-ratio: 1.2 / 1;
  }

  .floorplanHint {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .roomGrid,
  .leadForm,
  .sharedFacts,
  .sharedCard {
    grid-template-columns: 1fr;
  }

  .roomIntro h2,
  .sharedHeading h2,
  .inquiryCopy h2 {
    font-size: 2.85rem;
  }

  .roomCard h3 {
    font-size: 2rem;
  }

  .sharedVisual {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .detailHeader {
    padding-inline: 1rem;
  }

  .detailHeader nav a:not(.inquiryNav) {
    display: none;
  }

  .detailHeroCopy {
    padding: 3rem 1.25rem 4rem;
  }

  .detailHeroCopy h1 {
    font-size: 4rem;
    overflow-wrap: anywhere;
  }

  .detailFeatures h2,
  .detailExplore h2 {
    font-size: 2.85rem;
    overflow-wrap: anywhere;
  }

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

  .detailExploreGrid a:nth-child(n) {
    border-right: 0;
  }

  .sharedFacts > div {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 32, 28, .2);
  }

  .sharedFacts > div:last-child {
    border-bottom: 0;
  }

  .leadSubmit {
    align-items: stretch;
    flex-direction: column;
  }

  .leadSubmit button {
    width: 100%;
  }

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

  .benefitGrid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 32, 28, 0.22);
  }

  .benefitGrid article:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 32, 28, 0.22);
  }

  .benefitGrid article:last-child {
    border-bottom: 0;
  }

  .benefitGrid h3 {
    margin-top: 3rem;
  }

  .suiteFooter {
    align-items: stretch;
    flex-direction: column;
    gap: 1.4rem;
    width: 100%;
    padding-bottom: calc(7rem + env(safe-area-inset-bottom));
  }

  .suiteFooter .brand,
  .suiteFooter .footerLinks,
  .suiteFooter p {
    width: 100%;
    max-width: 100%;
  }

  .suiteFooter .brandWords {
    max-width: none;
    overflow-wrap: normal;
  }

  .suiteFooter .footerLinks {
    gap: .85rem 1.2rem;
  }

  .suiteFooter p {
    margin: 0;
    overflow-wrap: anywhere;
  }

  .legalFooter {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
  }

  .mobileInquiryCta {
    position: fixed;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: 1rem;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: var(--brand-navy);
    color: #fff;
    box-shadow: 0 0.9rem 2.4rem rgba(20, 25, 54, 0.3);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

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

  .instagramArrow {
    display: none;
  }

  .instagramCopy strong {
    overflow-wrap: anywhere;
  }

  .heroMeta {
    flex-wrap: wrap;
  }

  .hero h1,
  .intro h2,
  .planCopy h2,
  .locationCopy h2,
  .neighborhoodIntro h2,
  .audienceHeading h2,
  .roomIntro h2,
  .sharedHeading h2,
  .inquiryCopy h2,
  .artistCallout p {
    overflow-wrap: anywhere;
  }

  .legalContent h1 {
    font-size: 4rem;
    overflow-wrap: anywhere;
  }
}
