:root {
  --ink: #10151b;
  --ink-soft: #27313a;
  --paper: #fbf7ee;
  --paper-deep: #efe7da;
  --white: #ffffff;
  --forest: #163d35;
  --forest-dark: #09241f;
  --brass: #b9853e;
  --clay: #8f4d36;
  --blue: #244b63;
  --line: rgba(16, 21, 27, 0.12);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 22px 64px rgba(16, 21, 27, 0.12);
  --radius: 8px;
  --header-height: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body,
button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  letter-spacing: 0;
}

p,
li,
.section-heading p,
.copy-block p,
.garage-copy p,
.faq-intro p,
.final-cta-shell p,
.suite-summary p,
.policy-card p,
.detail-panel p,
.hero-copy p,
.subpage-inner p,
.room-card-body p,
.price-line span,
.location-card p,
.faq-answer p,
.experience-feature-copy p,
.experience-step p,
.footer-brand p,
.footer-contact a,
.footer-contact p {
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(185, 133, 62, 0.5);
  outline-offset: 3px;
}

.site-main {
  min-height: 100vh;
  overflow: hidden;
  overflow: clip;
}

.section {
  position: relative;
  width: 100%;
}

.section-about,
.section-stay-experience,
.section-rooms,
.section-garage,
.section-amenities,
.section-location,
.section-faq,
.section-final-cta,
.policy-section,
.suite-overview,
.suite-gallery-section,
.suite-details,
.suite-amenities-section,
.page-content-section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.section-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 76px 18px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-label-light {
  color: #f5d8a9;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.heading-wide {
  max-width: 900px;
}

.section-heading h2,
.copy-block h2,
.garage-copy h2,
.faq-intro h2,
.final-cta-shell h2,
.suite-summary h2,
.policy-card h2,
.detail-panel h2 {
  margin-top: 10px;
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading p,
.copy-block p,
.garage-copy p,
.faq-intro p,
.final-cta-shell p,
.suite-summary p,
.policy-card p,
.detail-panel p {
  margin-top: 16px;
  color: rgba(16, 21, 27, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(3px) rotate(45deg);
}

.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(22, 61, 53, 0.24);
}

.button-secondary {
  background: var(--paper-deep);
  color: var(--ink);
  border-color: var(--line);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button-glass,
.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-ghost-light:hover,
.button-glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(22, 61, 53, 0.28);
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--brass);
  text-decoration-color: currentColor;
  transform: translateX(3px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px) rotate(45deg);
}

/* Header */
.site-header {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 12px;
  pointer-events: none;
}

.header-bar {
  width: min(100%, 1180px);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 10px 10px 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 21, 27, 0.28);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-solid .header-bar,
.site-header.menu-open .header-bar {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: rgba(16, 21, 27, 0.1);
}

.brand-mark {
  position: relative;
  display: block;
  width: 104px;
  height: 32px;
  flex: 0 0 104px;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: opacity 160ms ease;
}

.brand-mark-dark {
  opacity: 0;
}

.site-header.is-solid .brand-mark-light,
.site-header.menu-open .brand-mark-light {
  opacity: 0;
}

.site-header.is-solid .brand-mark-dark,
.site-header.menu-open .brand-mark-dark {
  opacity: 1;
}

.primary-nav,
.header-actions {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.site-header.is-solid .menu-toggle:hover,
.site-header.is-solid .menu-toggle:focus-visible,
.site-header.menu-open .menu-toggle:hover,
.site-header.menu-open .menu-toggle:focus-visible {
  border-color: rgba(16, 21, 27, 0.18);
  background: rgba(16, 21, 27, 0.06);
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 94px;
  left: 12px;
  right: 12px;
  display: grid;
  gap: 6px;
  max-height: calc(100svh - 110px);
  padding: 14px;
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 21, 27, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: auto;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-header.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  min-height: 46px;
  padding: 11px 10px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: var(--paper-deep);
}

.mobile-menu .mobile-book {
  margin-top: 6px;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: calc(100svh - 72px);
  padding: 116px 18px 220px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.subpage-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--ink);
}

.hero-media img,
.subpage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.hero-shade,
.subpage-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 20, 23, 0.62) 0%, rgba(9, 20, 23, 0.36) 46%, rgba(9, 20, 23, 0.08) 100%),
    linear-gradient(180deg, rgba(9, 20, 23, 0.16) 0%, rgba(9, 20, 23, 0.42) 100%);
}

.hero-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1,
.subpage-inner h1 {
  margin-top: 12px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 44px;
  line-height: 0.98;
  font-weight: 700;
  color: var(--white);
}

