:root {
  --ink: #11141b;
  --muted: #59759d;
  --paper: #ffffff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --mist: #dde2eb;
  --teal: #355c8a;
  --teal-dark: #2e4d72;
  --coral: #2e4d72;
  --sun: #bcc5d7;
  --line: rgba(17, 20, 27, 0.14);
  --shadow: 0 24px 80px rgba(17, 20, 27, 0.16);
  --header-bg: rgba(255, 255, 255, 0.78);
  --header-solid: rgba(255, 255, 255, 0.94);
  --footer-bg: #dde2eb;
  --field-bg: #ffffff;
  --intro-text: #283e5a;
  --hero-card: rgba(255, 255, 255, 0.13);
  --hero-card-line: rgba(255, 255, 255, 0.24);
  --strong-bg: #202f44;
  --strong-text: #ffffff;
  --ui-scale: 0.9375;
  --font-body: calc(16px * var(--ui-scale));
  --font-lead: calc(20px * var(--ui-scale));
  --font-copy: calc(18px * var(--ui-scale));
  --font-section-copy: calc(17px * var(--ui-scale));
  --font-card-title: calc(22px * var(--ui-scale));
  --space-page-x-max: calc(72px * var(--ui-scale));
  --space-section-y: calc(96px * var(--ui-scale));
  --space-section-y-compact: calc(72px * var(--ui-scale));
  --space-header-y: calc(18px * var(--ui-scale));
  --space-header-x-max: calc(54px * var(--ui-scale));
  --space-hero-top: calc(120px * var(--ui-scale));
  --space-hero-bottom: calc(34px * var(--ui-scale));
  --space-card: calc(18px * var(--ui-scale));
  --space-panel: calc(28px * var(--ui-scale));
  --space-heading-after: calc(42px * var(--ui-scale));
  --gap-tight: calc(12px * var(--ui-scale));
  --gap-card: calc(14px * var(--ui-scale));
  --gap-grid: calc(16px * var(--ui-scale));
  --gap-layout: calc(28px * var(--ui-scale));
  --gap-section: calc(32px * var(--ui-scale));
  --gap-large: calc(54px * var(--ui-scale));
}

body[data-theme="dark"] {
  --ink: #dde2eb;
  --muted: #9baac3;
  --paper: #11141b;
  --surface: #19222f;
  --surface-soft: rgba(25, 34, 47, 0.82);
  --mist: #202f44;
  --teal: #7b8fb0;
  --teal-dark: #9baac3;
  --coral: #bcc5d7;
  --sun: #59759d;
  --line: rgba(221, 226, 235, 0.15);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --header-bg: rgba(17, 20, 27, 0.78);
  --header-solid: rgba(17, 20, 27, 0.94);
  --footer-bg: #000000;
  --field-bg: #11141b;
  --intro-text: #bcc5d7;
  --hero-card: rgba(17, 20, 27, 0.46);
  --hero-card-line: rgba(255, 255, 255, 0.2);
  --strong-bg: #000000;
  --strong-text: #dde2eb;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(24px * var(--ui-scale));
  padding: var(--space-header-y) clamp(18px, 4vw, var(--space-header-x-max));
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: padding 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: var(--header-solid);
  border-color: var(--line);
}

.brand img {
  width: 180px;
  height: auto;
}

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

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 650;
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--mist);
}

.main-nav .nav-cta {
  color: #fff;
  background: var(--strong-bg);
}

.header-toggles {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.mini-toggle {
  min-width: 54px;
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mist);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: var(--space-hero-top) clamp(18px, 5vw, var(--space-page-x-max)) var(--space-hero-bottom);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 20, 27, 0.78), rgba(32, 47, 68, 0.38) 55%, rgba(53, 92, 138, 0.12));
}

.hero-content {
  width: min(760px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #2e4d72;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bcc5d7;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 8.4vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  opacity: 0.74;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 61px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: var(--font-card-title);
  line-height: 1.16;
}

.hero-copy {
  max-width: 660px;
  font-size: var(--font-lead);
  color: rgba(255, 255, 255, 0.9);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--strong-bg);
}

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

