:root {
  color-scheme: dark;
  --black: #0b0b0b;
  --paper: #f1eee8;
  --muted: #8b8984;
  --line: #343330;
  --accent: #c9b894;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--black); }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(ellipse at 24% 35%, rgba(255,255,255,.035), transparent 36rem),
    var(--black);
  color: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  width: min(1180px, calc(100% - 96px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.topbar, .footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
}

.wordmark span { color: var(--accent); }

.top-note, .eyebrow, .booking-head .index, .field > span, .footer {
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.top-note, .booking-head .index, .field > span, .footer { color: var(--muted); }

.main-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  align-items: center;
  gap: clamp(64px, 10vw, 160px);
  padding: 92px 7.2% 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 13px rgba(201,184,148,.65);
}

h1 {
  margin: 27px 0 32px;
  font: 500 clamp(54px, 7.4vw, 96px)/1.04 "Playfair Display", Georgia, serif;
  letter-spacing: -.045em;
}

h1 em { color: var(--accent); font-weight: 500; }

.rule { display: flex; align-items: center; gap: 12px; }
.rule::before, .rule::after { content: ""; height: 1px; background: var(--line); }
.rule::before { width: 54px; background: var(--accent); }
.rule::after { width: 96px; }
.rule span { width: 3px; height: 3px; border-radius: 50%; background: var(--accent); }

.booking { width: min(100%, 410px); justify-self: end; }

.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.booking-head h2 { margin: 0; font-size: 14px; font-weight: 500; letter-spacing: .02em; }
.booking-head .index { font-size: 9px; }

form { padding-top: 7px; }
.field { display: grid; gap: 10px; padding: 18px 0 15px; border-bottom: 1px solid var(--line); }
.field > span { font-size: 9px; letter-spacing: .15em; }

input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: var(--paper);
  font: 400 14px "DM Sans", sans-serif;
  accent-color: var(--accent);
}

input::placeholder { color: #62615e; opacity: 1; }
input:focus-visible { outline: 1px solid var(--accent); outline-offset: 5px; }
input[type="date"], input[type="time"] { color-scheme: dark; }
input::-webkit-calendar-picker-indicator { opacity: .62; cursor: pointer; }

.field-pair { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
button {
  width: 100%;
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding: 0 18px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--black);
  font: 500 12px "DM Sans", sans-serif;
  letter-spacing: .035em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

button:hover:not(:disabled) { background: transparent; color: var(--paper); border-color: var(--accent); }
button:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }
button:disabled { opacity: .58; cursor: wait; }
.button-arrow { font-size: 19px; line-height: 1; }
.form-status { min-height: 18px; margin: 13px 0 0; color: var(--accent); font-size: 12px; }
.form-status.error { color: #ee958e; }
.fine-print { margin: 2px 0 0; color: #76746f; font-size: 10px; letter-spacing: .02em; }

.footer { min-height: 64px; border-top: 1px solid var(--line); border-bottom: 0; font-size: 9px; }
.footer a { color: var(--paper); }

@media (max-width: 760px) {
  .page-shell { width: min(100% - 44px, 540px); }
  .topbar { min-height: 66px; }
  .main-grid { grid-template-columns: 1fr; gap: 54px; padding: 78px 0 84px; }
  h1 { margin: 23px 0 25px; font-size: clamp(54px, 13vw, 78px); }
  .booking { justify-self: stretch; width: 100%; }
}

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