:root {
  --ink: #0b1720;
  --ink-soft: #152630;
  --cream: #f4f0e8;
  --paper: #fffdf8;
  --line: #d9d4ca;
  --muted: #68757a;
  --gold: #e5a939;
  --gold-deep: #b87811;
  --blue: #2147ed;
  --sage: #42695e;
  --danger: #9a4d4a;
  --shadow: 0 22px 60px rgba(11, 23, 32, 0.12);
  --radius: 22px;
}

[hidden] {
  display: none !important;
}

.form-error {
  background: #fff0ef;
  border: 1px solid #e7b4b0;
  border-radius: 8px;
  color: #842f2a;
  font-size: 11px;
  margin-top: 12px;
  padding: 11px 13px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(229, 169, 57, 0.75);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(11, 23, 32, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  min-height: 80px;
  padding: 0 clamp(24px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, #f4c35b, #c57a10);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 36px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.brand small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.22em;
  margin-top: 5px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.header-cta {
  background: var(--gold);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  justify-self: end;
  padding: 12px 18px;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: #f0b84b;
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  justify-self: end;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

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

.mobile-menu nav {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 32px;
}

.mobile-menu nav a {
  border-radius: 9px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  padding: 10px 12px;
}

.mobile-menu nav a:hover {
  background: rgba(255,255,255,.08);
  color: white;
}

.hero {
  background:
    radial-gradient(circle at 16% 14%, rgba(229, 169, 57, 0.12), transparent 26%),
    var(--ink);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  min-height: 680px;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
  padding: clamp(70px, 8vw, 126px) clamp(28px, 7vw, 110px);
  padding-right: clamp(34px, 4vw, 68px);
}

.eyebrow {
  align-items: center;
  color: var(--gold-deep);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.2em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: currentColor;
  height: 1px;
  width: 32px;
}

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

.hero h1,
.section-heading h2,
.about-copy h2,
.inquiry-copy h2,
.faq-intro h2,
.tour-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
}

.hero h1 {
  font-size: clamp(54px, 6.2vw, 94px);
}

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

.hero-lede {
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
  margin: 30px 0 32px;
  max-width: 560px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 26px;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255,255,255,.06);
}

.phone-link {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.phone-link span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-link strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}

.hero-visual {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, rgba(11, 23, 32, 0.55), transparent 34%),
    linear-gradient(0deg, rgba(11,23,32,.28), transparent 35%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-visual > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.availability-float {
  align-items: center;
  backdrop-filter: blur(15px);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 13px;
  bottom: 34px;
  color: var(--ink);
  display: flex;
  gap: 12px;
  left: 34px;
  padding: 14px 18px;
  position: absolute;
  z-index: 2;
}

.availability-float div {
  display: flex;
  flex-direction: column;
}

.availability-float strong {
  font-size: 12px;
}

.availability-float small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 2px;
}

.pulse {
  background: #2d9b70;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(45,155,112,.13);
  height: 8px;
  width: 8px;
}

.hero-badge {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 108px;
  justify-content: center;
  position: absolute;
  right: 34px;
  text-align: center;
  top: 34px;
  width: 108px;
  z-index: 2;
}

.hero-badge strong {
  font-family: Georgia, serif;
  font-size: 29px;
  line-height: 1;
}

.hero-badge span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.25;
  margin-top: 6px;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 7vw, 110px);
}

.trust-strip > div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 14px;
  min-height: 88px;
  padding: 18px clamp(16px, 2.5vw, 40px);
}

.trust-strip > div:first-child {
  padding-left: 0;
}

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

.trust-strip strong {
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.trust-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 9vw, 130px) clamp(24px, 7vw, 110px);
}

.suites-section {
  background:
    linear-gradient(rgba(11,23,32,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,23,32,.025) 1px, transparent 1px),
    var(--cream);
  background-size: 36px 36px;
}

.section-heading h2,
.about-copy h2,
.inquiry-copy h2,
.faq-intro h2 {
  font-size: clamp(42px, 5vw, 67px);
}

.split-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
}

.split-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 5px;
  max-width: 360px;
}

.availability-summary {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  margin-bottom: 7px;
}

