:root {
  --paper: #f7f5f1;
  --ink: #171614;
  --muted: #5b5650;
  --tile: #f1efeb;
  --line: rgba(23, 22, 20, 0.12);
  --accent: #5d6c64;
  --accent-deep: #3a1733;
  --focus-ring: rgba(93, 108, 100, 0.34);
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(23, 22, 20, 0.04), transparent 42%),
    var(--paper);
  font-family: var(--font-body);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 40;
  padding: 0.8rem 1rem;
  border: 1px solid var(--accent-deep);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--accent-deep);
  outline-offset: 0.16rem;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: clamp(0.55rem, 1.4vw, 0.85rem) clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid transparent;
  color: rgba(247, 245, 241, 0.96);
  background: transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid,
.site-header.menu-open {
  color: var(--ink);
  background: var(--paper);
  border-bottom-color: rgba(23, 22, 20, 0.09);
  box-shadow: 0 8px 24px rgba(23, 22, 20, 0.06);
}

.site-header-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-wordmark {
  display: none;
  color: currentColor;
  text-decoration: none;
  font-family: "Snell Roundhand", "Apple Chancery", "URW Chancery L", cursive;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  opacity: 0.96;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-links a:focus-visible,
.mobile-wordmark:focus-visible,
.menu-toggle:focus-visible,
.secondary-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.28rem;
}

.nav-links a.is-current {
  text-decoration: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.65rem;
  height: 2px;
  margin: 0.3rem auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(0.425rem) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-0.425rem) rotate(-45deg);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid currentColor;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--accent-deep);
  color: var(--paper);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

.cta:focus-visible,
.booking-submit:focus-visible,
.room-link:focus-visible,
.room-card-action:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.28rem;
}

.site-header .cta:hover,
.site-header .cta:focus-visible,
.hero .cta:hover,
.hero .cta:focus-visible {
  color: var(--paper);
}

.site-header .cta {
  color: var(--paper);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.site-header .cta:hover,
.site-header .cta:focus-visible {
  color: var(--paper);
  background: transparent;
  border-color: var(--paper);
}

.site-header.is-scrolled .cta,
.site-header.is-solid .cta,
.site-header.menu-open .cta {
  color: var(--paper);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.site-header.is-scrolled .cta:hover,
.site-header.is-scrolled .cta:focus-visible,
.site-header.is-solid .cta:hover,
.site-header.is-solid .cta:focus-visible,
.site-header.menu-open .cta:hover,
.site-header.menu-open .cta:focus-visible {
  color: var(--accent-deep);
  background: transparent;
  border-color: var(--accent-deep);
}

.hero,
.page-hero {
  position: relative;
  width: 100%;
  min-height: clamp(30rem, 90vh, 52rem);
  margin: 0;
  padding: clamp(8rem, 16vw, 13rem)
    max(clamp(1.5rem, 4vw, 3rem), calc((100vw - 72rem) / 2 + 3rem))
    clamp(3rem, 8vw, 6rem);
  display: grid;
  align-content: end;
  gap: 1.4rem;
  color: var(--paper);
  overflow: hidden;
}


.hero-media,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero::after {
  content: "";
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(23, 22, 20, 0.52),
    rgba(23, 22, 20, 0.32) 34%,
    rgba(23, 22, 20, 0.66)
  );
}

.page-hero {
  background:
    linear-gradient(
      180deg,
      rgba(23, 22, 20, 0.58),
      rgba(23, 22, 20, 0.34) 34%,
      rgba(23, 22, 20, 0.8)
    ),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.page-hero > * {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .eyebrow {
  order: -1;
  margin: 0 0 0.9rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 6.9vw, 5.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: none;
  text-shadow: 0 6px 24px rgba(23, 22, 20, 0.24);
}

.page-hero h1 {
  max-width: 32ch;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  margin-inline: auto;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
  color: rgba(247, 245, 241, 0.94);
  text-shadow: 0 1px 10px rgba(23, 22, 20, 0.28);
}

.page-hero .intro {
  max-width: 40rem;
  margin-inline: auto;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 40rem;
  gap: 1.1rem;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(247, 245, 241, 0.9);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(23, 22, 20, 0.28);
}

h1 {
  margin: 0;
  max-width: 19ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 24px rgba(23, 22, 20, 0.24);
}

.intro {
  max-width: 34rem;
  margin: 0;
  color: rgba(247, 245, 241, 0.92);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(23, 22, 20, 0.22);
}

.room-page-hero {
  min-height: clamp(30rem, 90vh, 52rem);
  padding-top: clamp(8rem, 13vw, 10.5rem);
  padding-bottom: clamp(6rem, 11vw, 8.5rem);
  align-content: center;
  justify-items: center;
  text-align: center;
  background-position: center center;
}

.room-page-hero::after {
  background: linear-gradient(
    180deg,
    rgba(23, 22, 20, 0.44),
    rgba(23, 22, 20, 0.34) 38%,
    rgba(23, 22, 20, 0.62)
  );
}

.room-page-hero > div {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.room-page-hero .eyebrow {
  margin: 0;
}

.room-page-hero h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--paper);
}

.room-page-hero .eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1;
}

.room-page-hero .intro {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(247, 245, 241, 0.96);
}

.room-detail-section {
  gap: clamp(1.6rem, 2.6vw, 2.35rem);
}

.room-detail-intro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  min-width: 0;
}

.room-detail-heading {
  position: sticky;
  top: 6.5rem;
}

.room-detail-heading .section-kicker {
  color: color-mix(in srgb, var(--accent-deep) 44%, var(--muted));
}

.room-detail-heading h2 {
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--accent-deep);
}

.room-detail-panel {
  display: grid;
  gap: clamp(1.4rem, 2.4vw, 2rem);
  padding-top: 0.25rem;
  min-width: 0;
}

.room-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(23, 22, 20, 0.1);
}

.room-spec {
  display: grid;
  gap: 0.35rem;
}

.room-spec-label {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-spec-value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
}

