:root {
  --yellow: #FFDA00;
  --mustard: #FFCA38;
  --salsa: #E3173E;
  --charcoal: #2C393E;
  --black: #000000;
  --white: #FFFFFF;
  --yellow-40: #FFEDA9;
  --yellow-20: #FFF6D4;
  --grey: #808285;
  --grey-light: #E6E7E8;
  --grey-soft: #F4F4F5;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--black); }
[hidden] { display: none !important; }

/* ---------- brand font ---------- */
@font-face {
  font-family: "Road Hunter";
  src: url("https://www.myonlyrival.com.au/uploads/b/353fa9e8c49224820067dfc09f7542b3424f8c0544deab9307f96d34126fdbe4/Road%20Hunter_1773194165.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 0 16px 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 38%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.92) 100%),
    url("https://353fa9e8c49224820067.cdn6.editmysite.com/uploads/b/353fa9e8c49224820067dfc09f7542b3424f8c0544deab9307f96d34126fdbe4/A2B3C261-05B3-43E6-8399-05FE7ED78EFB_1_105_c_1783381213.jpeg?width=1600&optimize=medium") center 60% / cover no-repeat;
}
.topbar {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo { width: 150px; height: auto; display: block; }
.top-link {
  color: var(--white); text-decoration: none; font-weight: 600; font-size: 14px;
  padding: 8px 14px; border: 1.5px solid rgba(255,255,255,.55); border-radius: 999px;
  backdrop-filter: blur(6px); background: rgba(0,0,0,.2);
}
.top-link:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 54px 0 0; }
.badge {
  display: inline-block; margin-bottom: 18px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--yellow); color: var(--black);
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow.dark { color: var(--salsa); }
.hero h1 {
  margin: 0;
  font-family: "Road Hunter", "Montserrat", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(46px, 9vw, 92px);
  line-height: .95;
  letter-spacing: .01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
}
.hero h1 span { display: block; color: var(--yellow); }
.hero-sub { margin: 18px auto 0; max-width: 520px; font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, .9); text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.hero.compact { padding-bottom: 110px; }
.hero.compact .hero-inner { padding-top: 34px; }
.hero.compact h1 { font-size: clamp(40px, 7vw, 68px); }
@media (max-width: 560px) {
  .logo { width: 124px; }
  .hero-inner { padding-top: 34px; }
  .top-link { font-size: 13px; padding: 7px 12px; }
}

/* ---------- layout ---------- */
.wrap { max-width: 760px; margin: -60px auto 0; padding: 0 16px 40px; position: relative; }
.booking, .done {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  padding: 8px 22px 22px;
}

.step { padding: 22px 0; border-bottom: 1px solid var(--grey-light); transition: opacity .25s ease; }
.step:last-of-type { border-bottom: 0; }
.step.is-locked { opacity: .38; pointer-events: none; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.step-head h2 { margin: 0; font-size: 19px; font-weight: 700; color: var(--black); }
.num {
  flex: 0 0 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--black); color: var(--yellow);
  font-weight: 800; font-size: 14px;
}

/* ---------- service ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  gap: 4px; padding: 18px 16px; min-height: 150px;
  border: 2px solid var(--grey-light); border-radius: var(--radius);
  background: var(--white);
  transition: border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.service:hover { border-color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow); }
.service-icon { width: 42px; height: 42px; color: var(--black); margin-bottom: 6px; }
.service-icon svg { width: 100%; height: 100%; }
.service-name { font-weight: 800; font-size: 17px; color: var(--black); }
.service-meta { font-size: 13px; color: var(--grey); line-height: 1.45; }
.service.is-selected { border-color: var(--black); background: var(--yellow); box-shadow: var(--shadow); }
.service.is-selected .service-meta { color: var(--charcoal); }

/* ---------- guests ---------- */
.guest-rows { display: grid; gap: 10px; }
.guest-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: var(--grey-soft); border-radius: 14px;
}
.guest-row strong { display: block; color: var(--black); }
.guest-row small { color: var(--grey); font-size: 12px; }
.stepper { display: flex; align-items: center; gap: 6px; }
.stepper output { min-width: 34px; text-align: center; font-weight: 800; font-size: 20px; color: var(--black); }
.step-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--black); background: var(--white);
  font-size: 22px; font-weight: 600; line-height: 1;
  display: grid; place-items: center;
}
.step-btn:hover { background: var(--yellow); }
.note { margin: 12px 0 0; font-size: 14px; }
.big-group { background: var(--yellow-20); border-left: 4px solid var(--yellow); padding: 12px 14px; border-radius: 10px; }

