:root {
  --wine: #4a1218;
  --wine-2: #641c26;
  --wine-dark: #2f0b0f;
  --cream: #fbf4e6;
  --cream-2: #f3e7ce;
  --paper: #fff9ec;
  --gold: #c79a46;
  --gold-light: #e6c984;
  --ink: #23191a;
  --muted: #776b68;
  --line: rgba(74, 18, 24, .12);
  --success: #2e6a4e;
  --danger: #a6383f;
  --shadow: 0 32px 80px -50px rgba(74, 18, 24, .48);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 12% -10%, #f7e4b8 0%, transparent 60%),
    radial-gradient(900px 700px at 95% 10%, #ebc7c9 0%, transparent 55%),
    radial-gradient(900px 900px at 85% 90%, #e9d8b0 0%, transparent 60%),
    radial-gradient(700px 700px at 5% 85%, #f0d5a9 0%, transparent 55%),
    linear-gradient(180deg, #fbf4e6 0%, #f5e6c6 100%);
  background-attachment: fixed;
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(5px);
  pointer-events: none;
}

.page-glow-one {
  top: 20%;
  left: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(199, 154, 70, .32) 0%, transparent 65%);
  filter: blur(80px);
}

.page-glow-two {
  top: 40%;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(107, 30, 41, .18) 0%, transparent 65%);
  filter: blur(80px);
}

.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 7px 17px 7px 8px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, .52);
  box-shadow: 0 18px 42px -34px rgba(74, 18, 24, .65), inset 0 1px 0 rgba(255, 255, 255, .48);
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.brand:hover {
  border-color: rgba(255, 255, 255, .96);
  background: rgba(255, 255, 255, .72);
  transform: translateY(-1px);
}

.monogram {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #e8c77a;
  background: linear-gradient(160deg, #8e2b37, #4a121b);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 -1px 0 rgba(0,0,0,.2) inset, 0 6px 12px -6px rgba(74,18,27,.5);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  position: relative;
}

.monogram::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(232, 199, 122, .4);
  border-radius: 50%;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark .n1 {
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  letter-spacing: .1em;
}

.wordmark .n2 {
  margin-top: 4px;
  color: #a57a28;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
}

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

.language-switcher {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  backdrop-filter: blur(14px);
}

.language-switcher button {
  width: 38px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: .2s ease;
}

.language-switcher button:hover { color: var(--wine); }
.language-switcher button.active {
  color: #fff9eb;
  background: var(--wine);
  box-shadow: 0 6px 16px -10px rgba(74, 18, 24, .9);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, .56);
  text-decoration: none;
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 600;
  transition: .2s ease;
}

.back-link:hover {
  border-color: rgba(74, 18, 24, .25);
  background: rgba(255, 255, 255, .85);
  transform: translateY(-1px);
}

.page-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 22px auto 72px;
}

.hero-copy {
  max-width: 900px;
  margin: 46px 0 42px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.hero-copy > .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 16px 36px -30px rgba(74, 18, 24, .58), inset 0 1px 0 rgba(255, 255, 255, .44);
  backdrop-filter: blur(14px);
  line-height: 1;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--wine);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
}

.hero-copy > p {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 23px;
  color: #544846;
  font-size: 12px;
  font-weight: 500;
}

.trust-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 16px 36px -31px rgba(74, 18, 24, .56), inset 0 1px 0 rgba(255, 255, 255, .42);
  backdrop-filter: blur(14px);
}

.trust-row i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 12px;
  font-style: normal;
}

.demo-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -12px 0 28px;
  padding: 13px 16px;
  border: 1px solid rgba(199, 154, 70, .35);
  border-radius: 16px;
  color: #654719;
  background: rgba(239, 211, 144, .22);
  font-size: 12px;
  line-height: 1.5;
}

.demo-banner strong { white-space: nowrap; }

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr) 60px minmax(0, 1fr);
  align-items: center;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 50px -42px rgba(74, 18, 24, .6);
  backdrop-filter: blur(18px);
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 9px 12px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: .2s ease;
}

.step:disabled { cursor: default; }
.step:not(:disabled):hover { background: rgba(74, 18, 24, .04); }

.step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  transition: .2s ease;
}

.step b,
.step small { display: block; }