.room-detail-summary {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.room-detail-copy {
  display: grid;
  gap: 0.95rem;
  padding-top: 0.2rem;
}

.room-detail-copy p {
  margin: 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.room-detail-booking {
  padding-top: 0.5rem;
}

.room-detail-booking .cta {
  min-width: 11rem;
  justify-content: center;
}

.room-detail-gallery-section,
.more-rooms-section {
  --room-showcase-content-offset: 0px;
  --room-carousel-tail: clamp(1.5rem, 4vw, 3rem);
  gap: clamp(1.15rem, 2vw, 1.75rem);
}

.room-detail-gallery-section .room-showcase-header,
.more-rooms-section .room-showcase-header {
  padding-inline: 0;
}

.room-detail-gallery-section .room-carousel,
.more-rooms-section .room-carousel {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.room-detail-gallery-section .room-carousel-track,
.more-rooms-section .room-carousel-track {
  padding-left: 0;
  scroll-padding-left: 0;
}

.room-photo-track {
  grid-auto-columns: minmax(18rem, 31rem);
}

.room-photo-card {
  margin: 0;
  overflow: hidden;
  background: var(--tile);
}

.room-photo-card img {
  width: 100%;
  height: clamp(16rem, 34vw, 25rem);
  display: block;
  object-fit: cover;
}

.more-rooms-section .room-carousel-card {
  min-height: 100%;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-details li {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(247, 245, 241, 0.2);
  background: rgba(247, 245, 241, 0.08);
  color: rgba(247, 245, 241, 0.94);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.booking-bar-wrap {
  width: min(100%, 34rem);
  display: grid;
  gap: 0;
}

.booking-bar {
  width: 100%;
  margin-top: clamp(0.65rem, 1.8vw, 1rem);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  background: rgba(247, 245, 241, 0.88);
  color: var(--ink);
}

.booking-offer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  border-top: 0 solid rgba(23, 22, 20, 0.08);
  background: color-mix(in srgb, var(--tile) 88%, var(--paper));
  opacity: 0;
  transform: translateY(-0.45rem);
  transition:
    max-height 280ms ease,
    padding 280ms ease,
    border-top-width 280ms ease,
    opacity 220ms ease,
    transform 280ms ease;
}

.booking-bar-wrap.is-offer-open .booking-offer {
  max-height: 7rem;
  padding: 0.8rem 1rem 0.9rem;
  border-top-width: 1px;
  opacity: 1;
  transform: translateY(0);
}

.booking-offer-kicker,
.booking-offer-copy {
  margin: 0;
}

.booking-offer-kicker {
  color: color-mix(in srgb, var(--accent-deep) 48%, var(--muted));
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-offer-copy {
  margin-top: 0.35rem;
  max-width: 24rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.booking-field {
  min-height: 3.3rem;
  padding: 0.45rem 0.8rem;
  display: grid;
  align-content: center;
  gap: 0.1rem;
  border-right: 1px solid rgba(23, 22, 20, 0.08);
}

.booking-label {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-field input {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
}

.booking-field input:focus {
  outline: none;
}

.booking-field:focus-within {
  box-shadow: inset 0 0 0 2px var(--focus-ring);
}

.booking-submit {
  min-width: 8.5rem;
  border: 1px solid var(--accent-deep);
  color: var(--paper);
  background: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  color: var(--accent-deep);
  background: transparent;
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.content {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: clamp(3.25rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem) clamp(6rem, 10vw, 9rem);
  display: grid;
  gap: clamp(4.75rem, 8vw, 7.75rem);
}

.section {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 2.8vw, 2.4rem);
  min-width: 0;
}

.feature-section {
  min-height: clamp(25rem, 44vw, 33rem);
  align-content: center;
}

.note-section {
  gap: clamp(2.75rem, 4.8vw, 4.4rem);
}

.section-note-home {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(2.25rem, 4vw, 3.5rem);
}

.section + .section {
  padding-top: clamp(3.35rem, 5.5vw, 5.5rem);
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 68rem);
  height: 1px;
  background: rgba(23, 22, 20, 0.08);
}

.section + .section::after {
  content: none;
}

.section-header {
  display: grid;
  gap: 0.2rem;
  max-width: 48rem;
}

.room-showcase-section {
  --page-content-gutter: clamp(1.5rem, 4vw, 3rem);
  --room-showcase-inset: clamp(1.5rem, 3.6vw, 3.25rem);
  --room-showcase-content-offset: calc(
    max(0px, 50vw - 39rem) + var(--page-content-gutter)
  );
  --room-carousel-tail: calc(18.5rem + 1rem + var(--room-showcase-inset));
  gap: clamp(1.25rem, 2.2vw, 1.9rem);
}

.section + .room-showcase-section {
  padding-top: clamp(2.1rem, 3.8vw, 3.25rem);
}

.room-showcase-header {
  grid-template-columns: 1fr;
  align-items: start;
  max-width: none;
  gap: 0.9rem;
}

.room-showcase-copy {
  padding: 0;
  justify-items: start;
  text-align: left;
  max-width: 42rem;
}

.room-showcase-copy h2 {
  color: var(--accent-deep);
  text-align: left;
}

.room-showcase-header,
.room-showcase-section-cta {
  padding-inline: var(--room-showcase-inset);
}

.room-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: start;
  align-self: start;
}

.room-carousel-button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(23, 22, 20, 0.16);
  color: var(--ink);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.room-carousel-button:hover,
.room-carousel-button:focus-visible {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-1px);
  outline: 2px solid var(--accent-deep);
  outline-offset: 0.18rem;
}

.welcome-note {
  width: min(100%, 44rem);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 0;
  padding: clamp(0.85rem, 2vw, 1.35rem) 0 0.25rem;
  text-align: center;
}

.welcome-note .section-kicker {
  color: color-mix(in srgb, var(--accent-deep) 45%, var(--muted));
}

.welcome-note h2 {
  margin: 0;
  margin-top: clamp(0.8rem, 1.8vw, 1.15rem);
  margin-bottom: clamp(1.4rem, 2.8vw, 2rem);
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.15vw, 1.55rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--accent-deep);
}

.welcome-note-body {
  display: grid;
  gap: clamp(0.7rem, 1.2vw, 1rem);
  max-width: 34rem;
}

.welcome-note-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.9vw, 0.88rem);
  font-weight: 400;
  line-height: 1.72;
}

.welcome-signoff {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  padding-top: clamp(1.4rem, 2.8vw, 2rem);
}

.welcome-signoff-label,
.welcome-signoff-name {
  margin: 0;
}

.welcome-signoff-label {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 400;
}

.welcome-signature {
  width: clamp(7rem, 12vw, 9.5rem);
  height: auto;
  display: block;
  opacity: 0.92;
}

.welcome-signoff-name {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.gallery-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  align-self: stretch;
  padding: 0.15rem 0 0.35rem;
  scrollbar-width: none;
}

.gallery-marquee::-webkit-scrollbar {
  display: none;
}

.gallery-marquee:focus-visible,
.home-gallery-track:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 0.22rem;
}