.button.secondary {
  color: var(--strong-bg);
  background: #dde2eb;
  border-color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-tight);
  margin: calc(30px * var(--ui-scale)) 0;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-tight);
  width: min(620px, 100%);
  margin: calc(48px * var(--ui-scale)) 0 0;
}

.hero-facts div,
.quick-book,
.room-card,
.address-block,
.lead-form,
.flyer-panel,
.service-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.hero-facts div {
  padding: var(--space-card);
  color: #fff;
  background: var(--hero-card);
  border-color: var(--hero-card-line);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.quick-book {
  width: min(1120px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: calc(20px * var(--ui-scale));
  align-items: center;
  padding: var(--space-card);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

body[data-theme="dark"] .quick-book {
  color: #1d2a3b;
  background: rgba(242, 245, 249, 0.94);
  border-color: rgba(17, 20, 27, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

body[data-theme="dark"] .quick-book [data-open-state] {
  color: #22334b;
}

body[data-theme="dark"] .quick-book p,
body[data-theme="dark"] .quick-book label {
  color: #415674;
}

.quick-book p {
  margin: 2px 0 0;
  color: var(--muted);
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 999px;
  background: #24b06d;
  box-shadow: 0 0 0 6px rgba(36, 176, 109, 0.12);
}

.quick-form {
  display: grid;
  grid-template-columns: 110px 170px auto;
  gap: 10px;
  align-items: end;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--field-bg);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 45%, transparent);
  outline-offset: 3px;
}

button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
}

textarea {
  resize: vertical;
}

.date-picker-wrap {
  position: relative;
}

.date-picker-wrap input {
  cursor: pointer;
}

.date-picker {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: min(320px, calc(100vw - 36px));
  display: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.date-picker.is-open {
  display: grid;
  gap: 12px;
}

.date-picker-head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 8px;
  align-items: center;
}

.date-picker-title {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.date-picker-nav,
.date-day {
  min-width: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--mist);
  cursor: pointer;
  font-weight: 850;
}

.date-picker-nav {
  width: 36px;
  height: 36px;
}

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.date-weekdays span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.date-day {
  aspect-ratio: 1;
  padding: 0;
  background: transparent;
}

.date-day:hover,
.date-day:focus-visible {
  color: #fff;
  background: var(--teal);
}

.date-day.is-selected {
  color: #fff;
  background: var(--teal);
}

.date-day.is-today {
  outline: 2px solid var(--sun);
  outline-offset: -2px;
}

.date-day:disabled {
  color: var(--muted);
  background: var(--mist);
  cursor: not-allowed;
  opacity: 0.45;
  text-decoration: line-through;
}

.date-empty {
  min-height: 36px;
}

.section {
  padding: var(--space-section-y) clamp(18px, 5vw, var(--space-page-x-max));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: var(--gap-section);
  align-items: end;
  margin-bottom: var(--space-heading-after);
}

.section-copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: var(--font-section-copy);
}

.rooms .section-heading h2 {
  justify-self: end;
  text-align: right;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--gap-large);
}

.intro .section-heading {
  display: block;
  margin: 0;
}

.intro-copy {
  color: var(--intro-text);
  font-size: var(--font-copy);
}

.chip {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-weight: 800;
}

.chip.active {
  color: var(--strong-text);
  background: var(--strong-bg);
}

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

.room-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  cursor: pointer;
  box-shadow: 0 10px 36px rgba(17, 20, 27, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.room-card:hover,
.room-card:focus-within {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--teal) 28%, var(--line));
  box-shadow: 0 16px 42px rgba(17, 20, 27, 0.12);
}

.room-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 45%, transparent);
  outline-offset: 3px;
}

.room-card-media {
  position: relative;
  overflow: hidden;
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.room-card:hover img,
.room-card:focus-within img {
  transform: scale(1.018);
  filter: saturate(1.03);
}

.room-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--gap-card);
  padding: var(--space-card);
}

.room-card-body > div:first-child {
  display: grid;
  gap: var(--gap-tight);
}