.step b {
  color: var(--wine);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.05;
}

.step small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
}

.step.active .step-number,
.step.complete .step-number {
  border-color: var(--wine);
  color: #fff9eb;
  background: var(--wine);
}

.step.complete .step-number { color: transparent; }
.step.complete .step-number::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.step-line {
  height: 1px;
  background: linear-gradient(90deg, var(--line), rgba(199, 154, 70, .38), var(--line));
}

.panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.date-panel { padding: clamp(22px, 4vw, 40px); }

.panel-heading,
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.panel-heading > div,
.section-heading-row > div { min-width: 0; }

.section-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  letter-spacing: .15em;
  font-size: 10px;
  font-weight: 700;
}

.panel-heading h2,
.section-heading-row h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(31px, 4vw, 45px);
  font-weight: 400;
  line-height: 1;
}

.panel-heading p,
.section-heading-row > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  text-align: right;
  font-size: 12px;
  line-height: 1.6;
}

.date-form {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(250px, .85fr);
  gap: 12px;
  align-items: end;
}

.field {
  display: block;
  min-width: 0;
}

.field > span,
.room-controls label > span,
.child-age-field > span {
  display: block;
  margin: 0 0 8px 2px;
  color: #5f5250;
  font-size: 11px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea,
.room-controls select,
.child-age-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(74, 18, 24, .14);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input,
.field select { padding: 0 15px; }
.field textarea {
  min-height: 112px;
  padding: 14px 15px;
  resize: vertical;
  line-height: 1.6;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.room-controls select:focus,
.child-age-field select:focus {
  border-color: rgba(199, 154, 70, .75);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199, 154, 70, .11);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(166, 56, 63, .62);
}

.date-field input,
.date-trigger {
  color-scheme: light;
  font-weight: 500;
}

.date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(74, 18, 24, .14);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.date-trigger:hover,
.date-trigger[aria-expanded="true"],
.date-trigger:focus-visible {
  border-color: rgba(199, 154, 70, .75);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199, 154, 70, .11);
}

.calendar-icon {
  position: relative;
  width: 17px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid var(--wine);
  border-radius: 3px;
}

.calendar-icon::before {
  content: "";
  position: absolute;
  top: 3px;
  right: -2px;
  left: -2px;
  border-top: 2px solid var(--wine);
}

.availability-calendar {
  width: min(100%, 520px);
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(74, 18, 24, .13);
  border-radius: 20px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 28px 70px -42px rgba(74, 18, 24, .62), inset 0 1px rgba(255,255,255,.9);
  backdrop-filter: blur(22px);
}

