:root {
  --paper: #f5f1eb;
  --paper-deep: #ece5dc;
  --ink: #252321;
  --muted: #6f6a65;
  --line: rgba(37, 35, 33, 0.18);
  --white: #fffdf9;
  --accent: #7d0e2d;
  --accent-dark: #5c0920;
  --dark: #211f1d;
  --dark-muted: #b9b1aa;
  --radius: 4px;
  --page: min(1420px, calc(100vw - 64px));
  --shadow: 0 24px 80px rgba(39, 27, 22, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--accent);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0 max(32px, calc((100vw - 1420px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 235, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 0;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav a,
.header-cta {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding-block: 4px;
}

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

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 3px;
  align-items: center;
}

.language-switcher button {
  width: 34px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.language-switcher button:hover {
  color: var(--ink);
}

.language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--accent);
}

.hero {
  display: flex;
  min-height: 680px;
  padding: 112px 0 56px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.hero h1,
.section-heading h2,
.booking-intro h2,
.location-grid h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(68px, 8vw, 126px);
}

.hero-copy {
  max-width: 650px;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 23px);
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 28px;
}

.hero-actions > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(125, 14, 45, 0.28);
  outline-offset: 3px;
}

.button--primary {
  min-width: 212px;
  color: var(--white);
  background: var(--accent);
}

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

.service-points {
  display: flex;
  margin: auto 0 0;
  padding: 0;
  gap: 36px;
  color: var(--muted);
  list-style: none;
  font-size: 13px;
}

.service-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-points li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.rooms-section {
  padding: 100px 0 120px;
  scroll-margin-top: 78px;
}

.section-heading {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 72px;
  align-items: end;
}

.section-heading h2 {
  max-width: 780px;
  font-size: clamp(44px, 5vw, 74px);
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.room-card {
  display: flex;
  overflow: hidden;
  grid-column: span 4;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.55);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.room-card--wide {
  grid-column: span 6;
}

.room-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
  background: var(--paper-deep);
}