.gallery-marquee:hover .gallery-track,
.gallery-marquee:focus-within .gallery-track,
.gallery-marquee:focus-visible .gallery-track {
  animation-play-state: paused;
}

.gallery-marquee::before,
.gallery-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  pointer-events: none;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(247, 245, 241, 0.9) 38%, rgba(247, 245, 241, 0) 100%);
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, rgba(247, 245, 241, 0.9) 38%, rgba(247, 245, 241, 0) 100%);
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: gallery-marquee 30s linear infinite;
}

.gallery-rail-card {
  flex: 0 0 min(13.5rem, 23vw);
  margin: 0;
  background: var(--tile);
  overflow: hidden;
}

.gallery-rail-card img {
  width: 100%;
  height: 11.5rem;
  display: block;
  object-fit: cover;
}

.section-kicker {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(1.35rem);
  transition:
    opacity 980ms ease,
    transform 980ms ease;
  transition-delay: var(--scroll-fade-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.9vw, 2.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.statement,
.text-panel p,
.policy-panel p,
.review-panel p,
.contact-panel p,
.room-card p,
.list-panel li {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.75;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4rem);
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.feature-copy {
  max-width: 33rem;
  padding: clamp(1rem, 2.2vw, 1.9rem) 0;
  display: grid;
  align-content: center;
  gap: 0;
}

.feature-copy h2 {
  margin: 0;
  margin-top: clamp(0.85rem, 1.8vw, 1.15rem);
  margin-bottom: clamp(1.3rem, 2.6vw, 1.9rem);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: var(--accent-deep);
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 29rem;
  font-size: clamp(0.84rem, 1vw, 0.92rem);
  font-weight: 500;
  line-height: 1.74;
}

.feature-copy p + p {
  margin-top: 0.95rem;
}

.feature-media {
  position: relative;
  min-height: clamp(18rem, 34vw, 28rem);
  background: var(--tile);
  overflow: hidden;
}

.feature-media img {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 116%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--feature-parallax-offset, 0px), 0) scale(1.06);
  transform-origin: center center;
  will-change: transform;
}

.home-gallery-section {
  gap: clamp(2rem, 3.2vw, 2.8rem);
}

.home-gallery-shell {
  display: grid;
  gap: clamp(2rem, 3.4vw, 3rem);
}

.home-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.25rem;
}

.home-gallery-copy {
  width: 100%;
  padding: 0;
  justify-items: start;
  text-align: left;
}

.home-gallery-copy .section-kicker {
  color: var(--accent-deep);
}

.home-gallery-header .cta {
  justify-self: start;
  align-self: end;
}

.home-gallery-copy h2 {
  color: var(--ink);
  text-align: left;
}

.home-gallery-carousel {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  overflow: clip;
  padding-bottom: 0.8rem;
}

.home-gallery-viewport {
  overflow: hidden;
}

.home-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: clamp(1.1rem, 2.2vw, 1.9rem);
  align-items: start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  scroll-padding-inline: clamp(1.5rem, 5vw, 4rem);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-gallery-track::-webkit-scrollbar {
  display: none;
}

.home-gallery-arrow {
  position: absolute;
  top: calc(clamp(24rem, 36vw, 30rem) / 2);
  transform: translateY(-50%);
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 245, 241, 0.96);
  background: rgba(23, 22, 20, 0.46);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  text-shadow: 0 4px 12px rgba(23, 22, 20, 0.32);
  cursor: pointer;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.home-gallery-arrow span {
  display: block;
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-0.08rem);
}

.home-gallery-arrow[data-home-gallery="prev"] {
  left: 0.5rem;
}

.home-gallery-arrow[data-home-gallery="next"] {
  right: 0.5rem;
}

.home-gallery-arrow:hover,
.home-gallery-arrow:focus-visible {
  opacity: 1;
  background: color-mix(in srgb, var(--accent-deep) 88%, transparent);
  color: rgba(247, 245, 241, 1);
  transform: translateY(calc(-50% - 1px));
  outline: none;
}

.home-gallery-card {
  margin: 0;
  display: block;
  background: transparent;
  scroll-snap-align: center;
  width: fit-content;
}

.home-gallery-card-featured {
  transform: none;
}

.home-gallery-card img {
  width: auto;
  height: clamp(24rem, 36vw, 30rem);
  display: block;
  max-width: min(78vw, 48rem);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.home-gallery-card-featured img {
  height: clamp(24rem, 36vw, 30rem);
}

.home-gallery-dots {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  padding: 0.15rem clamp(1.5rem, 5vw, 4rem) 0.2rem;
  width: 100%;
}

.home-gallery-dot {
  width: 0.62rem;
  height: 0.62rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 22, 20, 0.22);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.home-gallery-dot.is-active {
  background: rgba(23, 22, 20, 0.9);
  transform: scale(1.15);
}

.text-panel,
.list-panel,
.policy-panel,
.review-panel,
.contact-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--tile);
}

.text-stack {
  display: grid;
  gap: 1.2rem;
}

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

.offer-card {
  margin: 0;
  min-height: 10rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  align-content: center;
  gap: 0.75rem;
  background: var(--tile);
}

.offer-card strong,
.room-card h3,
.list-panel h3,
.review-panel h3,
.contact-panel h3,
.policy-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.offer-card span {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.65;
}

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

