:root {
  --ink: #080c16;
  --gold: #e7c067;
  --gold-dark: #b8913e;
  --paper: #f8f5ed;
  --white: #ffffff;
  --muted: #626875;
  --line: #d8d5cc;
  --error: #9f2f2f;
}
* { box-sizing: border-box; }
html,body { overflow-x: hidden; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "IBM Plex Sans", system-ui, sans-serif; line-height: 1.55; }
a { color: inherit; }
.site-header { min-height: 88px; padding: 14px clamp(18px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--white); background: var(--ink); border-bottom: 3px solid var(--gold); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font: 800 18px/1.1 Archivo, sans-serif; letter-spacing: .01em; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.header-note { color: var(--gold); font-size: 14px; font-weight: 600; }
.page-shell { width: min(900px, calc(100% - 32px)); margin: 0 auto; padding: 54px 0 72px; }
.intro { max-width: 760px; margin-bottom: 32px; }
.eyebrow,.step-kicker { margin: 0 0 10px; color: var(--gold-dark); font: 800 12px/1 Archivo, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
h1,h2 { font-family: Archivo, sans-serif; line-height: 1.08; letter-spacing: -.025em; }
h1 { margin: 0; font-size: clamp(36px, 6vw, 62px); }
h2 { margin: 0; font-size: clamp(26px, 4vw, 40px); }
.intro > p:last-child,.helper { color: var(--muted); font-size: 17px; }
form,.success { padding: clamp(22px, 4vw, 42px); background: var(--white); border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--gold); }
.progress-wrap { margin-bottom: 38px; }
.progress-meta { display: flex; justify-content: space-between; font: 700 13px Archivo, sans-serif; text-transform: uppercase; letter-spacing: .06em; }
.progress-track { height: 8px; margin-top: 10px; background: #e7e7e7; }
.progress-bar { width: 7%; height: 100%; background: var(--gold); transition: width .2s ease; }
.step { display: none; }
.step.is-active { display: block; }
.choices { display: grid; gap: 10px; margin-top: 26px; }
.choices label { display: block; cursor: pointer; }
.choices input { position: absolute; opacity: 0; pointer-events: none; }
.choices span { display: block; padding: 15px 17px; border: 2px solid var(--line); font-weight: 600; transition: border-color .15s, background .15s; }
.choices input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.choices input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--white); }
.field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 26px; }
.field-grid.three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.field-wide { grid-column: 1 / -1; }
.field span { display: block; margin-bottom: 7px; font-weight: 700; }
.field input,.field select { width: 100%; min-height: 52px; padding: 12px 14px; border: 2px solid var(--line); background: var(--white); color: var(--ink); font: 16px "IBM Plex Sans", sans-serif; }
.field input:focus,.field select:focus { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--ink); }
.field-grid.one { grid-template-columns: minmax(0, 1fr); }
.choices.compact { margin-top: 14px; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin-top: 28px; padding: 18px; border: 2px solid var(--line); background: #fbfaf6; font-size: 14px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--ink); }
.consent a { font-weight: 700; }
.actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; padding: 13px 22px; border: 2px solid var(--ink); font: 800 15px Archivo, sans-serif; text-transform: uppercase; letter-spacing: .03em; cursor: pointer; text-decoration: none; text-align: center; }
.button.primary { background: var(--gold); color: var(--ink); }
.button.primary:hover { background: #f0cd7c; }
.button.secondary { background: var(--white); color: var(--ink); }
.button:disabled { cursor: not-allowed; opacity: .45; }
.form-error { margin: 24px 0 0; padding: 12px 14px; color: var(--error); background: #fff2f2; border-left: 4px solid var(--error); font-weight: 600; }
.success h2 { margin-bottom: 14px; }
.success p { font-size: 18px; color: var(--muted); }
.booking-link { display: inline-block; margin-top: 10px; }
.disclosure { margin-top: 42px; padding: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.55); font-size: 14px; }
.disclosure strong { font-family: Archivo, sans-serif; text-transform: uppercase; letter-spacing: .05em; }
.disclosure p:last-child { margin-bottom: 0; }
footer { padding: 28px 18px; color: #c5c8cf; background: var(--ink); text-align: center; font-size: 14px; }
footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
footer a:hover { color: var(--gold); }
@media (max-width: 640px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .header-note { width: 100%; max-width: none; text-align: left; }
  .page-shell { padding-top: 34px; }
  .field-grid,.field-grid.three { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .actions { flex-direction: column-reverse; }
  .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