.room-card-body h3 {
  margin: 0;
  font-size: var(--font-card-title);
  line-height: 1.16;
  font-weight: 700;
}

.room-card-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-wrap: pretty;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 29px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.room-meta span {
  padding: 5px 8px;
  background: var(--mist);
  border-radius: 999px;
}

.room-highlights {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 7px;
  min-height: 97px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-highlights li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2e4d72;
  background: #f6f8fb;
  font-size: 12px;
  font-weight: 800;
}

body[data-theme="dark"] .room-highlights li {
  color: #edf2f8;
  background: #22334b;
  border-color: rgba(221, 226, 235, 0.22);
}

.room-card-cta {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  pointer-events: none;
}

.room-specs {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--mist) 38%, transparent);
}

.room-specs div {
  display: grid;
  grid-template-columns: minmax(88px, 0.8fr) minmax(0, 1.4fr);
  gap: 10px;
  align-items: start;
}

.room-specs span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.room-specs strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.service {
  background: #f6f8fb;
}

.service .section-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.service .section-heading h2 {
  grid-column: 2;
  justify-self: start;
}

body[data-theme="dark"] .service {
  background: #101722;
  color: #e8edf5;
}

body[data-theme="dark"] .service .section-heading {
  align-items: center;
}

body[data-theme="dark"] .service .eyebrow {
  color: #88a3c6;
}

body[data-theme="dark"] .service h2 {
  color: #d7deea;
  text-wrap: balance;
}

.service-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: calc(26px * var(--ui-scale));
  align-items: stretch;
}

.location {
  padding-block: var(--space-section-y-compact);
}

.location .section-heading {
  max-width: 1280px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.location .section-heading h2 {
  font-size: clamp(32px, 3.8vw, 50px);
}

.location-layout {
  width: min(1280px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.75fr);
  align-items: center;
}

.service-layout > img,
.location-layout > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 8px;
}

.location-layout > img {
  width: min(100%, 620px);
  height: auto;
  min-height: 0;
  max-height: none;
  justify-self: end;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(17, 20, 27, 0.1);
}

.service-list {
  display: grid;
  gap: var(--gap-tight);
}

.service-list article {
  padding: var(--space-panel);
  background: var(--surface);
}