.review-signal {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(19rem, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.review-signal-copy h2,
.review-insight-header h2,
.review-proof-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.review-signal-copy p:last-of-type {
  max-width: 42rem;
}

.review-theme-list,
.review-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.review-theme-pill,
.review-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(23, 22, 20, 0.1);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 90%, var(--tile));
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.review-scoreboard-hero {
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 1px solid rgba(23, 22, 20, 0.08);
  background: linear-gradient(180deg, color-mix(in srgb, var(--paper) 96%, var(--tile)) 0%, color-mix(in srgb, var(--tile) 92%, var(--paper)) 100%);
  box-shadow: 0 22px 48px rgba(36, 26, 44, 0.08);
}

.review-score-chip {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(23, 22, 20, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.review-score-chip-featured {
  grid-column: 1 / -1;
  gap: 0.35rem;
  background: color-mix(in srgb, var(--accent-deep) 6%, var(--paper));
}

.review-score-kicker {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-score-value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.review-score-chip-featured .review-score-value {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
}

.review-score-label {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-insight-header {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
  max-width: 38rem;
}

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

.review-category-card,
.review-proof-panel,
.guest-review-card {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid rgba(23, 22, 20, 0.08);
  background: color-mix(in srgb, var(--paper) 86%, var(--tile));
}

.review-category-card {
  align-content: start;
}

.review-category-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.review-category-top h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.review-category-score {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.review-category-quote {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.review-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.review-proof-panel {
  background: var(--tile);
}

.review-proof-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-proof-list li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-proof-list strong {
  color: var(--ink);
}

.review-wall {
  display: grid;
  gap: 1rem;
}

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

.guest-review-card {
  align-content: start;
  min-height: 100%;
}

.guest-review-card-featured {
  background: linear-gradient(180deg, color-mix(in srgb, var(--paper) 96%, var(--tile)) 0%, color-mix(in srgb, var(--tile) 91%, var(--paper)) 100%);
  box-shadow: 0 20px 40px rgba(36, 26, 44, 0.08);
}

.guest-review-card-featured p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--accent-deep);
}

.guest-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.guest-review-identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.guest-review-identity strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.guest-review-identity span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}

.guest-review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-deep) 12%, var(--paper));
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.guest-review-stars {
  color: var(--accent-deep);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.guest-review-card p {
  margin: 0;
  max-width: 42rem;
}

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

.room-card {
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem;
  border: 1px solid rgba(23, 22, 20, 0.06);
  background: color-mix(in srgb, var(--tile) 82%, var(--paper));
}

.room-directory-grid {
  align-items: start;
}

.room-directory-card {
  grid-template-rows: 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-color: rgba(23, 22, 20, 0.08);
  background: linear-gradient(180deg, color-mix(in srgb, var(--paper) 94%, var(--tile)) 0%, color-mix(in srgb, var(--tile) 88%, var(--paper)) 100%);
}

.room-showcase-section .room-carousel {
  overflow: visible;
  margin-top: 0.1rem;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
}

.room-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(17rem, 21rem);
  gap: 1rem;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  padding-left: calc(var(--room-showcase-content-offset) + var(--room-showcase-inset));
  padding-right: var(--room-carousel-tail);
  scroll-padding-left: calc(var(--room-showcase-content-offset) + var(--room-showcase-inset));
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.room-carousel-track::-webkit-scrollbar {
  display: none;
}

.room-carousel-track:focus-visible,
.room-filters:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 0.22rem;
}

.room-carousel-card {
  height: 100%;
  scroll-snap-align: start;
}

.room-showcase-section .room-carousel-card {
  grid-template-rows: 1fr auto;
  gap: 1rem;
}

.room-link {
  display: grid;
  gap: 0.85rem;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.room-directory-card .room-link {
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

.room-card img,
.media-grid img,
.gallery-grid img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.room-card img {
  aspect-ratio: 4 / 3;
}

.room-directory-card img {
  aspect-ratio: 1.16 / 1;
}

.room-meta {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-card-copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 0.7rem;
  min-height: 100%;
}

.room-directory-card h3 {
  line-height: 1.05;
}

.room-directory-card p {
  margin: 0;
}

.room-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-self: end;
}

.room-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(23, 22, 20, 0.1);
  border-radius: 999px;
  background: rgba(247, 245, 241, 0.7);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-showcase-section .room-card .text-stack {
  height: 100%;
  display: grid;
  grid-template-rows: 0.8rem 2.25rem 1fr;
  align-content: start;
  gap: 0.5rem;
}

.room-showcase-section .room-meta {
  display: block;
  line-height: 1.2;
  min-height: 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.room-showcase-section .room-card h3 {
  line-height: 1.08;
  min-height: 2.25rem;
}

.room-showcase-section .room-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: calc(1.75em * 3);
}

.room-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.room-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(23, 22, 20, 0.16);
  color: var(--ink);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.room-card-action:hover,
.room-card-action:focus-visible {
  transform: translateY(-1px);
}

.room-card-action-book {
  color: var(--paper);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.room-card-action-book:hover,
.room-card-action-book:focus-visible {
  color: var(--accent-deep);
  background: transparent;
}

.room-card-action-details:hover,
.room-card-action-details:focus-visible {
  color: var(--paper);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.list-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.room-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.room-policies {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(23, 22, 20, 0.08);
  max-width: 56rem;
}

.room-policy-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.room-policy-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.media-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

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

.gallery-grid figure,
.media-grid figure {
  margin: 0;
  background: var(--tile);
  overflow: hidden;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.site-footer {
  width: 100%;
  margin-top: auto;
  background: var(--accent-deep);
  color: var(--paper);
}

.site-footer-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem) 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 3rem;
  font-family: var(--font-body);
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--paper);
  margin: 0 0 0.25rem;
}

.footer-address,
.footer-phone {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(247, 245, 241, 0.65);
}

.footer-address a,
.footer-phone a {
  color: rgba(247, 245, 241, 0.65);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-address a:hover,
.footer-phone a:hover {
  color: var(--paper);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.45);
  margin: 0 0 1rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(247, 245, 241, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--paper);
}

.footer-col--gather {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-gather-copy {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(247, 245, 241, 0.55);
}

.footer-gather-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(247, 245, 241, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-gather-link:hover {
  color: var(--paper);
}

.footer-reserve-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(247, 245, 241, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  align-self: flex-start;
}

.footer-reserve-btn:hover {
  background: rgba(247, 245, 241, 0.08);
  border-color: rgba(247, 245, 241, 0.5);
}

.footer-bottom {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(247, 245, 241, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(247, 245, 241, 0.35);
  letter-spacing: 0.06em;
}

.footer-bottom a {
  color: rgba(247, 245, 241, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}

/* ── Blog post article (Boggs-style minimal) ──────────────── */
.post-article {
  width: min(100%, 38rem);
  margin: 0 auto;
  padding: clamp(8.5rem, 14vw, 10rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 6vw, 4.5rem);
  font-family: var(--font-body);
}
.post-date {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 1rem;
}
.post-title {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 3.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 2rem;
}
.post-cover {
  margin: 0 0 2.5rem;
  background: var(--tile);
  overflow: hidden;
}
.post-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.post-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}
.post-body p {
  margin: 0 0 1.15rem;
}
.post-body h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--ink);
  margin: 2rem 0 0.85rem;
}
.post-body ul,
.post-body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
}
.post-body li {
  margin-bottom: 0.4rem;
}
.post-body strong {
  color: var(--ink);
  font-weight: 600;
}
.post-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.post-back {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.post-back:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--paper);
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.55rem 1.1rem;
  }

  .site-header-inner {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: start;
  }

  .mobile-logo {
    display: none;
    justify-self: center;
    align-items: center;
  }

  .mobile-wordmark {
    display: inline-flex;
    justify-self: center;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1.1rem;
    right: 1.1rem;
    display: none;
    padding: 0.9rem 0;
    border: 1px solid rgba(23, 22, 20, 0.09);
    background: var(--paper);
    box-shadow: 0 16px 32px rgba(23, 22, 20, 0.08);
    color: var(--ink);
  }

  .site-header.menu-open .nav-links {
    display: grid;
    gap: 0;
  }

  .site-header > .site-header-inner > .cta {
    justify-self: end;
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 1rem;
  }

  .nav-links a::after {
    content: none;
  }

  .nav-links a + a {
    border-top: 1px solid rgba(23, 22, 20, 0.08);
  }

  .hero,
  .page-hero {
    min-height: 78vh;
    padding: 6.5rem 1.1rem 2.25rem;
    gap: 1.25rem;
  }

  .hero-content {
    gap: 1.15rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.65rem);
    line-height: 1.12;
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(0.92rem, 3.8vw, 1.12rem);
    line-height: 1.35;
  }

  .page-hero .eyebrow {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .content {
    padding: 2rem 1.1rem 4.5rem;
    gap: 3.5rem;
  }

  .room-page-hero {
    min-height: 72vh;
    padding-top: 7rem;
    padding-bottom: 4.25rem;
  }

  .room-page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    line-height: 1.02;
  }

  .room-page-hero .eyebrow {
    font-size: 0.64rem;
  }

  .room-page-hero .intro {
    max-width: 32rem;
    font-size: 0.94rem;
  }

  .split-grid,
  .feature-row,
  .feature-row.reverse,
  .home-gallery-grid,
  .room-grid,
  .review-grid,
  .review-category-grid,
  .offer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .room-showcase-header {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .room-showcase-section .room-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
  }

  .room-showcase-section {
    --room-showcase-content-offset: 0px;
    --room-carousel-tail: 1.1rem;
  }

  .room-showcase-copy {
    padding: 0;
  }

  .room-showcase-copy h2 {
    font-size: clamp(1.26rem, 6.3vw, 1.62rem);
  }

  .review-signal,
  .review-spotlight {
    grid-template-columns: 1fr;
  }

  .review-scoreboard,
  .review-wall-grid {
    grid-template-columns: 1fr;
  }

  .room-detail-intro {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .room-detail-heading {
    position: static;
  }

  .room-detail-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .room-detail-panel {
    gap: 1.2rem;
  }

  .room-detail-specs {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-bottom: 1.15rem;
  }

  .room-detail-summary {
    font-size: 1.12rem;
  }

  .room-detail-copy p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .room-carousel-controls {
    justify-content: flex-start;
  }

  .welcome-note {
    width: 100%;
    justify-items: center;
    text-align: center;
    padding: 0.35rem 1rem 0;
  }

  .welcome-note h2,
  .welcome-note-body {
    max-width: none;
  }

  .welcome-signoff {
    justify-items: center;
  }

  .gallery-rail-card img {
    height: 9rem;
  }

  .gallery-track {
    animation-duration: 18s;
  }

  .hero-details {
    gap: 0.45rem;
  }

  .hero-details li {
    padding: 0.4rem 0.55rem;
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }

  .gallery-rail-card {
    flex-basis: min(10rem, 54vw);
  }

  .room-detail-gallery-section .room-carousel,
  .more-rooms-section .room-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .room-detail-gallery-section .room-carousel-track,
  .more-rooms-section .room-carousel-track {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    scroll-padding-left: 1.1rem;
  }

  .room-carousel-track {
    grid-auto-columns: minmax(14.5rem, 76vw);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .room-photo-track {
    grid-auto-columns: minmax(15rem, 84vw);
  }

  .room-photo-card img {
    height: 13.5rem;
  }

  .feature-copy {
    padding: 0;
  }

  .feature-media {
    min-height: 14.5rem;
  }

  .feature-media img {
    top: -4%;
    height: 108%;
    transform: translate3d(0, var(--feature-parallax-offset, 0px), 0) scale(1.03);
    will-change: transform;
  }

  .feature-section {
    min-height: 0;
    align-content: start;
  }

  .home-gallery-header {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
  }

  .home-gallery-copy {
    justify-items: start;
    text-align: left;
  }

  .home-gallery-copy h2 {
    text-align: left;
  }

  .home-gallery-section .cta {
    justify-self: start;
  }

  .home-gallery-shell {
    touch-action: pan-y pinch-zoom;
  }

  .home-gallery-carousel {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    pointer-events: none;
    touch-action: pan-y pinch-zoom;
  }

  .home-gallery-viewport {
    overflow: hidden;
    pointer-events: none;
  }

  .home-gallery-arrow {
    display: none;
  }

  .home-gallery-track {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    grid-template-columns: none;
    gap: 0.75rem;
    padding: 0 1.1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 1.1rem;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
  }

  .home-gallery-card,
  .home-gallery-card-featured {
    min-height: 0;
    width: auto;
  }

  .home-gallery-card img,
  .home-gallery-card-featured img {
    height: 16rem;
    width: auto;
    max-width: min(84vw, 24rem);
    object-fit: contain;
  }

  .home-gallery-dots {
    display: inline-flex;
    justify-content: center;
    padding: 0.15rem 1.1rem 0;
    pointer-events: auto;
  }

  .home-gallery-dot {
    pointer-events: auto;
  }

  .welcome-note .section-kicker {
    font-size: 0.54rem;
  }

  .welcome-note h2 {
    font-size: clamp(1.02rem, 5.8vw, 1.34rem);
  }

  .welcome-note-body p {
    font-size: 0.78rem;
    line-height: 1.62;
  }

  .feature-copy h2,
  .section-header h2 {
    font-size: clamp(1.26rem, 6.3vw, 1.62rem);
  }

  .feature-copy p,
  .statement,
  .text-panel p,
  .policy-panel p,
  .review-panel p,
  .contact-panel p,
  .room-card p,
  .list-panel li {
    font-size: 0.78rem;
    line-height: 1.58;
  }

  .room-meta {
    font-size: 0.56rem;
  }

  .booking-bar {
    width: min(100%, 20rem);
    grid-template-columns: 1fr 1fr;
    background: rgba(247, 245, 241, 0.82);
  }

  .booking-bar-wrap {
    width: min(100%, 20rem);
  }

  .booking-field {
    min-height: 3rem;
    padding: 0.4rem 0.75rem;
    border-bottom: 0;
  }

  .booking-field:first-child {
    border-right: 1px solid rgba(23, 22, 20, 0.08);
  }

  .booking-field:last-of-type {
    border-right: 0;
  }

  .booking-submit {
    min-width: 0;
    min-height: 2.8rem;
    grid-column: 1 / -1;
  }

  .booking-bar-wrap.is-offer-open .booking-offer {
    max-height: 8.5rem;
    padding: 0.75rem 0.85rem 0.85rem;
  }

  .booking-offer-copy {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .section + .section::before {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .scroll-fade,
  .scroll-fade.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-track {
    animation: none;
  }

  .gallery-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .gallery-marquee::before,
  .gallery-marquee::after {
    display: none;
  }
}

@keyframes gallery-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.45rem));
  }
}

