:root {
  color-scheme: light;
  --ink: #161412;
  --charcoal: #211d19;
  --moss: #173f37;
  --moss-soft: #dce7df;
  --ivory: #f7f1e7;
  --paper: #fffaf1;
  --sand: #ded0b8;
  --copper: #b98252;
  --clay: #7a4f3b;
  --line: rgba(22, 20, 18, 0.13);
  --shadow: 0 26px 70px rgba(18, 16, 13, 0.18);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  isolation: isolate;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease, border 180ms ease;
}

.site-header.is-solid {
  background: rgba(247, 241, 231, 0.94);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-wrap {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 10px;
  background: #060606;
}

.site-header.is-solid .brand-logo-wrap,
.footer .brand-logo-wrap {
  border-color: rgba(22, 20, 18, 0.14);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  font-size: 0.78rem;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 124px clamp(18px, 4vw, 56px) 38px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero-carousel,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-carousel {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroCarousel 24s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroCarousel {
  0%,
  20% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  95% {
    opacity: 0;
    transform: scale(1.045);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 14, 13, 0.82), rgba(12, 14, 13, 0.18) 54%, rgba(12, 14, 13, 0.55)),
    linear-gradient(180deg, rgba(12, 14, 13, 0.28), rgba(12, 14, 13, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding-bottom: 138px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1,
.section-heading h2,
.intro h2,
.booking-copy h2,
.feature-copy h2,
.payment-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.8rem, 7.4vw, 7.8rem);
}

.hero-copy {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.hero-location {
  display: inline-grid;
  gap: 2px;
  margin-top: 22px;
  border-left: 2px solid var(--copper);
  padding-left: 16px;
  color: rgba(255, 250, 241, 0.88);
}

.hero-location span {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-location strong {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

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

.button-primary {
  background: var(--copper);
  color: #18100b;
}

.button-primary:hover {
  background: #c89461;
}

.button-ghost {
  border-color: rgba(255, 250, 241, 0.42);
  color: var(--paper);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

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

.quick-book {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 56px);
  bottom: 36px;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1px;
  overflow: visible;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.quick-book label,
.booking-form label,
.guest-selector {
  display: grid;
  gap: 7px;
}

.quick-book label,
.quick-book .guest-selector {
  padding: 16px 18px;
  background: rgba(255, 250, 241, 0.88);
}

label span,
.field-label,
.quote-label,
.suite-kicker,
.room-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.82);
  color: var(--ink);
  padding: 10px 12px;
}

.quick-book input,
.quick-book select,
.quick-book .guest-summary {
  border-color: transparent;
  background: transparent;
  padding: 0;
}

.guest-selector {
  position: relative;
}

.guest-summary {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.82);
  color: var(--ink);
  padding: 10px 12px;
  text-align: left;
}

.guest-summary::after {
  float: right;
  color: rgba(22, 20, 18, 0.5);
  content: "+";
}

.guest-selector.is-open .guest-summary::after {
  content: "-";
}

.guest-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 12;
  width: min(560px, calc(100vw - 36px));
  max-height: min(320px, calc(100vh - 96px));
  overflow-y: auto;
  border: 1px solid rgba(22, 20, 18, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.guest-panel[hidden] {
  display: none;
}

.guest-panel::before {
  position: absolute;
  top: -10px;
  right: 88px;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(22, 20, 18, 0.14);
  border-left: 1px solid rgba(22, 20, 18, 0.14);
  background: var(--paper);
  transform: rotate(45deg);
  content: "";
}

.guest-counter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.guest-counter strong,
.guest-counter span {
  display: block;
}

.guest-counter strong {
  line-height: 1.15;
}

.guest-counter span {
  margin-top: 2px;
  color: rgba(22, 20, 18, 0.58);
  font-size: 0.86rem;
}

.counter-controls {
  display: grid;
  grid-template-columns: 40px 50px 40px;
  gap: 10px;
  align-items: center;
}

.counter-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(22, 20, 18, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.counter-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.counter-controls output {
  display: grid;
  min-width: 50px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(22, 20, 18, 0.2);
  border-radius: 4px;
  background: rgba(255, 250, 241, 0.72);
  font-size: 1.05rem;
}

.guest-panel-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 24px;
}

.guest-panel-actions .button {
  min-width: 120px;
}

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

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

.intro {
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 74px);
}

.intro h2,
.section-heading h2,
.booking-copy h2,
.feature-copy h2,
.payment-grid h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
}

.intro p {
  margin: 0;
  color: rgba(22, 20, 18, 0.72);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px;
  margin: 0;
}

.stats div {
  min-width: 76px;
}

.stats dt {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.stats dd {
  margin: 5px 0 0;
  color: rgba(22, 20, 18, 0.62);
  font-size: 0.82rem;
}

.amenity-band {
  background: var(--moss);
  color: var(--paper);
}

.amenity-band-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.amenity-band-grid div {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 250, 241, 0.14);
  padding: 20px 14px;
  text-align: center;
}

.amenity-band-grid div:last-child {
  border-right: 1px solid rgba(255, 250, 241, 0.14);
}

.amenity-band-grid span {
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.amenity-band-grid p {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.25;
}

.section-block {
  padding: 96px 0;
  scroll-margin-top: 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  align-self: start;
}

.suite-grid,
.room-grid {
  display: grid;
  gap: 18px;
}

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

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

.room-intro-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
}

.room-intro-panel p {
  margin: 0;
  color: rgba(22, 20, 18, 0.72);
}

.room-intro-panel a {
  color: var(--moss);
  font-weight: 800;
}

.amenity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.amenity-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(23, 63, 55, 0.06);
  padding: 9px 12px;
  color: rgba(22, 20, 18, 0.72);
  font-size: 0.82rem;
  font-weight: 750;
}

.suite-card,
.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.room-card-featured {
  border-color: rgba(185, 130, 82, 0.5);
  box-shadow: var(--shadow);
}

.suite-card img,
.room-card img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.suite-body,
.room-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.suite-body {
  min-height: 338px;
}

.room-body {
  min-height: 402px;
}

.suite-kicker,
.room-kicker {
  margin: 0 0 8px;
  color: var(--clay);
}

.suite-card h3,
.room-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.suite-card p,
.room-card p {
  margin: 0;
  color: rgba(22, 20, 18, 0.68);
}

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

.room-title-row strong {
  white-space: nowrap;
  color: var(--moss);
  font-size: 0.94rem;
}

.suite-meta,
.room-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suite-meta span,
.room-facts span,
.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(22, 20, 18, 0.68);
  font-size: 0.78rem;
}

.room-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(22, 20, 18, 0.7);
  font-size: 0.9rem;
}

