:root {
  --fs-bg: #070a0a;
  --fs-bg-soft: #0b1010;
  --fs-surface: #101514;
  --fs-surface-elevated: #151a18;
  --fs-surface-glass: rgba(16, 21, 20, 0.78);
  --fs-line: rgba(214, 183, 122, 0.2);
  --fs-line-strong: rgba(214, 183, 122, 0.42);
  --fs-text: #f3e9d7;
  --fs-text-muted: #b8aa96;
  --fs-text-subtle: #7f7568;
  --fs-bronze: #b99056;
  --fs-bronze-light: #d6b77a;
  --fs-bronze-dark: #7b5830;
  --fs-status-free: #6f8e65;
  --fs-status-optional: #c2a16a;
  --fs-status-halfday: #668196;
  --fs-status-hourly: #b7773e;
  --fs-status-hard: #a45146;
  --fs-status-unavailable: #343939;
  --fs-font-serif: var(--font-serif, "Cormorant Garamond"), Georgia, "Times New Roman", serif;
  --fs-font-sans: var(--font-sans, Inter), "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --fs-radius-sm: 8px;
  --fs-radius-md: 14px;
  --fs-radius-lg: 22px;
  --fs-container: 1180px;
  --fs-gutter: clamp(20px, 4vw, 64px);
  --fs-metal-gold: linear-gradient(180deg, #f4ddb0 0%, #d5ad65 42%, #9a6a35 72%, #e3bf79 100%);
  --fs-metal-soft: linear-gradient(180deg, rgba(244, 221, 176, 0.9), rgba(190, 142, 70, 0.82) 50%, rgba(99, 64, 31, 0.78));
  --fs-metal-line: linear-gradient(90deg, rgba(96, 62, 29, 0.08), rgba(224, 188, 116, 0.48), rgba(133, 91, 45, 0.2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--fs-text);
  background:
    linear-gradient(180deg, rgba(7, 10, 10, 0.72), var(--fs-bg) 640px),
    var(--fs-bg);
  font-family: var(--fs-font-sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(214, 183, 122, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 183, 122, 0.02) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
  z-index: -2;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--fs-bronze-light);
  outline-offset: 3px;
}

.site-main {
  overflow: hidden;
}

.container {
  width: min(var(--fs-container), calc(100% - var(--fs-gutter) * 2));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section.compact {
  padding: clamp(48px, 7vw, 92px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--fs-bronze-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.serif {
  font-family: var(--fs-font-serif);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--fs-font-serif);
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.section-heading p,
.lead {
  color: var(--fs-text-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 19px;
  border: 1px solid var(--fs-line-strong);
  color: var(--fs-text);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--fs-bronze-light);
  transform: translateY(-1px);
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #0a0d0d;
  background: linear-gradient(135deg, var(--fs-bronze-light), var(--fs-bronze));
}

.button.danger {
  border-color: rgba(188, 83, 70, 0.68);
  color: #ffd9d3;
  background: rgba(188, 83, 70, 0.14);
}

.button.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header .container {
  width: min(var(--fs-container), calc(100% - var(--fs-gutter) * 2));
}

.site-header.scrolled,
.site-header.open {
  border-color: var(--fs-line);
  background: var(--fs-surface-glass);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  gap: 5px;
}

.brand strong {
  color: transparent;
  background: linear-gradient(180deg, #fff8df 0%, #e2c37d 36%, #926735 72%, #f4d894 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(214, 183, 122, 0.09);
}

.brand span {
  color: #d5ad62;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 0 13px rgba(185, 144, 86, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--fs-font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav a {
  color: transparent;
  background: var(--fs-metal-gold);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 14px rgba(214, 183, 122, 0.08);
}

.nav a:hover {
  filter: brightness(1.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .button {
  min-height: 30px;
  border-radius: 2px;
  padding: 0 16px;
  color: var(--fs-bronze-light);
  background: transparent;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions .button.primary {
  border-color: rgba(218, 177, 101, 0.78);
  color: #e6c57e;
  background:
    linear-gradient(180deg, rgba(255, 236, 184, 0.07), rgba(87, 57, 25, 0.04)),
    transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 204, 0.22),
    inset 0 -1px 0 rgba(93, 57, 25, 0.6),
    0 0 0 1px rgba(58, 35, 17, 0.52);
}

.header-actions .header-login-button {
  width: 34px;
  min-width: 34px;
  padding: 0;
  border-radius: 50%;
}

.header-login-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-login-button:hover {
  color: var(--fs-bronze-light);
  background: rgba(214, 183, 122, 0.08);
}

.user-menu {
  position: relative;
  display: inline-flex;
}

.user-menu-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 210px;
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  padding: 8px;
  background: rgba(9, 13, 13, 0.97);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.user-menu-popover.open {
  display: grid;
  gap: 4px;
}

.user-menu-popover span,
.user-menu-popover a {
  display: block;
  margin: 0;
  border-radius: 4px;
  padding: 9px 10px;
  color: var(--fs-text-muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-text-fill-color: currentColor;
}

.user-menu-popover span {
  color: var(--fs-bronze-light);
  border-bottom: 1px solid var(--fs-line);
  border-radius: 0;
}

.user-menu-popover a:hover {
  color: var(--fs-text);
  background: rgba(214, 183, 122, 0.08);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fs-line);
  border-radius: 999px;
  color: var(--fs-text);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 118px 0 52px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.94) 0%, rgba(7, 10, 10, 0.72) 44%, rgba(7, 10, 10, 0.3) 100%),
    linear-gradient(180deg, transparent 70%, var(--fs-bg) 100%);
  z-index: -1;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
}

.hero-copy h1 {
  max-width: 790px;
  margin: 0 0 24px;
  font-size: clamp(4rem, 10vw, 9.2rem);
}

.hero-copy p {
  max-width: 620px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-lineart {
  width: min(560px, 92%);
  margin-top: 42px;
  opacity: 0.7;
  filter: drop-shadow(0 20px 70px rgba(0, 0, 0, 0.55));
}

.hero-aside {
  display: grid;
  gap: 14px;
  align-self: stretch;
  align-content: end;
}

.photo-tile {
  overflow: hidden;
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  background: var(--fs-surface);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.photo-tile.tall img {
  min-height: 380px;
}

.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fs-line);
  border-bottom: 1px solid var(--fs-line);
}

.usp-strip div {
  min-height: 104px;
  padding: 24px;
  border-right: 1px solid var(--fs-line);
  color: var(--fs-text-muted);
  line-height: 1.5;
}

.usp-strip div:last-child {
  border-right: 0;
}

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

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

.room-card,
.panel,
.feature-card,
.admin-card,
.quote-panel {
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  background: linear-gradient(180deg, rgba(21, 26, 24, 0.94), rgba(11, 16, 16, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.room-card {
  overflow: hidden;
}

.room-card .image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.room-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

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

.room-card .content,
.feature-card,
.panel,
.admin-card,
.quote-panel {
  padding: clamp(20px, 3vw, 32px);
}

.room-card h3,
.feature-card h3,
.panel h3,
.admin-card h3 {
  margin: 0 0 12px;
  font-family: var(--fs-font-serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0;
}

.muted {
  color: var(--fs-text-muted);
}

.subtle {
  color: var(--fs-text-subtle);
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  border: 1px solid var(--fs-line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--fs-text-muted);
  font-size: 0.88rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.88fr);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.75fr;
  gap: 14px;
}

.gallery-strip .photo-tile:nth-child(odd) {
  margin-top: 36px;
}

.history-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--fs-line);
  border-bottom: 1px solid var(--fs-line);
  background: rgba(11, 16, 16, 0.76);
}

.history-band .watermark {
  position: absolute;
  right: -4vw;
  bottom: -42px;
  width: min(620px, 62vw);
  opacity: 0.12;
}

.footer {
  border-top: 1px solid var(--fs-line);
  padding: 42px 0;
  color: var(--fs-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.mock-footer {
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(185, 144, 86, 0.24);
  color: var(--fs-text-muted);
  background:
    radial-gradient(circle at 6% 0%, rgba(185, 144, 86, 0.09), transparent 24rem),
    linear-gradient(180deg, rgba(11, 16, 16, 0.92), rgba(7, 10, 10, 0.98));
}

.mock-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.1fr 0.42fr;
  gap: 34px;
  width: min(990px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0 24px;
}

.mock-footer-brand {
  display: grid;
  align-content: start;
  gap: 5px;
}

.mock-footer-brand strong {
  color: transparent;
  background: linear-gradient(180deg, #fff8df 0%, #e2c37d 36%, #926735 72%, #f4d894 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  line-height: 1;
}

.mock-footer-brand span,
.mock-footer h2 {
  margin: 0;
  color: #d5ad62;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.mock-footer p {
  margin: 11px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.mock-footer a {
  display: inline-flex;
  margin-top: 12px;
  color: transparent;
  background: var(--fs-metal-gold);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mock-socials {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  border-left: 1px solid rgba(185, 144, 86, 0.22);
  padding-left: 24px;
}

.mock-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(213, 171, 94, 0.6);
  border-radius: 999px;
  color: #e6c57e;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 239, 190, 0.14), transparent 44%),
    rgba(7, 10, 10, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 196, 0.16),
    0 0 16px rgba(185, 144, 86, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: #e6c57e;
}

.mock-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mock-footer-bottom {
  display: flex;
  justify-content: center;
  gap: 64px;
  width: min(990px, calc(100% - 64px));
  margin: 0 auto;
  border-top: 1px solid rgba(185, 144, 86, 0.18);
  padding: 10px 0 18px;
  color: var(--fs-text-subtle);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mock-footer-bottom a {
  margin: 0;
  color: var(--fs-text-subtle);
  background: none;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: inherit;
  -webkit-text-fill-color: currentColor;
}

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

.field {
  display: grid;
  align-content: start;
  gap: 7px;
}

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

.field label {
  color: var(--fs-text);
  font-size: 0.9rem;
}

.field small {
  color: var(--fs-text-subtle);
  line-height: 1.4;
}

.input,
.field input,
.field select,
.field textarea {
  align-self: start;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  padding: 10px 12px;
  color: var(--fs-text);
  background: rgba(255, 255, 255, 0.035);
  color-scheme: dark;
}

.input,
.field input:not([type="checkbox"]),
.field select {
  height: 46px;
}

.field select {
  background:
    linear-gradient(180deg, rgba(255, 236, 190, 0.035), rgba(255, 255, 255, 0.018)),
    var(--fs-surface);
}

.field select option,
.field select optgroup {
  color: var(--fs-text);
  background: var(--fs-bg-soft);
}

.field select option:checked {
  color: #0a0d0d;
  background: var(--fs-bronze-light);
}

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

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fs-text-muted);
  line-height: 1.35;
}

.checkbox-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  aspect-ratio: 1 / 1;
  margin: 0;
  border: 1px solid var(--fs-line-strong);
  border-radius: 3px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 236, 190, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 196, 0.08),
    0 0 0 1px rgba(20, 12, 5, 0.35);
}

.checkbox-row input[type="checkbox"]::before,
.checkbox-row input[type="checkbox"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--fs-bronze-light);
  opacity: 0;
  transform-origin: center;
  box-shadow: 0 0 8px rgba(214, 183, 122, 0.22);
}

.checkbox-row input[type="checkbox"]::before {
  transform: translate(-50%, -50%) rotate(45deg) scaleX(0.65);
}

.checkbox-row input[type="checkbox"]::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(0.65);
}

.checkbox-row input[type="checkbox"]:checked {
  border-color: var(--fs-bronze-light);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 239, 190, 0.13), transparent 48%),
    rgba(214, 183, 122, 0.12);
}

.checkbox-row input[type="checkbox"]:checked::before,
.checkbox-row input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
}

.checkbox-row input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
}

.day-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.day-slot-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.day-slot-card legend {
  padding: 0 6px;
  color: var(--fs-bronze-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-create-box {
  margin-top: 22px;
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(214, 183, 122, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
}

.account-create-box h3 {
  margin: 0 0 8px;
  font-family: var(--fs-font-serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.account-create-box .form-grid {
  margin-top: 16px;
}

.wizard-step[hidden],
.room-addon[hidden],
[data-intermediate-cleaning-row][hidden] {
  display: none !important;
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 20px;
  align-items: start;
}

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

.room-choice {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.room-choice.selected {
  border-color: var(--fs-line-strong);
  background:
    linear-gradient(180deg, rgba(214, 183, 122, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 241, 196, 0.1);
}

.room-choice-button {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  width: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
}

.room-choice-check {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  aspect-ratio: 1 / 1;
  margin-top: 5px;
  border: 1px solid var(--fs-line-strong);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 236, 190, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 196, 0.08),
    0 0 0 1px rgba(20, 12, 5, 0.35);
}

.room-choice-check::before,
.room-choice-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--fs-bronze-light);
  opacity: 0;
  transform-origin: center;
  box-shadow: 0 0 8px rgba(214, 183, 122, 0.22);
}

.room-choice-check::before {
  transform: translate(-50%, -50%) rotate(45deg) scaleX(0.65);
}

.room-choice-check::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(0.65);
}

.room-choice.selected .room-choice-check {
  border-color: var(--fs-bronze-light);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 239, 190, 0.13), transparent 48%),
    rgba(214, 183, 122, 0.12);
}

.room-choice.selected .room-choice-check::before,
.room-choice.selected .room-choice-check::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
}

.room-choice.selected .room-choice-check::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
}

.room-choice-title {
  display: block;
  margin: 0 0 8px;
  font-family: var(--fs-font-serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.room-choice p {
  margin: 0;
}

.room-addon {
  margin-left: 34px;
  padding-top: 10px;
  border-top: 1px solid var(--fs-line);
}

.room-addon-group {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(185, 144, 86, 0.16);
  background: rgba(255, 255, 255, 0.018);
}

.room-addon-group .room-addon {
  margin-left: 27px;
}

.room-addon input:disabled + span,
.room-addon:has(input:disabled) {
  opacity: 0.55;
}

.step-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  gap: 0;
  margin: 0 0 24px;
  overflow-x: auto;
  padding: 1px 0 8px;
  scrollbar-width: thin;
}

.step-tabs button {
  position: relative;
  min-height: 48px;
  justify-content: start;
  border: 1px solid rgba(185, 144, 86, 0.24);
  border-left: 0;
  border-radius: 0;
  padding: 0 19px 0 28px;
  color: var(--fs-text-muted);
  background:
    linear-gradient(180deg, rgba(255, 236, 190, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.018);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.step-tabs button:first-child {
  border-left: 1px solid rgba(185, 144, 86, 0.24);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  padding-left: 18px;
}

.step-tabs button + button {
  margin-left: -14px;
}

.step-number {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(213, 171, 94, 0.48);
  border-radius: 999px;
  color: var(--fs-bronze-light);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.step-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step-tabs button.active {
  z-index: 1;
  border-color: rgba(237, 202, 128, 0.82);
  color: #f4dfad;
  background:
    radial-gradient(circle at 30% 10%, rgba(255, 239, 190, 0.17), transparent 42%),
    linear-gradient(180deg, rgba(214, 183, 122, 0.18), rgba(122, 83, 36, 0.08)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 196, 0.18),
    0 0 18px rgba(185, 144, 86, 0.08);
}

.step-tabs button.active .step-number {
  color: #08100d;
  background: var(--fs-metal-gold);
  border-color: rgba(255, 238, 186, 0.75);
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.quote-table th,
.quote-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--fs-line);
  text-align: left;
  vertical-align: top;
}

.quote-table td:last-child,
.quote-table th:last-child {
  text-align: right;
}

.quote-total {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.quote-total div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.quote-total .gross {
  padding-top: 12px;
  border-top: 1px solid var(--fs-line-strong);
  color: var(--fs-bronze-light);
  font-size: 1.24rem;
}

.notice-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  padding: 10px 12px;
  color: var(--fs-text-muted);
  background: rgba(255, 255, 255, 0.025);
}

.calendar-grid {
  overflow-x: auto;
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
}

.calendar-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
  border-bottom: 1px solid var(--fs-line);
  border-right: 1px solid var(--fs-line);
  padding: 13px;
  text-align: left;
}

.calendar-table th:last-child,
.calendar-table td:last-child {
  border-right: 0;
}

.calendar-table tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-flex;
  min-width: 104px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 10px;
  color: #07100d;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-free { background: var(--fs-status-free); }
.status-optional { background: var(--fs-status-optional); }
.status-hourly { background: var(--fs-status-hourly); }
.status-halfday { background: var(--fs-status-halfday); }
.status-hard { background: var(--fs-status-hard); color: var(--fs-text); }
.status-unavailable { background: var(--fs-status-unavailable); color: var(--fs-text-muted); }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--fs-line);
  text-align: left;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 20px;
  align-items: start;
}

.login-panel {
  position: sticky;
  top: 96px;
}

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

.demo-user-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.demo-user-card dl {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 8px 12px;
  margin: 16px 0;
  color: var(--fs-text-muted);
  font-size: 0.9rem;
}

.demo-user-card dt {
  color: var(--fs-bronze-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-user-card dd {
  margin: 0;
}

.demo-user-card code {
  color: var(--fs-text);
  font-family: var(--fs-font-mono, ui-monospace, SFMono-Regular, Menlo, Consolas, monospace);
}

.admin-notice {
  margin-bottom: 18px;
  color: var(--fs-bronze-light);
}

.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
  padding: 13px 14px;
  border: 1px solid var(--fs-line);
  background:
    linear-gradient(180deg, rgba(255, 236, 190, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 15, 15, 0.72);
}

.calendar-toolbar h3,
.calendar-toolbar p {
  margin: 0;
}

.calendar-toolbar h3 {
  color: var(--fs-text);
  font-family: var(--fs-font-serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
}

.calendar-toolbar-actions {
  display: flex;
  gap: 8px;
}

.internal-calendar {
  margin-bottom: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(10, 15, 15, 0.86);
}

.internal-calendar .calendar-table th {
  color: var(--fs-bronze-light);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: top;
}

.internal-calendar .calendar-table tbody th {
  min-width: 128px;
  font-size: 0.9rem;
}

.internal-calendar .calendar-table tbody th span,
.internal-calendar .calendar-table tbody th small {
  display: block;
}

.internal-calendar .calendar-table tbody th small {
  margin-top: 4px;
  color: var(--fs-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.internal-calendar .calendar-table td {
  min-width: 250px;
  vertical-align: top;
}

.internal-calendar .calendar-table tr.calendar-weekend th,
.internal-calendar .calendar-table tr.calendar-weekend td {
  background:
    linear-gradient(180deg, rgba(199, 166, 103, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
}

.internal-calendar .calendar-table tr.calendar-weekend th {
  border-left: 3px solid rgba(199, 166, 103, 0.62);
}

.internal-calendar .calendar-table tr.calendar-weekend th small {
  color: var(--fs-bronze-light);
}

.internal-calendar .calendar-table tr.calendar-today th span {
  color: #f4dfad;
}

.calendar-bookings {
  display: grid;
  gap: 8px;
}

.calendar-booking-row {
  display: grid;
  grid-template-columns: minmax(92px, 0.62fr) minmax(150px, 1fr) minmax(92px, 0.62fr);
  gap: 7px;
  align-items: stretch;
}

.calendar-booking,
.calendar-free-action {
  display: grid;
  gap: 7px;
  border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm);
  padding: 11px;
  color: var(--fs-text);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
}

.calendar-free-action {
  border-style: dashed;
  border-color: rgba(111, 142, 101, 0.55);
  background:
    linear-gradient(180deg, rgba(111, 142, 101, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.calendar-free-action strong {
  color: var(--fs-text);
  font-size: 0.96rem;
  line-height: 1.25;
}

.calendar-free-action .status-pill {
  min-width: 0;
  width: fit-content;
  gap: 6px;
  padding: 6px 9px;
  font-size: 0.72rem;
}

a.calendar-booking:hover,
.calendar-free-action:hover {
  border-color: var(--fs-bronze);
  background: rgba(199, 166, 103, 0.09);
}

.calendar-bookings > .calendar-free-action {
  max-width: 100%;
}

.calendar-booking strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.booking-time {
  color: var(--fs-bronze-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-editor {
  scroll-margin-top: 110px;
}

.booking-dialog {
  width: min(1040px, calc(100vw - 32px));
  max-height: min(86vh, 980px);
  border: 1px solid var(--fs-line-strong);
  border-radius: var(--fs-radius-md);
  padding: 0;
  color: var(--fs-text);
  background: transparent;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.62);
}

.booking-dialog::backdrop {
  background: rgba(3, 5, 5, 0.72);
  backdrop-filter: blur(10px);
}

.booking-dialog .booking-editor {
  max-height: min(86vh, 980px);
  overflow: auto;
  border: 0;
}

.booking-editor-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 20px;
}

.booking-editor-head h3 {
  margin: 0;
}

.booking-dialog-actions {
  display: flex;
  gap: 8px;
}

.booking-day-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.booking-day-times label {
  display: grid;
  gap: 5px;
  color: var(--fs-text-muted);
  font-size: 0.78rem;
}

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

.room-checkboxes > label {
  margin-bottom: 10px;
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 78px;
    left: var(--fs-gutter);
    right: var(--fs-gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius-sm);
    padding: 12px;
    background: rgba(11, 16, 16, 0.98);
  }

  .site-header.open .nav {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions .header-login-button {
    display: inline-flex;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .wizard-layout,
  .room-grid,
  .feature-grid,
  .feature-grid.three,
  .admin-grid,
  .admin-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    grid-template-columns: 1fr 1fr;
  }

  .photo-tile.tall img {
    min-height: 260px;
  }

  .usp-strip {
    grid-template-columns: 1fr 1fr;
  }

  .usp-strip div:nth-child(2) {
    border-right: 0;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 36px, var(--fs-container));
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  .hero-aside,
  .usp-strip,
  .gallery-strip,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .usp-strip div,
  .usp-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--fs-line);
  }

  .usp-strip div:last-child {
    border-bottom: 0;
  }
}

/* Homepage composition matched to concept/design/reference-homepage-mockup.png */
.mock-home {
  --mock-border: rgba(185, 144, 86, 0.34);
  --mock-border-soft: rgba(185, 144, 86, 0.18);
  --mock-panel: rgba(10, 16, 16, 0.82);
  width: min(100% - 64px, 990px);
  margin: 0 auto;
  padding-top: 72px;
  color: var(--fs-text);
  font-family: var(--fs-font-sans);
}

.mock-home .mock-kicker {
  margin: 0 0 16px;
  color: transparent;
  background: var(--fs-metal-gold);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(185, 144, 86, 0.14);
}

.mock-home h1,
.mock-home h2 {
  margin: 0;
  font-family: var(--font-serif, "Cormorant Garamond"), Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.97;
}

.mock-home h1 {
  max-width: 520px;
  font-size: clamp(2.85rem, 3.9vw, 3.72rem);
}

.mock-home h2 {
  font-size: clamp(2.35rem, 3.25vw, 3.3rem);
}

.mock-home p {
  color: var(--fs-text-muted);
  line-height: 1.5;
}

.mock-hero {
  position: relative;
  display: grid;
  min-height: 328px;
  grid-template-columns: 470px 180px 1fr;
  gap: 18px;
  align-items: start;
  padding: 38px 0 0;
  border-top: 1px solid var(--mock-border-soft);
}

.mock-hero-copy {
  z-index: 2;
  width: 560px;
}

.mock-hero-copy h1 {
  width: 560px;
  max-width: none;
}

.mock-hero-copy > p:not(.mock-kicker) {
  max-width: 330px;
  margin: 18px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.mock-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.mock-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(213, 171, 94, 0.62);
  border-radius: 2px;
  padding: 0 20px;
  color: #e9ca83;
  background:
    linear-gradient(180deg, rgba(255, 238, 195, 0.06), rgba(9, 12, 12, 0.22)),
    rgba(7, 10, 10, 0.44);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-family: var(--fs-font-sans);
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 205, 0.17),
    inset 0 -1px 0 rgba(79, 49, 22, 0.68),
    0 0 20px rgba(185, 144, 86, 0.03);
}

.mock-button.primary {
  border-color: rgba(255, 238, 190, 0.78);
  color: #0c100f;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 18%, transparent 34%),
    linear-gradient(180deg, #f2d48c 0%, #c5964d 46%, #8d5d2c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 222, 0.76),
    inset 0 -1px 0 rgba(78, 45, 20, 0.62),
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(166, 117, 53, 0.09);
}

.mock-button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 218, 0.22), transparent);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.mock-button:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.mock-usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.mock-usp div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--fs-text-muted);
  font-size: 0.75rem;
  line-height: 1.25;
  font-family: var(--fs-font-sans);
}

.mock-usp img,
.mock-field img,
.mock-room-icon img {
  width: 24px;
  height: 24px;
  opacity: 0.72;
  filter: sepia(1) saturate(0.85) hue-rotate(350deg) brightness(1.36) drop-shadow(0 0 4px rgba(214, 183, 122, 0.12));
}

.mock-villa-line {
  align-self: center;
  opacity: 0.42;
}

.mock-villa-line img {
  width: 232px;
  max-width: none;
}

.mock-hero-collage {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  align-self: start;
  overflow: hidden;
  border-left: 1px solid var(--mock-border-soft);
}

.mock-hero-collage img {
  width: 100%;
  height: 136px;
  object-fit: cover;
}

.mock-hero-collage .wide {
  grid-column: 1 / -1;
  height: 179px;
  object-position: 50% 34%;
}

.mock-section,
.mock-band {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 28px;
  padding: 22px 0 17px;
  border-top: 1px solid rgba(185, 144, 86, 0.16);
}

.mock-section-copy {
  padding: 4px 0 0 4px;
}

.mock-section-copy p:not(.mock-kicker) {
  margin: 24px 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.mock-section-copy ul {
  display: grid;
  gap: 9px;
  margin: 15px 0 0;
  padding: 0;
  color: var(--fs-bronze-light);
  font-size: 0.78rem;
  list-style: none;
}

.mock-arrow {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  color: transparent;
  background: var(--fs-metal-gold);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(185, 144, 86, 0.16);
}

.mock-room-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.mock-room-card,
.mock-selection,
.mock-form-preview,
.mock-calendar,
.mock-admin-grid article,
.mock-history-card {
  position: relative;
  border: 1px solid rgba(176, 129, 62, 0.42);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 232, 178, 0.035), transparent 24%),
    linear-gradient(180deg, rgba(16, 22, 21, 0.82), rgba(7, 11, 11, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 235, 184, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.012),
    0 0 0 1px rgba(38, 23, 10, 0.48);
}

.mock-room-card::before,
.mock-selection::before,
.mock-form-preview::before,
.mock-calendar::before,
.mock-admin-grid article::before,
.mock-history-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--fs-metal-line);
  opacity: 0.55;
}

.mock-room-card {
  overflow: hidden;
}

.mock-room-card > img {
  width: 100%;
  height: 136px;
  object-fit: cover;
}

.mock-room-body {
  position: relative;
  min-height: 148px;
  padding: 20px 22px 15px;
}

.mock-room-icon {
  position: absolute;
  top: -24px;
  left: 22px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(239, 203, 128, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 239, 190, 0.16), transparent 44%),
    #0a1111;
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 196, 0.18),
    0 0 0 1px rgba(93, 58, 25, 0.5),
    0 0 18px rgba(185, 144, 86, 0.12);
}

.mock-room-body h3 {
  margin: 0 0 8px;
  color: var(--fs-text);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.31em;
  text-transform: uppercase;
  font-family: var(--fs-font-sans);
}

.mock-room-body p {
  margin: 0 0 13px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.mock-room-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid rgba(185, 144, 86, 0.18);
  padding-top: 10px;
  color: var(--fs-text);
  font-size: 0.82rem;
  line-height: 1.2;
}

.mock-room-meta span + span {
  border-left: 1px solid rgba(185, 144, 86, 0.18);
  padding-left: 16px;
}

.mock-room-meta small {
  display: block;
  margin-bottom: 3px;
  color: #d7b16a;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mock-config {
  grid-template-columns: 245px 1fr 165px;
  gap: 18px;
}

.mock-form-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

.mock-field {
  display: flex;
  min-height: 41px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(179, 134, 65, 0.24);
  border-radius: 4px;
  padding: 7px 8px;
  background:
    linear-gradient(180deg, rgba(255, 236, 190, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.018);
  color: var(--fs-text);
  font-size: 0.63rem;
  line-height: 1.12;
  font-family: var(--fs-font-sans);
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 190, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32);
}

.mock-field:nth-child(10),
.mock-field:nth-child(11) {
  grid-column: span 2;
}

.mock-field:nth-child(8) {
  grid-column: span 2;
}

.mock-field small,
.mock-selection p,
.mock-selection dt {
  display: block;
  color: #d7b16a;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.mock-field img {
  width: 18px;
  height: 18px;
}

.mock-selection {
  padding: 15px 13px;
}

.mock-selection p {
  margin: 0 0 16px;
}

.mock-selection dl {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  margin: 0 0 17px;
  font-size: 0.64rem;
  line-height: 1.18;
  font-family: var(--fs-font-sans);
}

.mock-selection dd {
  margin: 0;
  color: var(--fs-text);
}

.mock-selection .mock-button {
  width: 100%;
}

.mock-calendar-section {
  grid-template-columns: 245px 1fr;
}

.mock-calendar {
  padding: 14px 16px 12px;
  font-family: var(--fs-font-sans);
}

.mock-calendar header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  color: #e4c37b;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-calendar-grid {
  display: grid;
  grid-template-columns: 100px repeat(12, 1fr);
  gap: 2px;
  align-items: end;
}

