:root {
  color-scheme: dark;
  --background: #08060c;
  --surface: #100b13;
  --surface-soft: #19101a;
  --text: #f8f5f8;
  --muted: #b8afb9;
  --line: rgba(255, 255, 255, 0.12);
  --accent-a: #c23891;
  --accent-b: #ff6a36;
  --danger: #ff8b82;
  --focus: #ffb6dc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--background); }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 20%, rgba(95, 12, 102, 0.24), transparent 36rem),
    radial-gradient(circle at 90% 80%, rgba(175, 54, 27, 0.2), transparent 34rem),
    var(--background);
  color: var(--text);
}

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  font-size: 1.15rem;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.language-switch {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
}

.booking-main { padding: 54px 0 96px; }

.booking-intro {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f0715a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 750;
}

.lede {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 24px 0 0;
  color: #ddd4dc;
  font-size: 0.95rem;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(12, 8, 14, 0.84);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.booking-steps {
  padding: 44px 34px;
  background: linear-gradient(165deg, rgba(71, 10, 79, 0.42), rgba(117, 36, 28, 0.18));
  border-right: 1px solid var(--line);
}

.booking-steps ol {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-steps li { color: var(--muted); }
.booking-steps li:first-child { color: var(--text); }
.booking-steps span {
  display: block;
  margin-bottom: 7px;
  color: #f0715a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.booking-steps strong { font-size: 1rem; font-weight: 650; }

.booking-form-wrap { padding: 48px; }
.booking-form-wrap h2 { margin: 0 0 8px; font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 700; }
.booking-form-wrap > p { margin: 0 0 34px; color: var(--muted); line-height: 1.55; }

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

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

label {
  display: grid;
  gap: 9px;
  color: #dcd4dd;
  font-size: 0.8rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #08060a;
  color: var(--text);
  font: inherit;
  font-weight: 450;
  padding: 14px 15px;
}

textarea { min-height: 112px; resize: vertical; }

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 450;
}

.consent input { width: 18px; height: 18px; margin-top: 2px; }
.consent a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

.primary-action {
  width: 100%;
  margin-top: 26px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(100deg, var(--accent-a), var(--accent-b));
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 17px 22px;
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.72;
}

[aria-invalid="true"] {
  border-color: #ff7356;
  box-shadow: 0 0 0 1px rgb(255 115 86 / 28%);
}

.field-error {
  color: #ffc0b0;
  font-size: 0.77rem;
  font-weight: 450;
  line-height: 1.45;
}

.consent + .field-error { display: block; margin-top: 7px; }

[data-form-status]:empty { display: none; }

[data-form-status] {
  margin: 14px 0 0;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

[data-form-status].is-error {
  border: 1px solid rgb(255 115 86 / 45%);
  background: rgb(255 115 86 / 8%);
  color: #ffc0b0;
}

[data-form-status].is-success {
  border: 1px solid rgb(84 212 151 / 38%);
  background: rgb(84 212 151 / 7%);
  color: #bdebd3;
}

.security-note {
  margin: 15px 0 0;
  color: #8f8790;
  font-size: 0.78rem;
  text-align: center;
}

.booking-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: #8f8790;
  font-size: 0.8rem;
}

.trap { position: absolute; left: -10000px; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 620px); }
  .booking-main { padding-top: 34px; }
  .booking-intro { margin-bottom: 34px; }
  .booking-card { grid-template-columns: 1fr; border-radius: 24px; }
  .booking-steps { padding: 26px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-steps ol { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .booking-steps strong { font-size: 0.82rem; }
  .booking-form-wrap { padding: 30px 22px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-grid .wide { grid-column: auto; }
  .booking-footer { flex-direction: column; }
}
