:root {
  --paper: #f7f3ec;
  --paper-strong: #fffaf1;
  --ink: #1e211b;
  --muted: #6d6c62;
  --line: #d9d2c4;
  --forest: #315b43;
  --blue: #315f8f;
  --brass: #a5753b;
  --black: #11130f;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(35, 31, 24, 0.12);
  --soft-shadow: 0 14px 34px rgba(35, 31, 24, 0.08);
  --lift-shadow: 0 18px 44px rgba(35, 31, 24, 0.14);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(165, 117, 59, 0.24);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--black);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(30, 33, 27, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.is-open {
  color: var(--ink);
}

.brand {
  position: relative;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.92rem;
  font-weight: 680;
}

.site-nav a {
  opacity: 0.9;
}

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

.nav-booking {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.18rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.55;
}

.language-switch a:hover,
.language-switch a.is-active {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
}

.site-header.is-scrolled .language-switch a:hover,
.site-header.is-scrolled .language-switch a.is-active,
.site-header.is-open .language-switch a:hover,
.site-header.is-open .language-switch a.is-active {
  background: rgba(30, 33, 27, 0.08);
}

.header-language-switch {
  display: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

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

.hero-media {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(0.96);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 9, 0.84), rgba(10, 12, 9, 0.48) 50%, rgba(10, 12, 9, 0.22)),
    linear-gradient(0deg, rgba(10, 12, 9, 0.58), rgba(10, 12, 9, 0.2) 54%, rgba(10, 12, 9, 0.28));
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 5rem;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.room-page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.hero h1,
.section h2,
.feature-copy h2,
.contact-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.3rem, 8.8vw, 7.4rem);
  color: #d4af37;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero-copy {
  max-width: 650px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  text-wrap: pretty;
}

.room-page-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.room-page-media,
.room-page-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.room-page-media {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(0.96);
}

.room-page-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 9, 0.84), rgba(10, 12, 9, 0.5) 52%, rgba(10, 12, 9, 0.22)),
    linear-gradient(0deg, rgba(10, 12, 9, 0.62), rgba(10, 12, 9, 0.22) 52%, rgba(10, 12, 9, 0.3));
}

.room-page-content {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 4.8rem;
  color: var(--white);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.room-page-content h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8.2vw, 7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.room-page-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  text-wrap: pretty;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 760;
  box-shadow: 0 10px 24px rgba(35, 31, 24, 0.1);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(35, 31, 24, 0.16);
}

.button:focus-visible {
  outline: 3px solid rgba(49, 95, 143, 0.38);
  outline-offset: 3px;
}

.button-primary {
  background: var(--forest);
  color: var(--white);
}

.button-primary:hover {
  background: #274c38;
}

.button-secondary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary:hover {
  background: #2a2e25;
}

.button-booking {
  background: #003b95;
  color: var(--white);
}

.button-booking:hover {
  background: #002f78;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

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

.quick-facts {
  width: min(var(--max), calc(100% - 2rem));
  margin: -2.4rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper-strong);
  border: 1px solid rgba(217, 210, 196, 0.8);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-fact {
  min-width: 0;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.quick-fact:last-child {
  border-right: 0;
}

.quick-fact-link {
  transition: background 160ms ease, color 160ms ease;
}

.quick-fact-link:hover {
  background: rgba(49, 91, 67, 0.07);
}

.quick-facts strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  line-height: 1;
}

.quick-facts span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.intro-grid,
.section-heading,
.position-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(1.5rem, 6vw, 5rem);
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.position-copy h2,
.review-section h2,
.feature-copy h2,
.contact-band h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.intro-grid p,
.section-heading p,
.position-copy p,
.feature-copy p,
.contact-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  text-wrap: pretty;
}

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

.room-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(35, 31, 24, 0.03), var(--soft-shadow);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.room-card:hover {
  border-color: rgba(49, 91, 67, 0.26);
  transform: translateY(-2px);
  box-shadow: var(--lift-shadow);
}

.room-card img {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 420ms ease;
}

.room-card:hover img {
  transform: scale(1.025);
}

.room-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.room-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.15;
}

.room-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-wrap: pretty;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
  margin-bottom: 1.05rem;
}

.room-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.24rem 0.52rem;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 760;
}

.room-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 0.55rem;
  min-height: 44px;
  margin-top: auto;
  padding: 0.68rem 0.92rem;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(49, 91, 67, 0.18);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.room-link::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.room-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 12px 26px rgba(30, 33, 27, 0.2);
  transform: translateY(-1px);
}

.room-link:focus-visible {
  outline: 3px solid rgba(49, 95, 143, 0.35);
  outline-offset: 3px;
}

.room-detail {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.room-detail-alt {
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
}

.room-detail-alt .room-detail-copy {
  order: 2;
}

.room-detail-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.room-detail-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.clean-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--brass);
  color: var(--ink);
  font-weight: 760;
}

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

.room-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.room-gallery img:hover {
  transform: translateY(-2px);
  box-shadow: var(--lift-shadow);
}

.room-page-detail {
  border-top: 0;
}