.room-features li {
  position: relative;
  padding-left: 16px;
}

.room-features li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.suite-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

.suite-footer strong {
  font-size: 1rem;
}

.text-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--moss);
  padding: 0 0 3px;
  font-weight: 800;
}

.experience {
  padding: 86px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(22, 20, 18, 0.72);
}

.dining-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.dining-carousel-track {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
}

.dining-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 550ms ease;
}

.dining-slide.is-active {
  opacity: 1;
}

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

.dining-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dining-carousel-controls button {
  border: 1px solid rgba(255, 250, 241, 0.5);
  border-radius: 999px;
  background: rgba(22, 20, 18, 0.58);
  color: var(--paper);
  padding: 9px 13px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
}

.dining-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dining-carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.45);
}

.dining-carousel-dots span.is-active {
  background: var(--paper);
}

.meetings-section {
  background: var(--ivory);
}

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

.occasion-grid article,
.offer-grid article {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 30px;
}

.occasion-grid span,
.offer-grid small {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.occasion-grid h3,
.offer-grid h3 {
  margin: 76px 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.occasion-grid p,
.offer-grid p {
  color: rgba(22, 20, 18, 0.68);
}

.location-section {
  padding: 86px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.location-art {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--moss);
  color: var(--paper);
}

.location-art::before,
.location-art::after {
  position: absolute;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 50%;
  content: "";
}

.location-art::before {
  width: 72%;
  height: 72%;
}

.location-art::after {
  width: 112%;
  height: 112%;
}

.location-art strong {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: 0;
}

.location-art small {
  position: absolute;
  z-index: 1;
  bottom: 92px;
  color: var(--copper);
  font-weight: 800;
  letter-spacing: 0.28em;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}

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

.offer-grid article {
  display: grid;
  align-content: start;
}

.offer-grid .text-button {
  justify-self: start;
  margin-top: auto;
}

.booking-section {
  padding: 96px 0;
  background: var(--moss);
  color: var(--paper);
  scroll-margin-top: 92px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-copy p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.74);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.trust-row span {
  border-color: rgba(255, 250, 241, 0.18);
  color: rgba(255, 250, 241, 0.78);
}

.direct-support {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  padding-top: 22px;
}

.direct-support span {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.direct-support a {
  width: fit-content;
  color: rgba(255, 250, 241, 0.86);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-weight: 750;
}

.booking-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.95);
  color: var(--ink);
  padding: clamp(18px, 3vw, 34px);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row:nth-of-type(3) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.add-ons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 2px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.add-ons legend {
  padding: 0 7px;
  color: rgba(22, 20, 18, 0.65);
  font-size: 0.82rem;
  font-weight: 800;
}

.add-ons label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.add-ons input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--moss);
}

.quote-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-radius: 8px;
  background: var(--ivory);
  padding: 18px;
}

.quote-panel strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.quote-panel p {
  max-width: 310px;
  margin: 0;
  color: rgba(22, 20, 18, 0.64);
  text-align: right;
}

.payment-note {
  background: var(--charcoal);
  color: var(--paper);
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 48px;
}

.payment-grid ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 250, 241, 0.78);
}

.promise-section {
  background: var(--ivory);
}

.promise-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.promise-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
}

.promise-grid p:last-child {
  margin: 0;
  color: rgba(22, 20, 18, 0.7);
}

.footer {
  padding: 54px 0;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(180px, 0.5fr));
  gap: 28px;
  align-items: start;
}

.footer p {
  margin: 18px 0 0;
  color: rgba(22, 20, 18, 0.65);
}