@media (max-width: 860px) {
  .nav-links {
    gap: 0.75rem;
    font-size: 0.67rem;
    letter-spacing: 0.1em;
  }

  .room-filters {
    gap: 0.45rem;
    margin: 0 -0.25rem 0.25rem;
    padding: 0 0.25rem 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

.room-filters::-webkit-scrollbar {
  display: none;
}

  .room-filter {
    flex: 0 0 auto;
    padding: 0.6rem 0.85rem;
    font-size: 0.58rem;
  }
}

.room-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

.room-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(23, 22, 20, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.room-filter:hover,
.room-filter:focus-visible {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
  outline: 2px solid var(--accent-deep);
  outline-offset: 0.18rem;
}

.room-filter.is-active {
  color: var(--paper);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.room-card[hidden] {
  display: none;
}

/* ── Blog index ───────────────────────────────────────────── */
.blog-index {
  gap: clamp(2.75rem, 5vw, 4.25rem);
}

.blog-index-intro {
  max-width: 44rem;
  display: grid;
  gap: 0.85rem;
}

.blog-index-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.blog-index-lede {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.62;
  max-width: 36rem;
}

/* Featured / lead card — full width with horizontal layout on desktop */
.post-lead {
  margin: 0;
}

.post-lead-link {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3.25rem);
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.post-lead-cover {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tile);
  aspect-ratio: 4 / 3;
}

.post-lead-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.post-lead-copy {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}

.post-lead-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.014em;
  color: var(--ink);
}

.post-lead-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  line-height: 1.65;
}

