*, *::before, *::after { box-sizing: border-box; }
:root {
  --red: #9f0808; --red-bright: #d01616; --gold: #f3c242; --ink: #0e0e0f;
  --paper: #fbfaf8; --soft: #f2efeb; --line: #d9d2c8; --text: #1f1d1b; --muted: #68605a;
  --heading: "Oswald", Arial, sans-serif; --body: "Open Sans", Arial, sans-serif;
}
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--body); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--heading); letter-spacing: 0; }
h1 { margin-bottom: 28px; font-size: clamp(2.1rem, 4.5vw, 3.8rem); line-height: 1.02; text-transform: uppercase; }
h2 { margin-bottom: 18px; font-size: 1.35rem; text-transform: none; }
h3 { margin-bottom: 12px; font-size: 1.15rem; text-transform: none; }
.skip-link { position: absolute; left: 16px; top: -80px; z-index: 20; padding: 10px 14px; background: white; color: var(--ink); }
.skip-link:focus { top: 16px; }
.booking-page { max-width: 1180px; margin: 0 auto; padding: 42px 22px 80px; }
.back-link { display: inline-flex; margin-bottom: 20px; color: var(--muted); font-weight: 700; }
.back-link:hover, .text-link:hover, .text-button:hover { color: var(--red-bright); }
.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 42px; align-items: start; }
.form-panel { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.panel-heading { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.panel-heading p { color: var(--muted); font-size: .94rem; }
.text-button, .text-link { border: 0; padding: 0; background: transparent; color: var(--text); font: 700 .92rem var(--body); text-decoration: underline; cursor: pointer; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: grid; gap: 8px; color: var(--text); font-size: .95rem; font-weight: 700; }
input, select, textarea { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 0; padding: 12px 13px; background: white; color: var(--text); font: 600 1rem var(--body); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(208,22,22,.22); border-color: var(--red-bright); }
textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }
.zip-helper { grid-column: 1 / -1; min-height: 22px; margin: -8px 0 0; color: var(--muted); font-size: .9rem; }
.sr-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.addon-list { display: grid; gap: 13px; }
.addon-list label { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 48px; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; }
input[type="checkbox"] { order: 2; width: 20px; min-height: 20px; accent-color: var(--red-bright); }
.summary-panel { position: sticky; top: 102px; display: grid; gap: 22px; padding: 28px; border: 1px solid var(--line); background: var(--soft); }
.summary-panel section { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.summary-panel p { color: var(--muted); }
.payment-total { margin-bottom: 12px; color: var(--text); font: 700 1.8rem var(--heading); }
.payment-total::before { content: "$"; }
.summary-note { margin: 0; font-size: .92rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; width: 100%; padding: 13px 18px; border: 2px solid var(--red-bright); border-radius: 0; font: 700 .88rem var(--heading); text-transform: uppercase; cursor: pointer; }
.button-primary { background: var(--red-bright); color: white; }
.button[disabled] { opacity: .6; cursor: wait; }
.button-secondary { background: white; color: var(--red-bright); }
#form-status { min-height: 24px; margin: 0; color: var(--red-bright); font-weight: 700; }
@media (max-width: 900px) {
  .booking-layout, .field-grid { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
}
@media (max-width: 520px) {
  .booking-page { padding-top: 30px; }
  .panel-heading { display: block; }
}