.mock-calendar-grid > div:not(.row-label) {
  min-height: 32px;
  display: grid;
  place-items: center;
  color: var(--fs-text-muted);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: pre-line;
}

.mock-calendar-grid .active {
  border: 1px solid rgba(237, 202, 128, 0.92);
  color: #e9ca83 !important;
  box-shadow:
    inset 0 0 0 1px rgba(68, 42, 17, 0.5),
    0 0 18px rgba(185, 144, 86, 0.07);
}

.public-calendar {
  overflow-x: auto;
}

.public-calendar-grid {
  display: grid;
  grid-template-columns: 132px repeat(14, minmax(118px, 1fr));
  gap: 3px;
  min-width: 1780px;
}

.public-calendar-head,
.public-calendar-room,
.public-calendar-cell {
  border: 1px solid rgba(185, 144, 86, 0.2);
  background: rgba(255, 255, 255, 0.018);
}

.public-calendar-head {
  min-height: 42px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: var(--fs-text-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-calendar-head strong {
  color: var(--fs-bronze-light);
  font-size: 0.72rem;
}

.public-calendar-head.active {
  border-color: rgba(237, 202, 128, 0.82);
  background: rgba(214, 183, 122, 0.1);
}

.public-calendar-room {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 10px;
  color: var(--fs-text);
  font-size: 0.74rem;
  font-weight: 800;
}

.public-calendar-cell {
  min-height: 86px;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 6px;
}

.public-slot {
  display: grid;
  gap: 2px;
  border-radius: 4px;
  padding: 6px 7px;
  color: #07100d;
  background: var(--fs-status-free);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.15;
}

.public-slot small {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.82;
}

.public-slot.free { background: var(--fs-status-free); }
.public-slot.optional { background: var(--fs-status-optional); }
.public-slot.hourly { background: var(--fs-status-hourly); }
.public-slot.halfday { background: var(--fs-status-halfday); color: #07100d; }
.public-slot.hard { background: var(--fs-status-hard); color: var(--fs-text); }
.public-slot.unavailable {
  color: var(--fs-text-muted);
  background:
    repeating-linear-gradient(135deg, rgba(127, 117, 104, 0.3) 0 4px, rgba(52, 57, 57, 0.92) 4px 8px);
}

.row-label {
  min-height: 31px;
  display: flex;
  align-items: center;
  color: var(--fs-text);
  font-size: 0.7rem;
}

.mock-day {
  display: block;
  min-height: 31px;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.mock-day.free { background: rgba(111, 142, 101, 0.88); }
.mock-day.optional { background: rgba(194, 161, 106, 0.88); }
.mock-day.halfday { background: rgba(102, 129, 150, 0.88); }
.mock-day.hourly { background: rgba(183, 119, 62, 0.9); }
.mock-day.hard { background: rgba(164, 81, 70, 0.94); }
.mock-day.unavailable {
  background:
    repeating-linear-gradient(135deg, rgba(127, 117, 104, 0.3) 0 4px, rgba(52, 57, 57, 0.92) 4px 8px);
}

.mock-legend {
  display: flex;
  gap: 23px;
  margin-top: 13px;
  color: var(--fs-text-muted);
  font-size: 0.64rem;
}

.mock-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mock-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--fs-status-free);
}

.mock-legend .optional { background: var(--fs-status-optional); }
.mock-legend .halbtags { background: var(--fs-status-halfday); }
.mock-legend .stundenweise { background: var(--fs-status-hourly); }
.mock-legend .hart-belegt { background: var(--fs-status-hard); }
.mock-legend .nicht-verfügbar { background: var(--fs-status-unavailable); }

.mock-admin {
  grid-template-columns: 245px 1fr;
}

.mock-admin-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr 0.95fr 1.2fr;
  gap: 8px;
}

.mock-admin-grid article {
  min-height: 122px;
  padding: 15px;
  font-family: var(--fs-font-sans);
}

.mock-admin-grid h3 {
  margin: 0 0 14px;
  color: transparent;
  background: var(--fs-metal-gold);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mock-admin-grid p {
  margin: 0 0 8px;
  font-size: 0.69rem;
  line-height: 1.4;
}

.mock-gallery-section {
  grid-template-columns: 220px 1fr 145px;
  gap: 14px;
}

.mock-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.mock-gallery img {
  width: 100%;
  height: 133px;
  border: 1px solid rgba(185, 144, 86, 0.3);
  border-radius: 5px;
  object-fit: cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 196, 0.12),
    0 0 0 1px rgba(26, 16, 7, 0.55);
}

.mock-history-card {
  position: relative;
  overflow: hidden;
  padding: 17px 15px;
}

.mock-history-card p:not(.mock-kicker) {
  margin: 0 0 13px;
  font-size: 0.69rem;
  line-height: 1.45;
}

.mock-history-card img {
  position: absolute;
  right: 10px;
  bottom: -8px;
  width: 70px;
  opacity: 0.22;
}

@media (max-width: 980px) {
  .mock-home {
    width: min(100% - 36px, 990px);
  }

  .mock-hero,
  .mock-section,
  .mock-band,
  .mock-config,
  .mock-calendar-section,
  .mock-admin,
  .mock-gallery-section {
    grid-template-columns: 1fr;
  }

  .mock-villa-line {
    display: none;
  }

  .mock-hero-collage,
  .mock-room-list,
  .mock-admin-grid,
  .mock-gallery,
  .mock-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .mock-home {
    padding-top: 96px;
  }

  .mock-home h1 {
    font-size: 3.35rem;
  }

  .mock-actions,
  .mock-usp,
  .mock-room-list,
  .mock-hero-collage,
  .mock-admin-grid,
  .mock-gallery,
  .mock-form-preview {
    grid-template-columns: 1fr;
  }

  .mock-actions {
    display: grid;
  }

  .mock-calendar-grid {
    min-width: 760px;
  }

  .mock-calendar {
    overflow-x: auto;
  }

  .mock-footer {
    width: 100%;
  }

  .mock-footer-grid,
  .mock-footer-bottom {
    width: min(100% - 36px, 990px);
  }

  .mock-footer-grid,
  .mock-footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mock-socials {
    justify-content: start;
    border-left: 0;
  }

  .login-layout,
  .demo-users {
    grid-template-columns: 1fr;
  }

  .login-panel {
    position: static;
  }
}