.post-lead-link:hover .post-lead-cover img,
.post-lead-link:focus-visible .post-lead-cover img {
  transform: scale(1.035);
}

/* Card grid — 2 columns desktop, single column mobile */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 4vw, 3.75rem) clamp(2rem, 3.5vw, 3.25rem);
}

.post-card {
  margin: 0;
}

.post-card-link {
  display: grid;
  gap: 1.1rem;
  text-decoration: none;
  color: inherit;
}

.post-card-cover {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tile);
  aspect-ratio: 4 / 3;
}

.post-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.post-card-link:hover .post-card-cover img,
.post-card-link:focus-visible .post-card-cover img {
  transform: scale(1.04);
}

.post-card-copy {
  display: grid;
  gap: 0.55rem;
}

.post-card-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.post-card-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--ink);
  transition: color 180ms ease;
}

.post-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.post-card-link:hover .post-card-copy h3,
.post-card-link:focus-visible .post-card-copy h3 {
  color: var(--accent-deep);
}

.post-card-cta {
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 220ms ease;
}

.post-card-link:hover .post-card-cta,
.post-card-link:focus-visible .post-card-cta,
.post-lead-link:hover .post-card-cta,
.post-lead-link:focus-visible .post-card-cta {
  gap: 0.85rem;
}

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

  .post-lead-copy h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .post-card-copy h3 {
    font-size: 1.2rem;
  }
}
/* Larger subtext + wider desktop container for readability */
html {
  font-size: 18px;
}

body p:not(.page-hero p):not(.room-page-hero p):not(.hero p):not(.eyebrow):not([class*="kicker"]):not([class*="-label"]):not(.leaflet-popup-content p),
body li:not(nav li):not(.breadcrumbs li):not(.site-footer-legal li),
body dd,
body dt,
body blockquote,
body figcaption {
  font-size: 1.075rem !important;
  line-height: 1.65 !important;
}

/* Keep small uppercase labels and kickers from ballooning.
   Excludes .page-hero .eyebrow which is used as the big display title on inner pages. */
body .eyebrow:not(.page-hero .eyebrow),
body .section-kicker,
body [class*="kicker"]:not(.page-hero [class*="kicker"]),
body [class*="-label"]:not(.page-hero [class*="-label"]),
body .breadcrumbs,
body .breadcrumbs li,
body .site-footer-legal,
body .site-footer-legal li,
body nav li {
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
}

@media (min-width: 1024px) {
  .content {
    width: min(100%, 86rem) !important;
  }
  .welcome-note-body {
    max-width: 44rem !important;
  }
  .feature-copy {
    max-width: 42rem !important;
  }
  .feature-copy p {
    max-width: 38rem !important;
  }
  .section-header {
    max-width: 58rem !important;
  }
  .hero-text,
  .hero-eyebrow + h1,
  .hero h1 {
    max-width: 50rem !important;
  }
}

