:root {
  --canvas: #f8f6f2;
  --surface: #fffdfa;
  --surface-soft: #f0ece6;
  --ink: #242126;
  --muted: #69636a;
  --line: #ded8d1;
  --rose: #a33b58;
  --rose-dark: #7f2942;
  --rose-soft: #ead3d9;
  --gold: #c5a45d;
  --gold-soft: #eee3c8;
  --success: #22643b;
  --error: #9b2e38;
  --shadow: 0 20px 60px rgb(85 65 70 / 0.12);
  --radius-card: 24px;
  --radius-control: 14px;
  --radius-button: 999px;
  --shell: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, Aptos, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(80px, 10vw, 148px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: var(--radius-button);
  background: var(--ink);
  color: var(--surface);
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

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

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button--primary {
  background: var(--rose);
  color: #fffafc;
}

.button--primary:hover {
  background: var(--rose-dark);
}

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

.button--ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.text-link {
  display: inline-block;
  color: var(--rose-dark);
  font-weight: 750;
  text-decoration-color: color-mix(in srgb, var(--rose) 38%, transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  background: color-mix(in srgb, var(--canvas) 90%, transparent);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.site-header__inner {
  display: grid;
  min-height: 74px;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  width: 190px;
  align-items: center;
  border-radius: 8px;
}

.brand img,
.brand .custom-logo {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: end;
}

.site-nav__list,
.site-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--rose);
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: flex;
  min-height: 48px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--radius-button);
  background: var(--rose);
  color: #fffafc;
  line-height: 1.08;
  text-align: left;
  text-decoration: none;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}

.header-call:hover {
  transform: translateY(-1px);
  background: var(--rose-dark);
}

.header-call span {
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
}

.home-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100dvh - 74px);
  overflow: hidden;
  background: #242126;
}

.home-hero__slides,
.home-hero__slide,
.home-hero__slide img,
.home-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1200ms var(--ease);
}

.home-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.home-hero__slide img {
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 6800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-hero__slide.is-active img {
  transform: scale(1.075);
}

.home-hero__overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgb(24 21 25 / 0.82) 0%, rgb(24 21 25 / 0.58) 42%, rgb(24 21 25 / 0.12) 74%),
    linear-gradient(180deg, rgb(24 21 25 / 0.12) 45%, rgb(24 21 25 / 0.48) 100%);
}

.home-hero__content {
  position: relative;
  display: flex;
  min-height: calc(100dvh - 74px);
  align-items: center;
  padding-block: clamp(54px, 9vh, 92px);
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  width: min(100%, 620px);
}

.home-hero h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  color: #fffafc;
  text-shadow: 0 2px 28px rgb(10 8 11 / 0.22);
}

.home-hero .eyebrow {
  color: #f3d994;
}

.home-hero__copy > p:not(.eyebrow) {
  max-width: 42ch;
  margin-bottom: 34px;
  color: rgb(255 250 252 / 0.86);
  font-size: clamp(1.03rem, 1.6vw, 1.25rem);
}

.home-hero .button--ghost {
  border-color: rgb(255 250 252 / 0.58);
  background: rgb(24 21 25 / 0.26);
  color: #fffafc;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-hero .button--ghost:hover {
  border-color: #fffafc;
  background: rgb(255 250 252 / 0.14);
}

.home-hero__toggle {
  position: absolute;
  right: 0;
  bottom: clamp(28px, 5vh, 48px);
  z-index: 3;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgb(255 250 252 / 0.42);
  border-radius: var(--radius-button);
  background: rgb(24 21 25 / 0.46);
  color: #fffafc;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.home-hero__toggle:hover {
  border-color: #fffafc;
  background: rgb(24 21 25 / 0.68);
}

.home-hero__toggle:active {
  transform: translateY(1px) scale(0.985);
}

.facts-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.facts-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts-strip__inner > div {
  display: grid;
  gap: 2px;
  padding: 27px clamp(18px, 3vw, 38px);
  border-left: 1px solid var(--line);
}