.other-rooms {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.other-rooms h2 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.other-room-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.other-room-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 44px;
  padding: 0.7rem 0.92rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.56);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 780;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.other-room-links a::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.other-room-links a:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.34), rgba(233, 238, 232, 0)),
    #e9eee8;
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  max-width: 560px;
  padding: clamp(2rem, 6vw, 5rem);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
  margin-top: 2rem;
}

.service-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.66);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 780;
  text-align: center;
  box-shadow: 0 10px 24px rgba(35, 31, 24, 0.04);
}

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

.service-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  border-color: rgba(49, 91, 67, 0.24);
  transform: translateY(-2px);
  box-shadow: var(--lift-shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-card:hover img {
  transform: scale(1.025);
}

.service-card div {
  padding: 1rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-wrap: pretty;
}

.position-section {
  align-items: start;
}

.position-copy {
  max-width: 620px;
}

.position-copy h2 {
  font-size: clamp(2.4rem, 4.1vw, 3.7rem);
  line-height: 1.04;
}

.position-copy p {
  max-width: 58ch;
  margin-top: 1rem;
}

.position-copy .button {
  margin-top: 1.4rem;
}

.distance-list {
  display: grid;
  gap: 0;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.58);
  box-shadow: var(--soft-shadow);
}

.distance-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  transition: background 160ms ease;
}

.distance-item:hover {
  background: rgba(49, 91, 67, 0.06);
}

.distance-item:last-child {
  border-bottom: 0;
}

.distance-item strong {
  font-size: 0.96rem;
}

.distance-item span {
  color: var(--blue);
  font-weight: 800;
}

.review-section {
  padding-top: 0;
}

.review-section h2 {
  max-width: 900px;
}

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

blockquote {
  position: relative;
  margin: 0;
  padding: 1.45rem;
  border: 1px solid rgba(217, 210, 196, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--soft-shadow);
}

blockquote::before {
  content: "";
  display: block;
  width: 2.1rem;
  height: 3px;
  margin-bottom: 0.9rem;
  background: var(--brass);
}

blockquote p {
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--forest);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.contact-band {
  margin-top: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(120deg, rgba(49, 91, 67, 0.28), rgba(30, 33, 27, 0) 42%),
    var(--ink);
  color: var(--white);
}

.contact-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
}

.contact-band .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer div {
  display: grid;
  gap: 0.2rem;
}

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

.footer-links {
  text-align: right;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 1rem;
  }

  .header-language-switch {
    position: relative;
    z-index: 12;
    display: inline-flex;
    margin-left: auto;
  }

  .site-header.is-open {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 760;
  }

  .nav-toggle-icon {
    display: grid;
    gap: 5px;
    width: 18px;
  }

  .nav-toggle-icon span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: none;
    align-content: center;
    justify-items: center;
    gap: 1.2rem;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 5.5rem 1rem 2rem;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    visibility: hidden;
    font-size: 1.4rem;
  }

  .language-switch {
    margin-top: 0.4rem;
  }

  .site-nav .language-switch {
    display: none;
  }

  .language-switch a {
    width: 2.35rem;
    height: 2.35rem;
  }

  body:not(.nav-open) .site-nav {
    display: none !important;
  }

  .site-nav.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .hero {
    min-height: 78svh;
  }

  .room-page-hero {
    min-height: 74svh;
  }

  .hero-shade,
  .room-page-shade {
    background:
      linear-gradient(180deg, rgba(10, 12, 9, 0.48), rgba(10, 12, 9, 0.5) 38%, rgba(10, 12, 9, 0.74)),
      linear-gradient(90deg, rgba(10, 12, 9, 0.58), rgba(10, 12, 9, 0.34));
  }

  .hero-content {
    padding-bottom: 4rem;
  }

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

  .quick-fact:nth-child(2) {
    border-right: 0;
  }

  .quick-fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .section-heading,
  .position-section,
  .feature-band,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

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

  .room-detail-alt .room-detail-copy {
    order: initial;
  }

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

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

  .contact-actions {
    margin-top: 0;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 0.95rem;
  }

  .hero-content {
    width: min(100% - 1.25rem, var(--max));
  }

  .room-page-content {
    width: min(100% - 1.25rem, var(--max));
    padding-bottom: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .room-page-content h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

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

  .quick-facts {
    width: calc(100% - 1.25rem);
  }

  .quick-fact {
    padding: 1rem;
  }

  .section,
  .contact-inner,
  .site-footer {
    width: calc(100% - 1.25rem);
  }

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

  .room-card {
    display: flex;
  }

  .room-card img {
    order: 2;
    aspect-ratio: 16 / 10;
    max-height: 220px;
  }

  .room-card-content {
    order: 1;
    padding: 1.15rem;
  }

  .room-card h3 {
    font-size: 1.28rem;
  }

  .room-card p {
    font-size: 0.98rem;
  }

  .room-detail {
    width: calc(100% - 1.25rem);
  }

  .room-gallery {
    gap: 0.45rem;
  }

  .room-page-detail .room-gallery {
    grid-template-columns: 1fr;
  }

  .other-room-links {
    display: grid;
  }

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

  .service-card {
    border-left: 0;
  }

  .service-card img {
    display: block;
    aspect-ratio: 16 / 9;
    max-height: 190px;
  }

  .feature-band img {
    min-height: 320px;
  }

  .distance-item {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

}

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