.hero-logo {
  display: block;
  width: clamp(140px, 22vw, 220px);
  height: auto;
  margin: 0 0 1rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

/* Centered hero treatment ─────────────────────────── */
.hero-content--centered {
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}
.hero-content--centered .hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.hero-content--centered .hero-logo {
  margin: 0 auto 0.6rem;
}
.hero-content--centered .hero-name {
  margin: 0;
  color: rgba(247, 245, 241, 0.95);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.2;
}
.hero-content--centered .hero-tagline {
  margin: 0;
  color: rgba(247, 245, 241, 0.75);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-content--centered .booking-bar-wrap {
  margin-inline: auto;
}

.hero-content--centered .hero-logo {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55))
          drop-shadow(0 0 18px rgba(0,0,0,0.45));
}
.hero-content--centered .hero-name,
.hero-content--centered .hero-tagline {
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 0 16px rgba(0,0,0,0.45);
}

/* Centered hero — sizing v2 ───────────────────────── */
.hero:has(.hero-content--centered) {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  min-height: auto;
}
.hero-content--centered .hero-logo {
  width: clamp(180px, 26vw, 260px);
}
.hero-content--centered .hero-name {
  font-size: clamp(1.4rem, 3.4vw, 1.85rem);
  letter-spacing: 0.18em;
}
.hero-content--centered .hero-tagline {
  color: rgba(247, 245, 241, 0.55);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

/* Mobile — bump everything up a size */
@media (max-width: 720px) {
  .hero:has(.hero-content--centered) {
    padding-top: 3rem;
  }
  .hero-content--centered .hero-logo {
    width: clamp(200px, 60vw, 280px);
  }
  .hero-content--centered .hero-name {
    font-size: 1.5rem;
    letter-spacing: 0.16em;
  }
  .hero-content--centered .hero-tagline {
    font-size: 1.1rem;
  }
}

/* Restore hero height; just align content to top ──── */
.hero:has(.hero-content--centered) {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  min-height: clamp(30rem, 90vh, 52rem);
  align-content: start;
}
@media (max-width: 720px) {
  .hero:has(.hero-content--centered) {
    padding-top: 3rem;
  }
}

/* Hero v3 — smaller name, lighter tagline, booking pinned to bottom */
.hero:has(.hero-content--centered) {
  align-content: stretch;
}
.hero-content--centered {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  gap: 1.5rem;
}
.hero-content--centered .hero-name {
  font-size: clamp(1.05rem, 2.55vw, 1.4rem);
}
.hero-content--centered .hero-tagline {
  color: rgba(247, 245, 241, 0.8);
  font-weight: 300;
}
@media (max-width: 720px) {
  .hero-content--centered .hero-name {
    font-size: 1.15rem;
  }
}

/* Hero v4 — push content down, shrink logo */
.hero:has(.hero-content--centered) {
  padding-top: clamp(6rem, 11vw, 10rem);
}
.hero-content--centered .hero-logo {
  width: clamp(130px, 17vw, 180px);
}
@media (max-width: 720px) {
  .hero:has(.hero-content--centered) {
    padding-top: 6rem;
  }
  .hero-content--centered .hero-logo {
    width: clamp(140px, 40vw, 200px);
  }
}

/* Hero v5 — push content further down */
.hero:has(.hero-content--centered) {
  padding-top: clamp(10rem, 18vw, 16rem);
}
@media (max-width: 720px) {
  .hero:has(.hero-content--centered) {
    padding-top: 10rem;
  }
}

/* Hero v6 — back up slightly */
.hero:has(.hero-content--centered) {
  padding-top: clamp(8rem, 14vw, 13rem);
}
@media (max-width: 720px) {
  .hero:has(.hero-content--centered) {
    padding-top: 8rem;
  }
}

@media (max-width: 720px) {
  .hero:has(.hero-content--centered) {
    padding-top: 10rem;
  }
}

/* Header logo — swap light/dark with header state ──── */
.header-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
.header-logo-img {
  display: block;
  height: 2.6rem;
  width: auto;
  transition: opacity 180ms ease;
}
.header-logo-img--dark { display: none; }

.site-header.is-scrolled .header-logo-img--light,
.site-header.is-solid .header-logo-img--light,
.site-header.menu-open .header-logo-img--light {
  display: none;
}
.site-header.is-scrolled .header-logo-img--dark,
.site-header.is-solid .header-logo-img--dark,
.site-header.menu-open .header-logo-img--dark {
  display: block;
}

/* Desktop: logo sits on the far left, before nav */
@media (min-width: 721px) {
  .header-logo {
    margin-right: auto;
  }
  .header-logo-img {
    height: 2.4rem;
  }
}

/* Mobile: logo replaces the wordmark in the center */
@media (max-width: 720px) {
  .header-logo-img {
    height: 2.2rem;
  }
}

/* Header logo — layout fixes ──────────────────────── */
/* Mobile: absolutely center logo between hamburger and BOOK NOW */
@media (max-width: 720px) {
  .site-header-inner {
    position: relative;
  }
  .header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}

/* Desktop: logo sits right next to nav text (not pushed to far left) */
@media (min-width: 721px) {
  .site-header-inner {
    justify-content: flex-start;
    gap: clamp(0.6rem, 1.4vw, 1rem);
  }
  .header-logo {
    margin-right: 0;
  }
  .site-header-inner > .cta {
    margin-left: auto;
  }
}

/* Mobile: logo centered in the gap between hamburger and CTA */
@media (max-width: 720px) {
  .site-header-inner {
    position: static;
  }
  .header-logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }
}

@media (min-width: 721px) {
  .site-header-inner > .nav-links {
    margin-left: 1.25rem;
  }
}

/* Editorial room showcase — desktop ────────────────── */
@media (min-width: 721px) {
  .room-showcase-section .room-carousel-track,
  .more-rooms-section .room-carousel-track {
    grid-auto-columns: minmax(34rem, 40rem);
    gap: 1.5rem;
  }
  .room-showcase-section .room-card,
  .more-rooms-section .room-card {
    border: none;
    background: transparent;
    padding: 0;
    gap: 1.1rem;
  }
  .room-showcase-section .room-card img,
  .more-rooms-section .room-card img {
    aspect-ratio: 3 / 2;
  }
  .room-showcase-section .room-card .text-stack,
  .more-rooms-section .room-card .text-stack {
    grid-template-rows: auto auto 1fr;
    gap: 0.6rem;
    padding: 0 0.25rem;
  }
  .room-showcase-section .room-card h3,
  .more-rooms-section .room-card h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    min-height: unset;
    letter-spacing: -0.035em;
    line-height: 1.05;
  }
  .room-showcase-section .room-card p,
  .more-rooms-section .room-card p {
    min-height: unset;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted);
  }
  .room-showcase-section .room-meta,
  .more-rooms-section .room-meta {
    white-space: normal;
  }
}