.footer h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 7px;
  color: rgba(22, 20, 18, 0.72);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-brand {
  color: var(--ink);
}

.legal-page .site-header {
  position: sticky;
  background: rgba(247, 241, 231, 0.96);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.legal-hero {
  padding: 132px 0 70px;
  background: var(--moss);
  color: var(--paper);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 1.02;
}

.legal-copy {
  display: grid;
  gap: 26px;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.legal-copy h2 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.legal-copy p,
.legal-copy li {
  color: rgba(22, 20, 18, 0.72);
}

.toast {
  position: fixed;
  top: clamp(78px, 8vw, 96px);
  right: clamp(14px, 4vw, 32px);
  z-index: 2147483647;
  width: min(430px, calc(100% - 28px));
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  background: #151311;
  color: var(--paper);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  animation: toastIn 180ms ease-out;
}

.toast strong {
  display: block;
  margin-bottom: 4px;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.confirmation-page {
  min-height: 100svh;
  background: var(--charcoal);
}

.confirmation-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  padding: 104px 0 46px;
  background:
    radial-gradient(circle at 84% 12%, rgba(194, 139, 86, 0.28), transparent 30%),
    linear-gradient(135deg, #143f37 0%, #101512 58%, #0c0b09 100%);
}

.confirmation-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 13, 0.22), rgba(12, 14, 13, 0.02)),
    linear-gradient(180deg, rgba(12, 14, 13, 0.04), rgba(12, 14, 13, 0.52));
}

.confirmation-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.confirmation-content {
  position: relative;
  width: min(720px, 100%);
}

.confirmation-content h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 500;
  line-height: 1.02;
}

.confirmation-content p {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.78);
}

.confirmation-status {
  display: grid;
  gap: 6px;
  width: min(620px, 100%);
  margin: 24px 0;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.12);
  padding: 20px;
  backdrop-filter: blur(14px);
}

.confirmation-status strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.confirmation-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.1);
  box-shadow: var(--shadow);
}

.confirmation-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.confirmation-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 6px;
  background: rgba(12, 14, 13, 0.72);
  color: var(--paper);
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-bottom: 286px;
  }

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

  .quick-book .button {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .section-heading,
  .room-intro-panel,
  .experience-grid,
  .location-grid,
  .promise-grid,
  .booking-layout,
  .payment-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .amenity-band-grid,
  .occasion-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-copy {
    position: static;
  }

  .confirmation-hero {
    padding-top: 96px;
  }

  .confirmation-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .confirmation-photo {
    max-width: 620px;
  }

  .confirmation-photo img {
    aspect-ratio: 1.7;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-logo-wrap {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 96px 14px 28px;
    min-height: 84svh;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-content {
    padding-bottom: 238px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-location {
    max-width: 100%;
  }

  .quick-book {
    right: 14px;
    bottom: 24px;
    left: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-book label {
    padding: 11px 12px;
  }

  .quick-book .guest-selector {
    padding: 11px 12px;
  }

  .quick-book .button {
    grid-column: auto;
    min-height: 66px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .section-inner {
    width: calc(100% - 28px);
  }

  .section-block,
  .booking-section {
    padding: 68px 0;
  }

  .confirmation-hero {
    align-items: start;
    min-height: auto;
    padding: 92px 0 42px;
  }

  .confirmation-content h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .confirmation-status {
    margin: 20px 0;
    padding: 18px;
  }

  .confirmation-photo img {
    aspect-ratio: 1.35;
  }

  .confirmation-photo figcaption {
    position: static;
    border-radius: 0;
  }

  .intro {
    padding: 42px 0;
  }

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

  .stats dt {
    font-size: 2rem;
  }

  .amenity-band-grid,
  .occasion-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .amenity-band-grid div,
  .amenity-band-grid div:last-child {
    min-height: auto;
    border-right: 1px solid rgba(255, 250, 241, 0.14);
    padding: 16px;
  }

  .occasion-grid article,
  .offer-grid article {
    min-height: auto;
    padding: 24px;
  }

  .occasion-grid h3,
  .offer-grid h3 {
    margin-top: 46px;
  }

  .location-section {
    padding: 68px 0;
  }

  .location-art {
    min-height: 280px;
  }

  .location-art small {
    bottom: 54px;
  }

  .suite-body,
  .room-body {
    min-height: auto;
    padding: 20px;
  }

  .room-title-row {
    display: grid;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

  .dining-carousel,
  .form-row,
  .form-row:nth-of-type(3),
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .dining-carousel-track {
    min-height: 340px;
  }

  .quote-panel {
    display: grid;
  }

  .quote-panel p {
    text-align: left;
  }

  .guest-panel {
    right: auto;
    left: 0;
    width: min(520px, calc(100vw - 48px));
  }

  .guest-panel::before {
    right: auto;
    left: 28px;
  }

  .guest-counter {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .counter-controls {
    grid-template-columns: 38px 1fr 38px;
  }

  .counter-controls button {
    width: 38px;
    height: 38px;
  }

  .counter-controls output {
    min-width: 0;
  }

  .guest-panel-actions {
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .form-actions .button {
    width: 100%;
  }
}