body[data-theme="dark"] .service-list article {
  background: #182333;
  border-color: rgba(221, 226, 235, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.service-list span {
  color: var(--coral);
  font-weight: 900;
}

body[data-theme="dark"] .service-list span {
  color: #9fb1cc;
}

body[data-theme="dark"] .service-list h3 {
  color: #f0f4f9;
}

.service-list p {
  color: var(--muted);
  margin-bottom: 0;
}

body[data-theme="dark"] .service-list p {
  color: #b2c0d4;
}

body[data-theme="dark"] .service-layout > img {
  border: 1px solid rgba(221, 226, 235, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  filter: saturate(0.9) brightness(0.9);
}

.flyer {
  background: var(--strong-bg);
  color: var(--strong-text);
}

.flyer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: calc(26px * var(--ui-scale));
  align-items: center;
  padding: clamp(var(--space-panel), 5vw, calc(54px * var(--ui-scale)));
  background: linear-gradient(135deg, #355c8a, #202f44);
  border-color: rgba(255, 255, 255, 0.18);
}

.flyer-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.flyer-actions {
  display: flex;
  gap: var(--gap-tight);
  flex-wrap: wrap;
}

.address-block {
  padding: clamp(22px, 3vw, calc(34px * var(--ui-scale)));
  background: var(--surface);
}

.contact-column {
  display: grid;
  gap: var(--gap-card);
  align-self: center;
}

.location .address-block {
  align-self: center;
  box-shadow: 0 12px 34px rgba(17, 20, 27, 0.07);
}

.address-block a {
  color: var(--teal);
  font-weight: 850;
}

.testimonials {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.testimonials figure {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.testimonials blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.testimonials blockquote::before {
  content: "“";
  color: var(--coral);
  font-weight: 900;
}

.testimonials blockquote::after {
  content: "”";
  color: var(--coral);
  font-weight: 900;
}

.testimonials figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.inquiry {
  background: var(--surface);
}

.lead-form {
  width: 100%;
  padding: clamp(20px, 4vw, 36px);
  background: var(--paper);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 980px) minmax(260px, 340px);
  gap: var(--gap-layout);
  align-items: start;
}

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

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.consent-group {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--mist) 30%, transparent);
}

.checkbox-field {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal);
}

.checkbox-field a,
.consent-hint a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.consent-hint,
.operator-note,
.field-error {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.consent-hint,
.operator-note {
  color: var(--muted);
}

.operator-note {
  margin-top: 14px;
}

.field-error {
  color: var(--coral);
  font-weight: 800;
}

.booking-contacts {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  box-shadow: 0 12px 40px rgba(17, 20, 27, 0.08);
}

.booking-contacts-intro {
  display: grid;
  gap: 8px;
}

.booking-contacts-intro .eyebrow {
  margin: 0;
}

.booking-contacts h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
}

.booking-contacts-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-person-list {
  display: grid;
  gap: 12px;
}

.contact-person {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-person img {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-person h4 {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.15;
}

.contact-person p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.required-marker {
  margin-right: 4px;
  color: var(--coral);
  font-weight: 950;
}

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

.lead-footer p {
  margin: 0;
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: var(--coral);
}

.room-dialog {
  width: min(860px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.room-dialog::backdrop {
  background: rgba(17, 20, 27, 0.62);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 25px;
}

.dialog-room img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.dialog-body {
  padding: 26px;
}

.dialog-specs {
  margin: 18px 0;
}

.room-price-panel {
  margin: 18px 0;
  padding: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.room-price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.room-price-table th,
.room-price-table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  color: var(--ink);
}

.room-price-table th {
  font-size: 14px;
  font-weight: 900;
}

.room-price-table td {
  font-size: 15px;
  font-weight: 700;
}

.room-price-table th:not(:first-child),
.room-price-table td:not(:first-child) {
  border-left: 2px solid color-mix(in srgb, var(--ink) 48%, transparent);
}

.room-price-panel p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

body[data-theme="dark"] .room-specs,
body[data-theme="dark"] .room-price-panel {
  background: #1f2d40;
  border-color: rgba(221, 226, 235, 0.2);
}

body[data-theme="dark"] .room-specs span {
  color: #c0cbe0;
}

body[data-theme="dark"] .room-specs strong,
body[data-theme="dark"] .room-price-table th,
body[data-theme="dark"] .room-price-table td,
body[data-theme="dark"] .room-price-panel p {
  color: #f1f5fa;
}

body[data-theme="dark"] .room-price-table th:not(:first-child),
body[data-theme="dark"] .room-price-table td:not(:first-child) {
  border-left-color: rgba(241, 245, 250, 0.48);
}

.dialog-body ul {
  padding-left: 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: calc(30px * var(--ui-scale));
  padding: calc(42px * var(--ui-scale)) clamp(18px, 5vw, var(--space-page-x-max));
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
}

.site-footer img {
  width: 150px;
  margin-bottom: 10px;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  font-weight: 750;
}

@media (max-width: 1024px) {
  :root {
    --ui-scale: 0.96;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .quick-book,
  .quick-form,
  .inquiry-layout,
  .section-heading,
  .service .section-heading,
  .intro,
  .service-layout,
  .location-layout,
  .flyer-panel {
    grid-template-columns: 1fr;
  }

  .booking-contacts {
    position: static;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .service .section-heading h2 {
    grid-column: auto;
  }

  .rooms .section-heading h2 {
    justify-self: start;
    text-align: left;
  }

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

@media (max-width: 768px) {
  :root {
    --ui-scale: 0.98;
  }
}

@media (max-width: 640px) {
  :root {
    --ui-scale: 1;
  }

  .brand img {
    width: 145px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 98px;
  }

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

  .hero-facts,
  .room-grid,
  .form-grid,
  .booking-contacts {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 70px;
  }

  .service-layout > img,
  .location-layout > img {
    min-height: 300px;
  }

  .lead-footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