/* Editorial room showcase — mobile (no oversize cards) */
@media (max-width: 720px) {
  .more-rooms-section .room-carousel-track {
    grid-auto-columns: minmax(16rem, 19rem);
    gap: 1rem;
  }
  .more-rooms-section .room-card {
    border: none;
    background: transparent;
    padding: 0;
    gap: 0.7rem;
  }
  .more-rooms-section .room-card img {
    aspect-ratio: 3 / 2;
    height: auto;
  }
  .more-rooms-section .room-card h3 {
    font-size: 1.3rem;
    min-height: unset;
    line-height: 1.1;
    margin: 0;
  }
  .more-rooms-section .room-card p {
    min-height: unset;
    font-size: 0.85rem;
    line-height: 1.55;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .more-rooms-section .room-card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .more-rooms-section .room-card-action {
    padding: 0.7rem 0.5rem;
    font-size: 0.66rem;
  }
}

/* Click affordance on gallery photos ──────────────── */
.room-photo-card img,
.gallery-rail-card img {
  cursor: zoom-in;
  transition: transform 280ms ease, filter 280ms ease;
}
.room-photo-card:hover img,
.gallery-rail-card:hover img {
  transform: scale(1.015);
  filter: brightness(1.04);
}

/* Lightbox overlay ────────────────────────────────── */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 2vw, 1.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(0.5rem, 3vw, 2rem);
  background: rgba(15, 14, 12, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.photo-lightbox[hidden] { display: none; }
.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-lightbox__figure {
  position: relative;
  margin: 0;
  max-width: min(100%, 1200px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transform: scale(0.985);
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.photo-lightbox.is-open .photo-lightbox__figure {
  transform: scale(1);
}

.photo-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.65);
  background: #0f0e0c;
}

.photo-lightbox__caption {
  margin: 0;
  font-family: var(--font-body, sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(247, 245, 241, 0.7);
  text-align: center;
}
.photo-lightbox__caption[hidden] { display: none; }

.photo-lightbox__close,
.photo-lightbox__nav {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 245, 241, 0.12);
  color: #f7f5f1;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.photo-lightbox__close:hover,
.photo-lightbox__close:focus-visible,
.photo-lightbox__nav:hover,
.photo-lightbox__nav:focus-visible {
  background: rgba(247, 245, 241, 0.22);
  outline: none;
}
.photo-lightbox__close:focus-visible,
.photo-lightbox__nav:focus-visible {
  box-shadow: 0 0 0 2px rgba(247, 245, 241, 0.6);
}

.photo-lightbox__close {
  position: absolute;
  top: clamp(0.6rem, 2vw, 1.25rem);
  right: clamp(0.6rem, 2vw, 1.25rem);
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.6rem;
}
.photo-lightbox__nav { font-size: 2.4rem; }
.photo-lightbox__nav[hidden] { display: none; }

@media (max-width: 720px) {
  .photo-lightbox__nav {
    position: absolute;
    bottom: clamp(5rem, 12vh, 7rem);
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.9rem;
    background: rgba(247, 245, 241, 0.18);
  }
  .photo-lightbox__nav--prev { left: 1rem; }
  .photo-lightbox__nav--next { right: 1rem; }
  .photo-lightbox__img { max-height: 70vh; }
}

@media (prefers-reduced-motion: reduce) {
  .photo-lightbox,
  .photo-lightbox__figure,
  .room-photo-card img,
  .gallery-rail-card img {
    transition: none;
  }
}

/* Lightbox SVG icons — center themselves cleanly */
.photo-lightbox__close svg,
.photo-lightbox__nav svg {
  display: block;
}

/* Sticky hero — content scrolls up over it ──────────── */
.hero,
.page-hero,
.room-page-hero {
  position: sticky;
  top: 0;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  isolation: isolate;
  margin-top: 0;
}
.content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background: var(--paper);
  z-index: -1;
}

/* Things to do / Restaurants: paint a paper background behind the
   map-section so it covers the sticky hero when scrolled. */
.map-section,
.post-article,
.site-footer,
.sister-properties {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.map-section::before,
.post-article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background: var(--paper);
  z-index: -1;
}

/* Cross-document fade between pages (Chrome/Edge). Progressive enhancement -- ignored elsewhere. */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: 180ms;
  animation-timing-function: cubic-bezier(.4,0,.2,1);
}

/* Sister properties section (home page, above footer) */
.sister-properties {
  background: #ffffff;
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(23, 22, 20, 0.08);
  color: var(--ink);
}
.sister-properties-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.sister-properties-logo {
  display: block;
  width: 160px;
  height: auto;
  margin-bottom: 0.4rem;
}
.sister-properties .eyebrow {
  color: var(--ink);
}
.sister-properties h2 {
  margin: 0;
  color: var(--ink);
}
.sister-properties-copy {
  margin: 0;
  color: rgba(23, 22, 20, 0.78);
  max-width: 56ch;
}
.sister-properties-cta {
  margin-top: 0.6rem;
}

/* Promos page */
.promo-list-section { padding: 3rem 0; }
.promo-list { display: flex; flex-direction: column; gap: 2.5rem; max-width: 960px; margin: 0 auto; }
.promo-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 2rem; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.promo-card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.promo-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-card-body { padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.promo-card-body h2 { margin: 0; font-size: 1.5rem; }
.promo-card-body p { margin: 0; color: rgba(23, 22, 20, 0.78); line-height: 1.6; }
.promo-empty { text-align: center; color: var(--ink-faint); padding: 3rem 1rem; font-style: italic; }
@media (max-width: 720px) {
  .promo-card { grid-template-columns: 1fr; }
  .promo-card-body { padding: 1.25rem 1.25rem 1.5rem; }
}