/* ---------- dates ---------- */
.date-scroller { position: relative; display: flex; align-items: center; gap: 6px; }
.dates {
  display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 2px 10px; scrollbar-width: none; flex: 1;
}
.dates::-webkit-scrollbar { display: none; }
.date {
  flex: 0 0 76px; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 6px; border-radius: 16px;
  border: 2px solid var(--grey-light); background: var(--white);
  transition: all .15s ease;
}
.date:hover { border-color: var(--black); }
.d-day { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--grey); }
.d-num { font-size: 26px; font-weight: 800; color: var(--black); line-height: 1.15; }
.d-mon { font-size: 12px; font-weight: 600; }
.date.is-selected { background: var(--black); border-color: var(--black); }
.date.is-selected .d-num { color: var(--yellow); }
.date.is-selected .d-day, .date.is-selected .d-mon { color: var(--white); }
.scroll-btn {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  border: 0; background: var(--grey-soft); font-size: 22px; line-height: 1;
  display: none;
}
@media (min-width: 700px) { .scroll-btn { display: grid; place-items: center; } }

/* ---------- times ---------- */
.times-status { font-size: 14px; color: var(--grey); margin-bottom: 12px; }
.times { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.time {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 8px; border-radius: 14px;
  border: 2px solid var(--grey-light); background: var(--white);
  transition: all .15s ease;
}
.time:hover:not(:disabled) { border-color: var(--black); }
.t-time { font-weight: 800; font-size: 17px; color: var(--black); }
.t-hint { font-size: 11px; color: var(--grey); }
.time.is-low .t-hint { color: var(--salsa); font-weight: 600; }
.time.is-off { background: var(--grey-soft); cursor: not-allowed; }
.time.is-off .t-time { color: #A7A9AC; text-decoration: line-through; }
.time.is-selected { background: var(--yellow); border-color: var(--black); }
.time.is-selected .t-hint { color: var(--charcoal); }
.time.skeleton { height: 58px; border-color: transparent; background: linear-gradient(90deg, var(--grey-soft), #fafafa, var(--grey-soft)); background-size: 200% 100%; animation: shimmer 1.2s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.link-btn { background: none; border: 0; padding: 0; text-decoration: underline; font-weight: 600; color: var(--black); }

/* ---------- details ---------- */
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--black); }
.field.full { margin-top: 14px; }
.field small, legend small { font-weight: 400; color: var(--grey); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; border-radius: 12px;
  border: 2px solid var(--grey-light); background: var(--white);
  font-size: 16px; font-weight: 500; color: var(--black);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--black); box-shadow: 0 0 0 4px rgba(255, 218, 0, .45);
}
.field.is-invalid input { border-color: var(--salsa); }
.chips-field { border: 0; padding: 0; margin: 16px 0 0; }
.chips-field legend { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 8px; padding: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 14px; border-radius: 999px;
  border: 2px solid var(--grey-light); background: var(--white);
  font-size: 14px; font-weight: 600;
}
.chip:hover { border-color: var(--black); }
.chip.is-selected { background: var(--black); border-color: var(--black); color: var(--yellow); }

/* ---------- submit ---------- */
.submit-bar {
  position: sticky; bottom: 0; z-index: 5;
  display: flex; align-items: center; gap: 14px;
  margin: 8px -22px -22px; padding: 16px 22px calc(16px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--grey-light);
  border-radius: 0 0 24px 24px;
}
.summary { flex: 1; font-size: 13px; color: var(--grey); line-height: 1.4; }
.summary strong { color: var(--black); font-weight: 700; }
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 800; font-size: 16px;
  text-decoration: none; border: 2px solid var(--black); white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 202, 56, .55); }