.room-card--wide .room-image-wrap {
  aspect-ratio: 16 / 10;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

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

.room-number,
.status-badge {
  position: absolute;
  top: 16px;
  display: inline-flex;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-number {
  left: 16px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
}

.status-badge {
  right: 16px;
  color: var(--white);
  background: var(--accent);
}

.room-content {
  display: flex;
  min-height: 256px;
  padding: 26px;
  flex: 1;
  flex-direction: column;
}

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

.room-title-row h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.room-title-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.capacity {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  flex: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capacity--pending {
  border-style: dashed;
  color: var(--muted);
}

.room-footer {
  margin-top: auto;
  padding-top: 30px;
  align-items: center;
}

.room-footer p {
  margin: 0;
}

.room-footer strong {
  font-size: 30px;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.room-footer span {
  color: var(--muted);
  font-size: 13px;
}

.button--outline {
  border-color: var(--accent);
  color: var(--accent);
}

.button--outline:hover {
  color: var(--white);
  background: var(--accent);
}

.room-title-row--stacked,
.room-footer--stacked {
  flex-direction: column;
}

.room-footer--stacked {
  align-items: stretch;
}

.room-card--unavailable .room-image {
  filter: grayscale(1) contrast(0.82);
  opacity: 0.68;
}

.room-card--unavailable:hover {
  box-shadow: none;
  transform: none;
}

.room-card--unavailable:hover .room-image {
  transform: none;
}

.unavailable-copy {
  color: var(--muted);
  font-size: 13px;
}

.button--disabled {
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

.impression-section {
  display: grid;
  padding: 24px 0 130px;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 110px;
  align-items: end;
}

.impression-heading,
.impression-copy {
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.impression-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.impression-copy > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.impression-copy ul {
  display: grid;
  margin: 36px 0 0;
  padding: 24px 0 0;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.impression-copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.impression-copy li::before {
  width: 5px;
  height: 5px;
  margin-top: 7px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  flex: none;
}

.booking-section {
  padding: 110px 0;
  color: var(--white);
  background: var(--dark);
  scroll-margin-top: 78px;
}

.booking-intro {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.eyebrow--light {
  color: #d6a3b1;
  grid-column: 1 / -1;
  margin-bottom: -44px;
}

.booking-intro h2 {
  max-width: 720px;
  font-size: clamp(48px, 5.6vw, 82px);
}

.booking-intro > p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--dark-muted);
  font-size: 17px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.booking-form,
.booking-summary {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.booking-form {
  padding: 34px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.field--full {
  grid-column: 1 / -1;
}

.field > span,
.hospitality-option legend {
  color: var(--dark-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field em {
  font-weight: 450;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  color-scheme: dark;
}

.field select {
  color-scheme: light;
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.field-hint {
  min-height: 18px;
  color: #d6a3b1;
  font-size: 11px;
  line-height: 1.4;
}

.field select.native-select-hidden {
  position: absolute !important;
  width: 1px !important;
  min-height: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.custom-select-trigger:hover,
.custom-select.is-open .custom-select-trigger {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.085);
}

.custom-select-trigger[aria-invalid="true"] {
  border-color: #e89aaa;
}

.custom-select-trigger:disabled {
  color: var(--dark-muted);
  cursor: not-allowed;
  opacity: 0.58;
}

.custom-select-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-value.is-placeholder {
  color: var(--dark-muted);
}

.custom-select-chevron {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  flex: none;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms ease;
}

.custom-select.is-open .custom-select-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.custom-select-popover {
  position: absolute;
  z-index: 60;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  overflow: hidden;
  max-height: 340px;
  border: 1px solid rgba(37, 35, 33, 0.12);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;
  backdrop-filter: blur(24px);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.custom-select.is-open .custom-select-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select-header {
  display: flex;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(37, 35, 33, 0.1);
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 241, 235, 0.78);
}

.custom-select-title {
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-select-close {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(37, 35, 33, 0.07);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.custom-select-options {
  overflow-y: auto;
  max-height: 286px;
  padding: 8px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.custom-select-option {
  display: flex;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: var(--paper-deep);
}

.custom-select-option[aria-selected="true"] {
  color: var(--accent);
  background: rgba(125, 14, 45, 0.08);
  font-weight: 650;
}

.custom-select-option:disabled {
  color: #aaa29b;
  cursor: not-allowed;
}

.custom-select-check {
  opacity: 0;
  font-size: 14px;
}

.custom-select-option[aria-selected="true"] .custom-select-check {
  opacity: 1;
}

.custom-select-backdrop {
  display: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.46);
}

.hospitality-option {
  margin: 30px 0;
  padding: 0;
  border: 0;
}

.hospitality-option legend {
  margin-bottom: 10px;
}

.option-card {
  display: grid;
  padding: 20px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.option-card:hover,
.option-card:has(input:checked) {
  border-color: #d6a3b1;
  background: rgba(125, 14, 45, 0.18);
}

.option-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.option-check > span {
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.option-check input:checked + span {
  border: 6px solid #d6a3b1;
}

.option-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.option-copy strong,
.option-price {
  font-size: 15px;
}

.option-copy small {
  color: var(--dark-muted);
  font-size: 13px;
}

.contact-fields {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.terms-check {
  display: flex;
  margin: 24px 0;
  gap: 11px;
  align-items: flex-start;
  color: var(--dark-muted);
  cursor: pointer;
  font-size: 13px;
}

.terms-check input {
  margin-top: 3px;
  accent-color: #d6a3b1;
}

.terms-check a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button--booking {
  width: 100%;
  min-height: 58px;
  color: var(--white);
  background: var(--accent);
}

.button--booking:hover {
  background: #94143a;
}

.form-note {
  margin: 12px 0 0;
  color: var(--dark-muted);
  font-size: 12px;
  text-align: center;
}

.request-message {
  display: flex;
  margin-top: 20px;
  padding: 16px;
  flex-direction: column;
  gap: 3px;
  border: 1px solid rgba(214, 163, 177, 0.45);
  color: var(--white);
  background: rgba(125, 14, 45, 0.2);
  font-size: 13px;
}

.request-message[hidden] {
  display: none;
}

.request-email-link {
  width: fit-content;
  margin-top: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-weight: 700;
}

.booking-summary {
  position: sticky;
  top: 102px;
  padding: 30px;
}

.summary-label {
  margin: 0 0 10px;
  color: #d6a3b1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.booking-summary h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 530;
  letter-spacing: -0.035em;
}

.summary-details {
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-details > div {
  display: flex;
  padding: 12px 0;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.summary-details dt {
  color: var(--dark-muted);
}

.summary-details dd {
  margin: 0;
  text-align: right;
}

.price-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--dark-muted);
  font-size: 13px;
}

.price-lines strong {
  color: var(--white);
  font-weight: 550;
}

.price-lines .price-total {
  margin-top: 8px;
  padding-top: 20px;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.price-total strong {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.summary-policy {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--dark-muted);
  font-size: 12px;
}

.summary-policy p {
  margin: 0;
}

.summary-policy p + p {
  margin-top: 8px;
}

.summary-policy span {
  margin-right: 7px;
  color: #d6a3b1;
}

.how-section {
  padding: 130px 0;
}

.section-heading--compact {
  grid-template-columns: 1fr;
}

.steps {
  display: grid;
  margin: 60px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps li {
  min-height: 230px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.steps li:last-child {
  border-right: 0;
}

.steps span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.steps h3 {
  margin: 58px 0 12px;
  font-size: 28px;
  font-weight: 530;
  letter-spacing: -0.035em;
}

.steps p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
}

.location-section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
  scroll-margin-top: 78px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 120px;
}

.location-grid h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.location-copy {
  padding-top: 38px;
}

.location-name {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 600;
}

.location-copy > p:not(.location-name) {
  color: var(--muted);
  font-size: 17px;
}

.location-copy ul {
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.location-copy li {
  display: flex;
  padding: 7px 0;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.location-copy li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.site-footer {
  display: grid;
  min-height: 150px;
  padding-block: 42px;
  grid-template-columns: auto 1fr auto minmax(260px, auto);
  gap: 24px;
  align-items: center;
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-note {
  justify-self: end;
  text-align: right;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.legal-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  border-bottom-color: currentColor;
}

.legal-page {
  min-height: 100vh;
  padding: 110px 0 90px;
}

.legal-shell {
  width: min(860px, calc(100vw - 40px));
  margin-inline: auto;
}

.legal-header {
  margin-bottom: 54px;
}

.legal-header h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 520;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.legal-header > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.legal-status {
  margin: 0 0 42px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--paper-deep);
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  display: grid;
  gap: 40px;
}

.legal-content section {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.legal-content p,
.legal-content li,
.legal-content dd,
.legal-content dt {
  color: var(--muted);
}

.legal-content p,
.legal-content ul,
.legal-content ol,
.legal-content dl {
  margin-top: 0;
  margin-bottom: 14px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content dt {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content dd {
  margin-left: 0;
}

.legal-back {
  display: inline-flex;
  margin-top: 54px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 40px, 920px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .nav {
    display: none;
  }

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

  .room-card,
  .room-card--wide {
    grid-column: span 6;
  }

  .room-card:last-child {
    grid-column: 4 / span 6;
  }

  .booking-intro,
  .booking-layout,
  .impression-section,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .impression-section {
    gap: 28px;
  }

  .impression-copy {
    padding-top: 0;
    border-top: 0;
  }

  .eyebrow--light {
    margin-bottom: -38px;
  }

  .booking-intro {
    gap: 44px;
  }

  .booking-summary {
    position: static;
  }

  .location-grid {
    gap: 30px;
  }

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

  .footer-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 32px);
  }

  body.select-open {
    overflow: hidden;
  }

  .custom-select-backdrop {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: block;
    background: rgba(12, 10, 9, 0.38);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(3px);
    transition: opacity 200ms ease;
  }

  .custom-select-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .custom-select-popover {
    position: fixed;
    z-index: 100;
    top: auto;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    max-height: min(68svh, 620px);
    border-radius: 22px;
    opacity: 0;
    transform: translateY(calc(100% + 32px));
    transform-origin: bottom center;
    transition:
      opacity 180ms ease,
      transform 380ms cubic-bezier(0.22, 0.86, 0.28, 1);
  }

  .custom-select.is-open .custom-select-popover {
    opacity: 1;
    transform: translateY(0);
  }

  .custom-select-header {
    min-height: 58px;
    padding: 0 16px 0 20px;
  }

  .custom-select-close {
    display: inline-grid;
    place-items: center;
  }

  .custom-select-options {
    max-height: calc(min(68svh, 620px) - 58px);
    padding: 10px;
  }

  .custom-select-option {
    min-height: 50px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.13em;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher button {
    width: 31px;
    height: 30px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding: 80px 0 34px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .hero-copy {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 28px;
    flex-direction: column;
    gap: 16px;
  }

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

  .service-points {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
  }

  .service-points li:last-child {
    grid-column: 1 / -1;
  }

  .rooms-section,
  .how-section {
    padding: 80px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2 {
    font-size: 46px;
  }

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

  .room-card,
  .room-card--wide,
  .room-card:last-child {
    grid-column: 1;
  }

  .room-card .room-image-wrap,
  .room-card--wide .room-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .room-content {
    min-height: 248px;
    padding: 22px;
  }

  .room-title-row,
  .room-footer {
    flex-direction: column;
  }

  .room-footer {
    align-items: stretch;
  }

  .booking-section {
    padding: 78px 0;
  }

  .impression-section {
    padding: 10px 0 80px;
  }

  .impression-heading {
    padding-top: 48px;
  }

  .impression-heading h2 {
    font-size: 48px;
  }

  .impression-copy ul {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    margin-bottom: 40px;
  }

  .eyebrow--light {
    margin-bottom: -24px;
  }

  .booking-intro h2 {
    font-size: 52px;
  }

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

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

  .field--full {
    grid-column: 1;
  }

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

  .option-price {
    grid-column: 2;
  }

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

  .steps li {
    min-height: 190px;
    border-right: 0;
  }

  .steps h3 {
    margin-top: 34px;
  }

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

  .location-grid h2 {
    font-size: 50px;
  }

  .site-footer {
    padding-block: 36px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 132px;
  }

  .header-cta {
    display: none;
  }
}

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

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