.facts-strip__inner > div:last-child {
  border-right: 1px solid var(--line);
}

.facts-strip strong {
  color: var(--ink);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.facts-strip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
}

.intro-section__copy p {
  max-width: 55ch;
  color: var(--muted);
}

.intro-section__copy .text-link {
  margin-top: 14px;
}

.intro-section__gallery {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  align-items: end;
  gap: 20px;
}

.intro-section__gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.intro-section__primary {
  aspect-ratio: 4 / 5;
}

.intro-section__secondary {
  aspect-ratio: 3 / 4;
  margin-bottom: -46px;
}

.rooms-section {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 750px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 55ch;
  color: var(--muted);
}

.section-heading--plain {
  margin-bottom: 46px;
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 22px;
}

.room-layout__stack {
  display: grid;
  gap: 22px;
}

.room-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.room-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

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

.room-feature--large {
  display: grid;
  min-height: 650px;
  grid-template-rows: 1fr auto;
}

.room-feature--large img {
  min-height: 420px;
}

.room-feature--compact {
  display: grid;
  min-height: 314px;
  grid-template-columns: 0.9fr 1.1fr;
}

.room-feature__copy {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.5vw, 44px);
}

.room-feature__copy p {
  max-width: 45ch;
  margin: 0;
  color: var(--muted);
}

.room-feature__copy a {
  display: inline-block;
  margin-top: 20px;
  color: var(--rose-dark);
  font-weight: 750;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 20px;
}

.amenity {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-card);
}

.amenity > strong,
.amenity figcaption strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.amenity p,
.amenity figcaption span {
  display: block;
  max-width: 32ch;
  margin: 0;
}

.amenity--wide {
  grid-column: span 2;
}

.amenity--image {
  min-height: 360px;
  color: #fffafc;
}

.amenity--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgb(32 24 29 / 0.76));
}

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

.amenity figcaption {
  position: relative;
  z-index: 1;
}

.amenity--rose {
  background: var(--rose);
  color: #fffafc;
}

.amenity--rose strong,
.amenity--gold strong {
  color: inherit;
}

.amenity--gold {
  background: var(--gold-soft);
  color: #44381f;
}

.amenity--light {
  background: var(--surface-soft);
  color: var(--ink);
}

.reviews-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.reviews-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
}

.reviews-section__heading p {
  color: var(--muted);
}

.reviews-list {
  display: grid;
  gap: 0;
}

.reviews-list blockquote {
  margin: 0;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.reviews-list blockquote:first-child {
  padding-top: 0;
}

.reviews-list blockquote:last-child {
  border-bottom: 0;
}

.reviews-list blockquote p {
  max-width: 50ch;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.reviews-list cite {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 650;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.location-section__media {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.location-section__media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.location-section__copy p {
  color: var(--muted);
}

.location-section address,
.contact-details address,
.site-footer address {
  margin-bottom: 26px;
  color: var(--ink);
  font-style: normal;
  font-weight: 650;
}

.booking-section {
  padding-block: clamp(76px, 9vw, 126px);
  background: var(--rose-soft);
}

.booking-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.booking-section__copy {
  position: sticky;
  top: 116px;
}

.booking-section__copy p:not(.eyebrow) {
  color: #5d4f54;
}

.booking-form,
.contact-form {
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface-soft);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input {
  min-height: 52px;
  padding: 11px 14px;
}

.field textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--rose);
  background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--rose) 18%, transparent);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--rose);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-notice {
  margin-bottom: 22px;
  padding: 13px 16px;
  border-radius: var(--radius-control);
  font-size: 0.88rem;
  font-weight: 650;
}

.form-notice--success {
  border: 1px solid color-mix(in srgb, var(--success) 32%, transparent);
  background: color-mix(in srgb, var(--success) 10%, var(--surface));
  color: var(--success);
}

.form-notice--error {
  border: 1px solid color-mix(in srgb, var(--error) 34%, transparent);
  background: color-mix(in srgb, var(--error) 10%, var(--surface));
  color: var(--error);
}