.hero-copy p,
.subpage-inner p {
  width: min(100%, 640px);
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.72;
}

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

.hero-facts {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(calc(100% - 36px), 1180px);
  margin: 0 auto;
}

.hero-facts div,
.arrival-item {
  min-height: 82px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-facts strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
}

.arrival-strip {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 14px 18px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.arrival-item {
  background: var(--white);
  border-color: var(--line);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.arrival-item span {
  color: var(--brass);
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.arrival-item strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

/* About */
.split-shell {
  display: grid;
  gap: 34px;
}

.text-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.text-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.text-metrics strong {
  display: block;
  color: var(--forest);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.text-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(16, 21, 27, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.about-media-grid {
  display: grid;
  gap: 12px;
}

.about-media-grid figure,
.garage-image,
.experience-feature,
.room-card-image,
.map-panel,
.suite-gallery,
.copy-block img {
  overflow: hidden;
  border-radius: var(--radius);
}

.about-main-image {
  aspect-ratio: 4 / 5;
}

.about-side-image {
  aspect-ratio: 16 / 10;
}

.about-media-grid img,
.copy-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Guest experience */
.section-stay-experience {
  background: #e9eee5;
}

.experience-layout {
  display: grid;
  gap: 16px;
}

.experience-feature {
  position: relative;
  min-height: 430px;
  color: var(--white);
  background: var(--forest);
}

.experience-feature img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: 0.68;
}

.experience-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 36, 31, 0.08) 0%, rgba(9, 36, 31, 0.78) 100%);
}

.experience-feature-copy {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.experience-feature-copy span,
.experience-step span,
.suite-callout span,
.footer-contact span {
  display: block;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-feature-copy h3 {
  display: block;
  margin-top: 6px;
  max-width: 420px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1.08;
}

.experience-feature-copy p {
  max-width: 460px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.experience-steps {
  display: grid;
  gap: 12px;
}

.experience-step {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(16, 21, 27, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.experience-step h3 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
}

.experience-step p {
  margin-top: 10px;
  color: rgba(16, 21, 27, 0.68);
  line-height: 1.68;
}

.experience-step-dark,
.experience-step-accent {
  color: var(--white);
  border-color: transparent;
}

.experience-step-dark {
  background: var(--forest-dark);
}

.experience-step-accent {
  background: var(--forest);
}

.experience-step-dark h3,
.experience-step-dark p,
.experience-step-accent h3,
.experience-step-accent p {
  color: var(--white);
}

.experience-step-dark p,
.experience-step-accent p {
  color: rgba(255, 255, 255, 0.78);
}

/* Rooms */
.section-rooms {
  background: var(--paper);
}

.room-collection-grid {
  display: grid;
  gap: 16px;
}

.room-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 21, 27, 0.08);
}

.room-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  color: var(--white);
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

@media (hover: hover) {
  .room-card:hover .room-card-image img {
    transform: scale(1.035);
  }
}

.room-card-image span {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(16, 21, 27, 0.68);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.room-card-body {
  padding: 22px 18px 20px;
}

.room-card-body h3 {
  margin-top: 8px;
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.08;
}

.room-card-body p {
  margin-top: 12px;
  color: rgba(16, 21, 27, 0.7);
  line-height: 1.7;
}

.room-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.room-facts span,
.garage-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.price-line {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-line strong,
.price-line span {
  display: block;
}

.price-line strong {
  color: var(--forest);
  font-size: 15px;
}

.price-line span {
  margin-top: 4px;
  color: rgba(16, 21, 27, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

/* Garage and amenities */
.section-garage {
  background: var(--forest-dark);
  color: var(--white);
}

.garage-band {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 70px 18px;
  display: grid;
  gap: 28px;
}

.garage-copy h2,
.garage-copy p {
  color: var(--white);
}

.garage-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.garage-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.garage-points span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.garage-image {
  aspect-ratio: 16 / 11;
}

.garage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-amenities {
  background: #f6f0e6;
}

.copy-block img {
  width: 100%;
  aspect-ratio: 16 / 11;
  margin-top: 24px;
  object-fit: cover;
}

.amenity-grid {
  display: grid;
  gap: 12px;
}

.amenity-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.amenity-card h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.amenity-card ul,
.policy-card ul,
.detail-panel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.amenity-card li,
.policy-card li,
.detail-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(16, 21, 27, 0.72);
}

.amenity-card li::before,
.policy-card li::before,
.detail-panel li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brass);
}

.amenity-card-accent {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.amenity-card-accent h3,
.amenity-card-accent li {
  color: var(--white);
}

/* Location */
.section-location {
  background: var(--paper);
}

.location-layout {
  display: grid;
  gap: 16px;
}

.map-panel {
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.location-grid {
  display: grid;
  gap: 12px;
}

.location-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  min-height: 128px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.location-card img {
  width: 100%;
  height: 100%;
  min-height: 108px;
  object-fit: cover;
  border-radius: var(--radius);
}

.location-card h3 {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.location-card p {
  margin-top: 6px;
  color: rgba(16, 21, 27, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.direction-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(22, 61, 53, 0.18);
  border-radius: 999px;
  background: rgba(22, 61, 53, 0.08);
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.direction-button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.direction-button:hover,
.direction-button:focus-visible {
  border-color: rgba(22, 61, 53, 0.34);
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(22, 61, 53, 0.18);
  transform: translateY(-2px);
}

.direction-button:hover::after,
.direction-button:focus-visible::after {
  transform: translateX(3px) rotate(45deg);
}

/* FAQ */
.section-faq {
  background: #e9eee5;
}

.faq-shell {
  display: grid;
  gap: 28px;
}

.faq-layout {
  display: grid;
  gap: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(16, 21, 27, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.faq-item button {
  width: 100%;
  min-height: 68px;
  padding: 16px 16px;
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 16px;
  font-weight: 900;
}

.faq-item button em {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--forest);
}

.faq-item button em::before,
.faq-item button em::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 9px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.faq-item button em::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item.is-open button em::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 16px;
  color: rgba(16, 21, 27, 0.7);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 18px;
}

/* Final CTA and footer */
.section-final-cta {
  padding: 18px;
  background: var(--paper);
}

.final-cta-shell {
  width: min(100%, 1180px);
  min-height: 440px;
  margin: 0 auto;
  padding: 52px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(9, 36, 31, 0.68), rgba(9, 36, 31, 0.34)),
    var(--final-cta-image, url("../images/home/hero.webp")) center / cover no-repeat;
  color: var(--white);
}

.final-cta-shell h2,
.final-cta-shell p {
  color: var(--white);
}

.final-cta-shell p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
}

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

.footer-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 58px 18px 28px;
}

.footer-main {
  display: grid;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand h2 {
  margin-top: 10px;
  max-width: 680px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 1.08;
}

.footer-brand p {
  max-width: 640px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.footer-contact {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.footer-contact h3 {
  margin-top: 8px;
  font-size: 20px;
}

.footer-contact a,
.footer-contact p {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  position: relative;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
  transform: translateY(-1px);
}

.footer-bottom a:hover::after,
.footer-bottom a:focus-visible::after {
  transform: scaleX(1);
}

/* Subpages */
.interior-page {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  min-height: 580px;
  padding: 128px 18px 70px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.subpage-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.simple-hero {
  min-height: 340px;
  background: var(--paper-deep);
  color: var(--ink);
}

.simple-hero .subpage-inner h1,
.simple-hero .subpage-inner p {
  color: var(--ink);
}

.policy-grid,
.suite-overview-grid,
.details-grid {
  display: grid;
  gap: 16px;
}

.policy-card,
.detail-panel,
.suite-summary,
.suite-fact {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.policy-card-dark,
.detail-panel-accent {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.policy-card-dark h2,
.policy-card-dark li,
.detail-panel-accent h2,
.detail-panel-accent p {
  color: var(--white);
}

.policy-card-wide {
  background: #e9eee5;
}

.suite-overview {
  background: #f6f0e6;
}

.suite-callout {
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.suite-callout strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

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

.suite-fact span {
  display: block;
  color: rgba(16, 21, 27, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.suite-fact strong {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-size: 18px;
}

.suite-gallery-section {
  background: var(--paper);
}

.suite-gallery {
  position: relative;
  background: var(--ink);
}

.gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide:not(.is-active) {
  pointer-events: none;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(16, 21, 27, 0.44);
  color: var(--white);
  transform: translateY(-50%);
}

.gallery-arrow::before {
  content: "";
  position: absolute;
  top: 16px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-prev {
  left: 12px;
}

.gallery-prev::before {
  left: 18px;
  transform: rotate(-135deg);
}

.gallery-next {
  right: 12px;
}

.gallery-next::before {
  right: 18px;
  transform: rotate(45deg);
}

.gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 36px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(16, 21, 27, 0.58);
  color: var(--white);
  font-weight: 800;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-thumbs button.is-active {
  border-color: var(--forest);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-details {
  background: #e9eee5;
}

.suite-amenities-section {
  background: var(--paper);
}

.suite-sticky-cta {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 40;
  width: min(calc(100% - 24px), 780px);
  margin: 0 auto 12px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.suite-sticky-cta span {
  display: block;
  color: var(--brass);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.suite-sticky-cta strong {
  display: block;
  max-width: 44vw;
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-content-section {
  background: var(--paper);
}

.content-shell {
  max-width: 820px;
}

.content-shell > * + * {
  margin-top: 18px;
}

@media (min-width: 560px) {
  .hero-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .arrival-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .text-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-media-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .about-side-image {
    margin-bottom: 34px;
  }

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

  .gallery-thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .section-shell {
    padding: 92px 24px;
  }

  .section-heading h2,
  .copy-block h2,
  .garage-copy h2,
  .faq-intro h2,
  .final-cta-shell h2,
  .suite-summary h2,
  .policy-card h2,
  .detail-panel h2 {
    font-size: 44px;
  }

  .hero-section {
    padding: 150px 24px 166px;
  }

  .hero-copy h1,
  .subpage-inner h1 {
    font-size: 62px;
  }

  .hero-copy p,
  .subpage-inner p {
    font-size: 18px;
  }

  .hero-facts {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: min(calc(100% - 48px), 1180px);
  }

  .hero-facts div {
    padding: 18px;
  }

  .hero-facts strong {
    font-size: 38px;
  }

  .arrival-strip {
    padding-left: 24px;
    padding-right: 24px;
  }

  .experience-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .experience-feature {
    min-height: 520px;
  }

  .experience-feature img {
    min-height: 520px;
  }

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

  .room-collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .garage-band {
    padding: 92px 24px;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
  }

  .location-card {
    grid-template-columns: 140px 1fr;
  }

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

  .policy-card-wide {
    grid-column: 1 / -1;
  }

  .gallery-stage {
    aspect-ratio: 16 / 9;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    top: 14px;
    padding: 0 18px;
  }

  .header-bar {
    padding: 12px 14px 12px 18px;
  }

  .primary-nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .primary-nav {
    gap: 4px;
    margin-left: auto;
  }

  .primary-nav a,
  .header-link {
    position: relative;
    min-height: 42px;
    padding: 12px 12px;
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: background 160ms ease, transform 160ms ease;
  }

  .primary-nav a::after,
  .header-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.82;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .header-link:hover,
  .header-link:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
  }

  .primary-nav a:hover::after,
  .primary-nav a:focus-visible::after,
  .header-link:hover::after,
  .header-link:focus-visible::after {
    transform: scaleX(1);
  }

  .site-header.is-solid .primary-nav a:hover,
  .site-header.is-solid .primary-nav a:focus-visible,
  .site-header.is-solid .header-link:hover,
  .site-header.is-solid .header-link:focus-visible {
    background: rgba(16, 21, 27, 0.06);
  }

  .header-actions {
    gap: 8px;
    margin-left: 10px;
  }

  .header-book {
    min-height: 44px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .header-book::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .header-book:hover,
  .header-book:focus-visible {
    background: var(--paper-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  }

  .header-book:hover::after,
  .header-book:focus-visible::after {
    transform: translateX(3px) rotate(45deg);
  }

  .site-header.is-solid .header-book {
    background: var(--forest);
    color: var(--white);
  }

  .site-header.is-solid .header-book:hover,
  .site-header.is-solid .header-book:focus-visible {
    background: var(--forest-dark);
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-section {
    min-height: calc(100svh - 86px);
  }

  .hero-copy h1,
  .subpage-inner h1 {
    font-size: 78px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .split-shell {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
  }

  .amenities-shell {
    align-items: start;
  }

  .experience-layout {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: stretch;
  }

  .location-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 720px;
  }

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

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card img {
    aspect-ratio: 16 / 9;
  }

  .faq-shell {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
  }

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

  .footer-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1180px) {
  .section-heading h2,
  .copy-block h2,
  .garage-copy h2,
  .faq-intro h2,
  .final-cta-shell h2,
  .suite-summary h2,
  .policy-card h2,
  .detail-panel h2 {
    font-size: 52px;
  }

  .hero-copy h1,
  .subpage-inner h1 {
    font-size: 88px;
  }

  .section-shell {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

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

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header-bar {
    background: rgba(16, 21, 27, 0.92);
  }

  .site-header.is-solid .header-bar,
  .site-header.menu-open .header-bar,
  .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
  }

  .button-glass,
  .button-ghost-light,
  .hero-facts div {
    background: rgba(16, 21, 27, 0.42);
  }
}
