:root {
  --bg: #0f0d0b;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f5efe6;
  --muted: rgba(245, 239, 230, 0.7);
  --gold: #c5a46a;
  --gold-light: #e0c892;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(197, 164, 106, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 24%),
    var(--bg);
  color: var(--text);
}

.booking-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.booking-hero {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.booking-hero h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  font-weight: 500;
}

.lede {
  margin: 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-notes span {
  padding: 0.55rem 0.8rem;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-card {
  margin: 2rem;
  padding: 2rem;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.confirmation {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border: 0.5px solid rgba(197, 164, 106, 0.4);
  background: rgba(197, 164, 106, 0.08);
}

.confirmation-label {
  margin: 0 0 0.35rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.confirmation h2 {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
}

.confirmation p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 0.5px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 239, 230, 0.35);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  border: none;
  background: var(--gold);
  color: #fff;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.submit-btn:hover {
  transform: translateY(-1px);
  background: var(--gold-light);
}

@media (max-width: 920px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-hero,
  .booking-card {
    padding: 2rem;
  }

  .booking-card {
    margin: 0 1rem 1rem;
  }

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