.calendar-header {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.calendar-heading { text-align: center; }
.calendar-heading span,
.calendar-heading strong { display: block; }
.calendar-heading span {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.calendar-heading strong {
  color: var(--wine);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: capitalize;
}

.calendar-nav {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255,255,255,.72);
  cursor: pointer;
}
.calendar-nav:hover:not(:disabled) { border-color: rgba(199,154,70,.65); background: #fff; }
.calendar-nav:disabled { opacity: .3; cursor: default; }

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

.calendar-weekdays { margin-bottom: 5px; }
.calendar-weekdays span {
  padding: 5px 0;
  color: var(--muted);
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  border: 0;
  border-radius: 11px;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}
.calendar-day:hover:not(:disabled) { color: var(--wine); background: rgba(199,154,70,.15); }
.calendar-day.today::after {
  content: "";
  position: absolute;
  right: 28%;
  bottom: 6px;
  left: 28%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.calendar-day.selected {
  color: #fff9eb;
  background: var(--wine);
  box-shadow: 0 10px 24px -14px rgba(74,18,24,.8);
  text-decoration: none;
}
.calendar-day.in-range:not(.selected) { background: rgba(199,154,70,.11); }
.calendar-day.unavailable {
  color: rgba(119,107,104,.58);
  background: rgba(74,18,24,.035);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.calendar-day:disabled { cursor: not-allowed; }
.calendar-day.past { color: rgba(119,107,104,.32); background: transparent; text-decoration: line-through; }
.calendar-day.blank { visibility: hidden; pointer-events: none; }

.calendar-status {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
}

.calendar-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}
.calendar-legend-day {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  color: rgba(119,107,104,.58);
  background: rgba(74,18,24,.035);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.primary-button,
.secondary-button,
.select-room-button {
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 20px;
  overflow: hidden;
  color: #fff8eb;
  background: linear-gradient(145deg, var(--wine-2), var(--wine-dark));
  box-shadow: 0 18px 34px -22px rgba(74, 18, 24, .95), inset 0 1px rgba(255, 255, 255, .15);
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  transform: translateX(-100%);
  transition: .45s ease;
}

.primary-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px -22px rgba(74, 18, 24, .95), inset 0 1px rgba(255, 255, 255, .16);
}

.primary-button:hover:not(:disabled)::before {
  opacity: 1;
  transform: translateX(100%);
}

.primary-button:disabled,
.select-room-button:disabled {
  cursor: not-allowed;
  opacity: .58;
}

.button-label,
.button-arrow { position: relative; z-index: 1; }
.button-arrow { font-size: 18px; font-weight: 400; }

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

.is-loading .button-label,
.is-loading .button-arrow { display: none; }
.is-loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.status-message {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.55;
}

.status-message.info {
  border-color: rgba(199, 154, 70, .28);
  color: #6b501c;
  background: rgba(230, 201, 132, .16);
}

.status-message.error {
  border-color: rgba(166, 56, 63, .25);
  color: #7f2830;
  background: rgba(166, 56, 63, .07);
}

.status-message.success {
  border-color: rgba(46, 106, 78, .22);
  color: #25553f;
  background: rgba(46, 106, 78, .08);
}

.rooms-section {
  padding-top: 54px;
  scroll-margin-top: 24px;
}

.period-summary {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  white-space: nowrap;
}

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

.room-card {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
  min-height: 345px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 30px 60px -48px rgba(74, 18, 24, .6);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.room-card:hover {
  border-color: rgba(199, 154, 70, .38);
  box-shadow: 0 34px 72px -45px rgba(74, 18, 24, .68);
  transform: translateY(-3px);
}

.room-card.selected {
  border-color: rgba(199, 154, 70, .75);
  box-shadow: 0 0 0 3px rgba(199, 154, 70, .1), 0 34px 72px -45px rgba(74, 18, 24, .68);
}

.room-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--cream-2);
}

.room-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(47, 11, 15, .28));
  pointer-events: none;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

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

.availability-pill {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  background: rgba(47, 11, 15, .72);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 700;
}

.room-content {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

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

.rate-plan {
  display: block;
  min-height: 14px;
  margin-bottom: 6px;
  color: var(--gold);
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
}

.room-name {
  margin: 0;
  color: var(--wine);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.room-price {
  flex: 0 0 auto;
  text-align: right;
}

.room-price small,
.room-price strong,
.room-price > span { display: block; }

.room-price small,
.room-price > span {
  color: var(--muted);
  font-size: 9px;
}

.room-price strong {
  margin: 3px 0;
  color: var(--wine);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.room-price em {
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 17px 0;
}

.room-features span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5f5350;
  background: rgba(247, 241, 231, .58);
  font-size: 9px;
  font-weight: 600;
}

.room-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.room-controls select,
.child-age-field select {
  min-height: 42px;
  padding: 0 9px;
  border-radius: 11px;
  font-size: 11px;
}

.room-controls label > span,
.child-age-field > span {
  margin-bottom: 5px;
  font-size: 9px;
}

.child-ages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 9px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(247, 241, 231, .65);
}

.select-room-button {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  color: #fff8eb;
  background: var(--wine);
  box-shadow: 0 14px 28px -20px rgba(74, 18, 24, .9);
  font-size: 11px;
}

.select-room-button:hover:not(:disabled) { transform: translateY(-1px); }

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 22px;
  align-items: start;
  padding-top: 54px;
  scroll-margin-top: 24px;
}

.details-panel { padding: clamp(22px, 4vw, 38px); }

.form-section + .form-section {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.form-section h3 {
  margin: 0 0 18px;
  color: var(--wine);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.full-width { grid-column: 1 / -1; }

.check-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .66);
  cursor: pointer;
  transition: .2s ease;
}

.check-card:hover { border-color: rgba(199, 154, 70, .5); }
.check-card:has(input:checked) {
  border-color: rgba(199, 154, 70, .72);
  background: rgba(230, 201, 132, .12);
}

.check-card input,
.consent-label input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-check {
  position: relative;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border: 1px solid rgba(74, 18, 24, .28);
  border-radius: 6px;
  background: #fff;
  transition: .2s ease;
}

input:checked + .custom-check {
  border-color: var(--wine);
  background: var(--wine);
}

input:checked + .custom-check::after {
  content: "✓";
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.check-card b,
.check-card small { display: block; }

.check-card b {
  color: var(--wine);
  font-size: 11px;
  line-height: 1.4;
}

.check-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.company-fields {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(199, 154, 70, .26);
  border-radius: 17px;
  background: rgba(230, 201, 132, .08);
}

.newsletter-field { margin-top: 14px; margin-bottom: 22px; }
.notes-field { margin-top: 0; }

.consent-box {
  margin-top: 28px;
  padding: 17px;
  border: 1px solid rgba(74, 18, 24, .12);
  border-radius: 17px;
  background: rgba(247, 241, 231, .62);
}

.consent-label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #554a47;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.55;
}

.consent-box p {
  margin: 8px 0 0 32px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.final-button {
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
}

.final-note {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 9px;
}

.summary-card {
  position: sticky;
  top: 18px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(74, 18, 24, .16);
  border-radius: 24px;
  color: #fff7ea;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 70, .3), transparent 15rem),
    linear-gradient(155deg, var(--wine-2), var(--wine-dark));
  box-shadow: 0 32px 70px -36px rgba(74, 18, 24, .88);
}

.summary-card::after {
  content: "B";
  position: absolute;
  right: -14px;
  bottom: -70px;
  color: rgba(255, 255, 255, .035);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 250px;
  line-height: 1;
  pointer-events: none;
}

.summary-card > * { position: relative; z-index: 1; }

.summary-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 700;
}

.summary-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(230, 201, 132, .42);
  border-radius: 50%;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 15px;
}