.page-hero {
  display: grid;
  min-height: min(660px, calc(100dvh - 74px));
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  padding-block: clamp(48px, 8vw, 88px);
}

.page-hero__copy h1 {
  max-width: 9ch;
  margin-bottom: 22px;
}

.page-hero__copy > p:not(.eyebrow) {
  max-width: 45ch;
  color: var(--muted);
}

.page-hero__media {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.page-hero__media img {
  width: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 300px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--surface-soft);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease), filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.lightbox {
  width: min(1120px, calc(100vw - 36px));
  max-width: none;
  max-height: calc(100dvh - 36px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  background: #171519;
  box-shadow: 0 28px 100px rgb(0 0 0 / 0.48);
}

.lightbox::backdrop {
  background: rgb(20 17 21 / 0.82);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100dvh - 36px);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 10px 15px;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: var(--radius-button);
  background: rgb(24 21 25 / 0.78);
  color: #fffafc;
  cursor: pointer;
}

.pricing-section {
  max-width: 1040px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table thead th {
  background: var(--rose-soft);
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table tbody th {
  font-size: 1.02rem;
}

.pricing-table tbody th span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 550;
}

.pricing-table tbody td {
  color: var(--rose-dark);
  font-weight: 750;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-note {
  max-width: 70ch;
  margin: 22px 0 54px;
  color: var(--muted);
  font-size: 0.88rem;
}

.rules {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.rules summary {
  padding: 24px 28px;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.rules[open] summary {
  border-bottom: 1px solid var(--line);
}

.rules__content {
  max-height: 620px;
  overflow: auto;
  padding: 10px 28px 28px;
}

.rules ol {
  columns: 2;
  column-gap: 50px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.rules li {
  break-inside: avoid;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.contact-details {
  position: sticky;
  top: 118px;
}

.contact-details__links {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
}

.contact-details__links a {
  display: grid;
  gap: 2px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-details__links span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-details__links strong {
  color: var(--rose-dark);
}

.contact-form > p {
  margin-bottom: 30px;
  color: var(--muted);
}

.map-section {
  padding-bottom: clamp(80px, 10vw, 140px);
}

.map-section iframe {
  width: 100%;
  height: min(620px, 68vw);
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-card);
}

.content-shell {
  min-height: 60dvh;
  padding-block: clamp(72px, 9vw, 130px);
}

.prose {
  max-width: 760px;
}

.prose h1 {
  max-width: 10ch;
}

.prose p,
.prose li {
  color: var(--muted);
}

.empty-state {
  display: flex;
  min-height: 50dvh;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
}

.empty-state h1 {
  max-width: 10ch;
  margin-bottom: 24px;
}

.empty-state > p:not(.eyebrow) {
  max-width: 50ch;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.7fr;
  gap: clamp(46px, 8vw, 110px);
  padding-block: 70px;
}

.site-footer__brand img {
  width: 210px;
  height: auto;
  margin-bottom: 24px;
}

.site-footer__brand p {
  max-width: 34ch;
  color: var(--muted);
}

.site-footer h2 {
  margin-bottom: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--ink);
}

.footer-nav,
.site-footer .site-nav__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  color: inherit;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 170px 1fr auto;
    gap: 22px;
  }

  .brand {
    width: 170px;
  }

  .site-nav__list,
  .site-nav .menu {
    gap: 17px;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .header-call span {
    display: none;
  }

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

  .room-feature--compact img {
    min-height: 170px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .site-header__inner {
    min-height: 70px;
    grid-template-columns: 170px 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-self: end;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-button);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 0.8rem;
    font-weight: 700;
  }

  .menu-toggle__lines {
    display: grid;
    gap: 4px;
  }

  .menu-toggle__lines i {
    display: block;
    width: 17px;
    height: 2px;
    background: currentColor;
    transition: transform 220ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    max-width: none;
    justify-self: initial;
    max-height: calc(100dvh - 70px);
    overflow: auto;
    padding: 24px 16px 34px;
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list,
  .site-nav .menu {
    width: var(--shell);
    align-items: stretch;
    margin-inline: auto;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-call {
    min-height: 44px;
    padding-inline: 15px;
  }

  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 48px 64px;
  }

  .home-hero {
    min-height: calc(100dvh - 70px);
  }

  .home-hero__content {
    min-height: calc(100dvh - 70px);
    align-items: flex-end;
    padding-block: 54px 78px;
  }

  .home-hero h1 {
    max-width: 11ch;
  }

  .page-hero__media {
    min-height: auto;
    aspect-ratio: 16 / 11;
  }

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

  .facts-strip__inner > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .facts-strip__inner > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-section,
  .reviews-section__inner,
  .location-section,
  .booking-section__inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-section__copy {
    max-width: 650px;
  }

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

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

  .room-feature--compact {
    min-height: auto;
  }

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

  .amenity--wide {
    grid-column: span 2;
  }

  .booking-section__copy,
  .contact-details {
    position: static;
  }

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

  .rules ol {
    columns: 1;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-card: 18px;
    --radius-control: 12px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .section-space {
    padding-block: 76px;
  }

  .site-header__inner {
    grid-template-columns: 140px 1fr;
    gap: 12px;
  }

  .brand {
    width: 140px;
  }

  .header-call {
    display: none;
  }

  .page-hero {
    padding-block: 36px 54px;
  }

  .page-hero__media {
    aspect-ratio: 4 / 3;
  }

  .home-hero__content {
    padding-block: 42px 82px;
  }

  .home-hero__copy {
    width: 100%;
  }

  .home-hero__copy > p:not(.eyebrow) {
    max-width: 34ch;
    margin-bottom: 28px;
  }

  .home-hero__toggle {
    right: auto;
    bottom: 24px;
    left: 0;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }

  .facts-strip__inner {
    width: 100%;
  }

  .facts-strip__inner > div {
    padding: 21px 16px;
  }

  .intro-section {
    gap: 50px;
  }

  .intro-section__gallery {
    grid-template-columns: 1fr 0.58fr;
    gap: 12px;
  }

  .intro-section__secondary {
    margin-bottom: -26px;
  }

  .room-feature--large {
    min-height: auto;
  }

  .room-feature--large img {
    min-height: 310px;
  }

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

  .room-feature--compact {
    grid-template-columns: 1fr 1.08fr;
  }

  .room-feature--compact img {
    min-height: 230px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .amenity,
  .amenity--wide {
    min-height: 250px;
    grid-column: auto;
  }

  .amenity--image {
    min-height: 340px;
  }

  .form-grid,
  .form-grid--dates {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form,
  .contact-form {
    padding: 22px 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-section {
    width: 100%;
    padding-inline: 16px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 20px;
  }

  .site-footer__main,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #19171a;
    --surface: #211f22;
    --surface-soft: #2a272b;
    --ink: #f4f0ec;
    --muted: #bbb4ba;
    --line: #464047;
    --rose: #bd5270;
    --rose-dark: #e08aa2;
    --rose-soft: #3f2931;
    --gold: #d1b271;
    --gold-soft: #413822;
    --shadow: 0 22px 70px rgb(0 0 0 / 0.34);
  }

  .brand,
  .site-footer__brand img {
    padding: 5px 8px;
    background: #f8f6f2;
  }

  .button--primary,
  .header-call,
  .amenity--rose {
    background: #a33b58;
  }

  .button--primary:hover,
  .header-call:hover {
    background: #8b304b;
  }

  .amenity--gold {
    color: #f4ead2;
  }

  .booking-section__copy p:not(.eyebrow) {
    color: var(--muted);
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }

  .home-hero__slide {
    transition: none;
  }

  .home-hero__slide.is-active img {
    transform: scale(1.025);
    transition: none;
  }

  .home-hero__toggle {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--canvas);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