.btn-primary:disabled { background: var(--grey-light); border-color: var(--grey-light); color: var(--grey); cursor: not-allowed; }
.btn-ghost { background: var(--white); color: var(--black); }
.spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 3px solid rgba(0, 0, 0, .2); border-top-color: var(--black); animation: spin .8s linear infinite; }
.btn-primary.is-loading { background: var(--yellow) !important; border-color: var(--black) !important; color: var(--black) !important; }
.btn-primary.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-error { margin: 12px 0 8px; padding: 12px 14px; border-radius: 12px; background: #FDE8EC; color: #8C0F27; font-size: 14px; font-weight: 500; }
.form-error a { color: inherit; font-weight: 700; }

/* ---------- confirmation ---------- */
.done { text-align: center; padding: 34px 22px 28px; outline: none; animation: rise .45s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tick { width: 78px; height: 78px; margin: 0 auto 14px; animation: pop .5s .1s cubic-bezier(.2, 1.4, .4, 1) both; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.done h2 { margin: 0 0 20px; font-size: 28px; font-weight: 800; color: var(--black); line-height: 1.15; }
.ticket {
  text-align: left; max-width: 420px; margin: 0 auto;
  background: var(--yellow-20); border: 2px dashed var(--mustard); border-radius: 18px; padding: 8px 18px;
}
.ticket-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--yellow-40); font-size: 15px; }
.ticket-row:last-child { border-bottom: 0; }
.ticket-row span { color: var(--charcoal); }
.ticket-row strong { color: var(--black); text-align: right; }
.done-copy { max-width: 440px; margin: 20px auto; font-size: 15px; }
.done-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.where { margin: 26px auto 0; max-width: 420px; padding-top: 20px; border-top: 1px solid var(--grey-light); font-size: 14px; }
.where p { margin: 4px 0 6px; }
.where a { font-weight: 700; }

/* ---------- footer ---------- */
.foot { text-align: center; padding: 10px 16px 40px; font-size: 13px; color: var(--grey); }
.foot img { border-radius: 8px; margin-bottom: 6px; }
.foot p { margin: 2px 0; }
.foot a { color: var(--charcoal); }

/* ---------- small screens ---------- */
@media (max-width: 560px) {
  .booking, .done { padding-left: 16px; padding-right: 16px; }
  .submit-bar { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; flex-direction: column; align-items: stretch; gap: 10px; }
  .summary { text-align: center; }
  .btn-primary { width: 100%; }
  .fields { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; gap: 10px; }
  .service { min-height: 0; padding: 14px 16px; display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; }
  .service-icon { grid-row: 1 / span 2; width: 36px; height: 36px; margin: 0; }
  .service-meta { font-size: 12.5px; }
  .service-name { font-size: 15px; }
  .times { grid-template-columns: repeat(3, 1fr); }
  .logo { width: 124px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- consent and privacy ---------- */
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 18px; padding: 14px 16px;
  background: var(--grey-soft); border-radius: 14px;
  font-size: 14px; color: var(--charcoal); cursor: pointer;
}
.consent input { flex: 0 0 22px; width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--black); cursor: pointer; }
.consent small { color: var(--grey); }
.privacy-note { margin: 18px 0 4px; font-size: 12px; line-height: 1.55; color: var(--grey); }
.privacy-note a { color: var(--charcoal); font-weight: 600; }

/* ---------- policy page ---------- */
.policy { text-align: left; }
.policy h2 { font-size: 24px; }
.policy h3 { margin: 22px 0 6px; font-size: 16px; color: var(--black); }
.policy p, .policy li { font-size: 15px; }
.policy ul { padding-left: 20px; }

.req { color: var(--salsa); font-style: normal; font-weight: 800; }
.req-note { margin: -6px 0 14px; font-size: 13px; color: var(--grey); }
.field.is-invalid span { color: var(--salsa); }
.field-help { display: block; margin-top: 2px; font-size: 12px; font-weight: 400; color: var(--grey); }

/* ---------- change booking ---------- */
.change-banner { background: #FFF6C2; border-left: 6px solid var(--yellow); border-radius: 14px; padding: 16px 18px; margin: 0 0 18px; color: var(--black); }
.change-banner strong { display: block; font-size: 16px; }
.change-banner p { margin: 6px 0 8px; font-size: 14px; line-height: 1.55; }
.done-actions.stack { flex-direction: column; align-items: stretch; }
button.btn-ghost { font-family: inherit; cursor: pointer; }
.btn-ghost.is-loading .spinner { display: inline-block; }
.btn-ghost:hover:not(:disabled) { background: var(--grey-soft); }
.cal-actions a { white-space: normal; text-align: center; }
@media (max-width: 600px) { .cal-actions { flex-direction: column; align-items: stretch; } }