.availability-summary strong {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

.availability-summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.suite-toolbar {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 6px;
  margin-bottom: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.suite-toolbar::-webkit-scrollbar {
  display: none;
}

.suite-toolbar button {
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 750;
  padding: 14px 18px 12px;
}

.suite-toolbar button.active {
  border-bottom-color: var(--gold-deep);
  color: var(--ink);
}

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

.suite-card {
  background: var(--paper);
  border: 1px solid rgba(11,23,32,.09);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(11,23,32,.05);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.suite-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.suite-card.rented {
  opacity: .78;
}

.suite-image-wrap {
  aspect-ratio: 4 / 3;
  background: #d8d1c3;
  overflow: hidden;
  position: relative;
}

.suite-image-wrap::after {
  background: linear-gradient(0deg, rgba(11,23,32,.48), transparent 44%);
  content: "";
  inset: 0;
  position: absolute;
}

.suite-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

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

.status {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  gap: 7px;
  left: 14px;
  letter-spacing: .07em;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
  z-index: 2;
}

.status i {
  background: var(--sage);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.status.coming-soon i {
  background: var(--gold-deep);
}

.status.rented i {
  background: var(--danger);
}

.suite-number {
  bottom: 14px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  left: 16px;
  letter-spacing: .15em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.suite-card-body {
  padding: 22px;
}

.suite-title-row {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.suite-title-row p {
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.suite-title-row h3 {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0;
}

.suite-title-row > strong {
  font-size: 12px;
  line-height: 1.2;
  max-width: 90px;
  text-align: right;
}

.suite-description {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 17px 0;
}

.suite-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.suite-card li {
  background: var(--cream);
  border-radius: 999px;
  color: #556267;
  font-size: 9px;
  font-weight: 650;
  padding: 6px 9px;
}

.suite-card button {
  align-items: center;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: .05em;
  padding: 16px 0 0;
  text-transform: uppercase;
  width: 100%;
}

.suite-card button span,
.text-link span,
.submit-button span {
  color: var(--gold-deep);
  font-size: 16px;
}

.dark-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(33,71,237,.16), transparent 28%),
    var(--ink);
  color: white;
  padding: clamp(76px, 9vw, 130px) clamp(24px, 7vw, 110px);
}

.amenities-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
}

.amenities-heading h2 {
  font-size: clamp(42px, 5vw, 67px);
}

.amenities-heading > p {
  color: rgba(255,255,255,.56);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 5px;
  max-width: 390px;
}

.amenity-grid {
  border-left: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.amenity-grid article {
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.12);
  min-height: 215px;
  padding: 32px;
}

.amenity-grid article > span {
  align-items: center;
  border: 1px solid rgba(229,169,57,.4);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-family: Georgia, serif;
  font-size: 13px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.amenity-grid h3 {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  margin: 24px 0 8px;
}

.amenity-grid p {
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  max-width: 280px;
}

.about-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(46px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
}

.about-image {
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.about-image > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.image-note {
  background: rgba(11,23,32,.94);
  bottom: 0;
  color: white;
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 22px 26px;
  position: absolute;
}

.image-note strong {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
}

.image-note span {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  margin-top: 4px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 26px 0;
  max-width: 540px;
}

.professional-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 28px;
}

.professional-list span {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  min-height: 40px;
}

.professional-list span::before {
  color: var(--gold-deep);
  content: "•";
  font-size: 19px;
  margin-right: 9px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 22px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-section {
  background: var(--cream);
  padding: clamp(76px, 9vw, 120px) clamp(24px, 7vw, 110px);
}

.process-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 250px;
  padding: 34px;
}

.process-grid article > span {
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 14px;
}

.process-grid h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  margin: 70px 0 10px;
}

.process-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  max-width: 300px;
}

.tour-banner {
  align-items: center;
  background:
    radial-gradient(circle at 88% 50%, rgba(255,255,255,.16), transparent 23%),
    var(--blue);
  color: white;
  display: flex;
  justify-content: space-between;
  min-height: 250px;
  overflow: hidden;
  padding: 50px clamp(24px, 7vw, 110px);
  position: relative;
}

.tour-banner::after {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  content: "";
  height: 380px;
  position: absolute;
  right: 4%;
  top: -80px;
  width: 380px;
}

.tour-banner h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.button.warm {
  background: var(--gold);
  color: var(--ink);
  min-width: 210px;
  position: relative;
  z-index: 1;
}

.inquiry-section {
  background: var(--ink);
  color: white;
  display: grid;
  gap: clamp(40px, 7vw, 110px);
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  padding: clamp(76px, 9vw, 130px) clamp(24px, 7vw, 110px);
}

.inquiry-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.56);
  font-size: 14px;
  line-height: 1.8;
  margin: 26px 0 34px;
  max-width: 460px;
}

.contact-lines {
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
}

.contact-lines > * {
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.contact-lines small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-lines strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  margin-top: 4px;
}

.inquiry-form {
  align-self: start;
  background: var(--paper);
  border-radius: 18px;
  color: var(--ink);
  min-height: 565px;
  padding: clamp(24px, 3vw, 38px);
}

.form-intro {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.form-intro span {
  font-family: Georgia, serif;
  font-size: 25px;
}

.form-intro strong {
  color: var(--sage);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.form-grid label {
  color: #58656a;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  font-weight: 800;
  gap: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
  min-height: 44px;
  padding: 11px 12px;
  text-transform: none;
  transition: border 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.form-grid textarea {
  min-height: 92px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(184,120,17,.1);
  outline: none;
}

.submit-button {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 11px;
  font-weight: 850;
  justify-content: space-between;
  margin-top: 20px;
  min-height: 50px;
  padding: 0 18px;
  text-transform: uppercase;
  width: 100%;
}

.form-note {
  color: var(--muted);
  display: block;
  font-size: 9px;
  margin-top: 11px;
  text-align: center;
}

.form-success {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 490px;
  text-align: center;
}

.form-success > span {
  align-items: center;
  background: var(--sage);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 24px;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.form-success h3 {
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  margin: 22px 0 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 390px;
}

.form-success button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  margin-top: 16px;
  padding: 6px 0;
  text-transform: uppercase;
}

.faq-section {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
}

.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 280px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 750;
  justify-content: space-between;
  list-style: none;
  padding: 22px 0;
}

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

.faq-list summary span {
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin: -4px 0 24px;
  max-width: 680px;
}

footer {
  align-items: start;
  background: #071117;
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.3fr .7fr 1fr;
  padding: 54px clamp(24px, 7vw, 110px) 26px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 12px;
  letter-spacing: .08em;
}

.footer-brand small {
  color: rgba(255,255,255,.45);
  font-size: 10px;
  margin-top: 5px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.3);
  font-size: 9px;
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 20px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  }

  .hero-copy {
    padding-left: clamp(28px, 5vw, 70px);
  }

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

  .inquiry-section {
    grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding-right: clamp(28px, 5vw, 70px);
  }

  .hero-visual {
    min-height: 520px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip > div {
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip > div:first-child {
    padding-left: clamp(16px, 2.5vw, 40px);
  }

  .split-heading,
  .amenities-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .availability-summary {
    align-items: flex-start;
  }

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

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 520px;
  }

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

  .process-grid article {
    min-height: 190px;
  }

  .process-grid h3 {
    margin-top: 35px;
  }

  .tour-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .inquiry-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand-mark {
    flex-basis: 32px;
    height: 32px;
    width: 32px;
  }

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

  .brand small {
    display: none;
  }

  .hero-copy {
    padding: 66px 22px 58px;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-badge {
    height: 88px;
    right: 18px;
    top: 18px;
    width: 88px;
  }

  .availability-float {
    bottom: 18px;
    left: 18px;
  }

  .trust-strip {
    padding: 0;
  }

  .trust-strip > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    min-height: 100px;
    padding: 20px;
  }

  .trust-strip > div:first-child {
    padding-left: 20px;
  }

  .section,
  .dark-section,
  .process-section,
  .inquiry-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading h2,
  .about-copy h2,
  .inquiry-copy h2,
  .faq-intro h2,
  .amenities-heading h2 {
    font-size: 43px;
  }

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

  .suite-card.rented {
    opacity: .86;
  }

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

  .amenity-grid article {
    min-height: 190px;
  }

  .about-image {
    min-height: 420px;
  }

  .professional-list {
    grid-template-columns: 1fr;
  }

  .tour-banner {
    padding: 52px 20px;
  }

  .inquiry-form {
    min-height: 0;
    padding: 24px 18px;
  }

  .form-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .form-grid label.full {
    grid-column: auto;
  }

  footer {
    grid-template-columns: 1fr;
    padding-bottom: 84px;
  }

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

  .mobile-sticky-cta {
    align-items: center;
    background: var(--gold);
    bottom: 12px;
    border-radius: 9px;
    box-shadow: 0 10px 30px rgba(11,23,32,.28);
    color: var(--ink);
    display: flex;
    font-size: 11px;
    font-weight: 850;
    justify-content: space-between;
    left: 12px;
    min-height: 50px;
    padding: 0 18px;
    position: fixed;
    right: 12px;
    text-transform: uppercase;
    z-index: 45;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