.summary-card h2 {
  margin: 17px 0 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.summary-period {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.summary-period span,
.summary-period strong,
.summary-period small { display: block; }

.summary-period span {
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
}

.summary-period strong {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.summary-period small {
  margin-top: 2px;
  color: var(--gold-light);
  font-size: 9px;
}

.selected-rooms { margin-top: 5px; }

.selected-room {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.selected-room-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.selected-room h3 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
}

.selected-room strong {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 11px;
}

.selected-room p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  line-height: 1.6;
}

.remove-selection {
  margin-top: 9px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .68);
  background: none;
  cursor: pointer;
  font-size: 8px;
}

.summary-empty {
  margin: 18px 0;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 12px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  line-height: 1.55;
}

.summary-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 19px;
}

.summary-total > span {
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
}

.summary-total strong {
  color: var(--gold-light);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.tax-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .48);
  text-align: right;
  font-size: 8px;
  line-height: 1.5;
}

.secure-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .53);
  font-size: 8px;
  line-height: 1.55;
}

.success-panel {
  max-width: 820px;
  margin: 54px auto 0;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid rgba(46, 106, 78, .2);
  border-radius: 30px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.success-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  box-shadow: 0 18px 38px -20px rgba(46, 106, 78, .8);
  font-size: 28px;
}

.success-panel.pending {
  border-color: rgba(199, 154, 70, .32);
}

.success-panel.pending .success-mark {
  color: var(--wine);
  background: var(--gold-light);
  box-shadow: 0 18px 38px -20px rgba(165, 122, 40, .72);
}

.success-panel h2 {
  max-width: 650px;
  margin: 0 auto;
  color: var(--wine);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.success-panel > p {
  max-width: 570px;
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.booking-reference {
  display: inline-block;
  min-width: 260px;
  margin-top: 25px;
  padding: 15px 22px;
  border: 1px solid rgba(199, 154, 70, .3);
  border-radius: 15px;
  background: rgba(230, 201, 132, .1);
}

.booking-reference span,
.booking-reference strong { display: block; }
.booking-reference span {
  color: var(--muted);
  font-size: 9px;
}
.booking-reference strong {
  margin-top: 5px;
  color: var(--wine);
  font-size: 20px;
  letter-spacing: .03em;
}

.success-demo-note {
  margin: 18px auto 0;
  padding: 11px 14px;
  border-radius: 12px;
  color: #6b501c;
  background: rgba(230, 201, 132, .17);
  font-size: 10px;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 27px;
}

.link-button,
.secondary-button {
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--wine);
  background: rgba(255, 255, 255, .7);
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.booking-footer a { color: var(--wine); text-decoration: none; }

[hidden] { display: none !important; }

@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card { grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); }
}

@media (max-width: 900px) {
  .date-form { grid-template-columns: 1fr 1fr; }
  .search-button { grid-column: 1 / -1; }
  .booking-layout { grid-template-columns: 1fr; }
  .summary-card { position: relative; top: auto; grid-row: 1; }
}

@media (max-width: 700px) {
  body { background-attachment: scroll; }
  .topbar,
  .page-shell,
  .booking-footer { width: min(100% - 24px, 1240px); }
  .topbar { align-items: flex-start; padding: 14px 0; }
  .topbar-actions { align-items: flex-end; flex-direction: column-reverse; gap: 7px; }
  .back-link { min-height: 34px; padding: 0 11px; font-size: 10px; }
  .wordmark .n2 { font-size: 8px; letter-spacing: .22em; }
  .hero-copy { margin: 32px 0 30px; }
  .hero-copy h1 { font-size: clamp(40px, 12vw, 54px); }
  .hero-copy > p { font-size: 14px; line-height: 1.65; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .step-line { display: none; }
  .step { justify-content: center; padding: 7px 4px; }
  .step > span:last-child { display: none; }
  .step-number { width: 36px; height: 36px; }
  .panel-heading,
  .section-heading-row { align-items: start; flex-direction: column; gap: 10px; }
  .panel-heading p,
  .section-heading-row > p { text-align: left; }
  .period-summary { white-space: normal; border-radius: 15px; line-height: 1.5; }
  .date-form,
  .two-columns { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .rooms-section,
  .booking-layout { padding-top: 38px; }
  .room-card { grid-template-columns: 1fr; }
  .room-image { min-height: 230px; }
  .demo-banner { align-items: flex-start; flex-direction: column; gap: 3px; }
  .success-actions { flex-direction: column; }
  .success-actions > * { width: 100%; }
  .booking-footer { align-items: center; flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .topbar { align-items: stretch; flex-direction: column; gap: 10px; }
  .brand { align-self: flex-start; }
  .topbar-actions {
    width: 100%;
    margin-left: 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
  }
  .language-switcher button { width: 40px; height: 38px; }
  .back-link { min-height: 40px; }
  .hero-copy > .eyebrow { max-width: 100%; line-height: 1.4; }
}

@media (max-width: 440px) {
  .brand { min-height: 52px; padding: 6px 13px 6px 7px; }
  .monogram { width: 36px; height: 36px; font-size: 20px; }
  .wordmark .n1 { font-size: 17px; }
  .topbar-actions { margin-left: 0; }
  .trust-row > span { width: 100%; }
  .date-panel,
  .details-panel { padding: 20px 16px; border-radius: 21px; }
  .panel-heading h2,
  .section-heading-row h2 { font-size: 31px; }
  .room-content { padding: 18px 15px; }
  .room-title-row { align-items: start; flex-direction: column; }
  .room-price { text-align: left; }
  .room-controls { grid-template-columns: 1fr 1fr; }
  .room-controls label:first-child { grid-column: 1 / -1; }
  .child-ages { grid-template-columns: 1fr 1fr; }
  .summary-card { padding: 21px 18px; }
  .company-fields { padding: 14px; }
  .check-card { min-height: 68px; }
  .availability-calendar { padding: 14px 10px; border-radius: 17px; }
  .calendar-nav { width: 42px; height: 42px; }
  .calendar-grid,
  .calendar-weekdays { gap: 3px; }
  .calendar-day { border-radius: 9px; font-size: 10px; }
  .success-panel { margin-top: 32px; padding: 32px 20px; border-radius: 24px; }
  .success-mark { width: 56px; height: 56px; margin-bottom: 20px; }
  .success-panel h2 { font-size: 36px; }
}

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