/* Rundlepalooza — backyard BBQ / street party */

:root {
  --cream: #fbf3e2;
  --paper: #fffaf0;
  --ink: #2b1d16;
  --ink-soft: #5b4a40;
  --tomato: #d9412b;
  --tomato-deep: #a82d1b;
  --mustard: #f2b33d;
  --mustard-soft: #fbe3a8;
  --grass: #3d7a3a;
  --grass-deep: #2b5a2a;
  --sky: #5aa6c9;
  --chalk: #22302a;
  --chalk-line: #f7efdc;
  --radius: 14px;
  --shadow: 4px 4px 0 var(--ink);
  --shadow-lg: 6px 6px 0 var(--ink);
  --display: 'Shrikhand', 'Georgia', serif;
  --slab: 'Alfa Slab One', 'Rockwell', 'Georgia', serif;
  --hand: 'Caveat', 'Comic Sans MS', cursive;
  --body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 17px/1.55 var(--body);
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: var(--tomato-deep); text-underline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }

.sr-only, .hp {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 8px; }
.skip:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }

/* ---------- rain banner ---------- */
.rain-banner {
  position: sticky; top: 0; z-index: 50;
  background: repeating-linear-gradient(-45deg, var(--sky), var(--sky) 14px, #4b93b4 14px, #4b93b4 28px);
  color: #fff; text-align: center; padding: 12px 16px; font-size: 15px;
  border-bottom: 3px solid var(--ink);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* ---------- bunting ---------- */
.bunting {
  height: 38px;
  background:
    linear-gradient(var(--ink), var(--ink)) top / 100% 2px no-repeat,
    conic-gradient(from 150deg at 50% 0, transparent 0, var(--tomato) 0 60deg, transparent 0) 0 2px / 176px 36px repeat-x,
    conic-gradient(from 150deg at 50% 0, transparent 0, var(--mustard) 0 60deg, transparent 0) 44px 2px / 176px 36px repeat-x,
    conic-gradient(from 150deg at 50% 0, transparent 0, var(--grass) 0 60deg, transparent 0) 88px 2px / 176px 36px repeat-x,
    conic-gradient(from 150deg at 50% 0, transparent 0, var(--sky) 0 60deg, transparent 0) 132px 2px / 176px 36px repeat-x;
  filter: drop-shadow(0 2px 0 rgba(43,29,22,.25));
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(242,179,61,.45) 0 90px, transparent 91px),
    radial-gradient(circle at 10% 85%, rgba(217,65,43,.12) 0 140px, transparent 141px),
    var(--cream);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.hero::after {
  /* grass fringe */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 18px;
  background:
    radial-gradient(circle at 50% 100%, var(--grass) 0 9px, transparent 10px) 0 6px / 18px 18px repeat-x,
    linear-gradient(var(--grass), var(--grass)) bottom / 100% 6px no-repeat;
}
.hero-inner { max-width: 760px; margin: 0 auto; padding: 28px 16px 56px; text-align: center; }

.kicker {
  display: inline-block; font: 700 22px/1 var(--hand); color: var(--tomato-deep);
  transform: rotate(-3deg); margin: 6px 0 4px;
}
.wordmark {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(46px, 14.5vw, 112px); line-height: .95; letter-spacing: -.5px;
  color: var(--tomato);
  text-shadow: 3px 3px 0 var(--ink);
  -webkit-text-stroke: 1.5px var(--ink);
  margin: 0 0 6px;
  overflow-wrap: anywhere;
}
.wordmark span { color: var(--mustard); display: inline-block; }
.tagline { font: 700 clamp(26px, 7vw, 34px)/1.1 var(--hand); color: var(--ink); margin: 6px 0 22px; }

.hero-facts {
  margin: 0 auto 10px; display: grid; gap: 10px; max-width: 560px;
  text-align: left;
}
.hero-facts > div {
  display: grid; grid-template-columns: 78px 1fr; align-items: baseline; gap: 10px;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 12px;
  padding: 10px 14px; box-shadow: 3px 3px 0 var(--ink);
}
.hero-facts dt { font: 400 13px/1 var(--slab); text-transform: uppercase; letter-spacing: 1px; color: var(--tomato); }
.hero-facts dd { margin: 0; font-weight: 700; }
.hero-facts a { color: var(--ink); }
.rain-note { font: 700 21px/1.2 var(--hand); color: var(--ink-soft); margin: 6px 0 20px; }
.rain-note.is-active { color: var(--grass-deep); }

.countdown { margin: 0 auto 26px; }
.countdown-label { font: 700 24px/1 var(--hand); color: var(--tomato-deep); margin: 0 0 10px; }
.countdown-units { display: flex; justify-content: center; gap: 10px; }
.cd-unit {
  width: 96px; padding: 12px 6px 10px; border-radius: 14px;
  background: var(--ink); color: var(--cream); box-shadow: 4px 4px 0 var(--tomato);
  display: grid; gap: 6px; position: relative; overflow: hidden;
}
.cd-unit::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: rgba(251,243,226,.12); }
.cd-num { font: 400 44px/1 var(--slab); color: var(--mustard); font-variant-numeric: tabular-nums; }
.cd-name { font: 400 12px/1 var(--slab); text-transform: uppercase; letter-spacing: 1.2px; }
@media (min-width: 560px) {
  .cd-unit { width: 116px; }
  .cd-num { font-size: 54px; }
}
.countdown-live {
  display: inline-block; margin: 0; padding: 12px 20px; border-radius: 14px; background: var(--tomato); color: #fff;
  border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); font: 400 20px/1.2 var(--slab); transform: rotate(-1.5deg);
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.headcount {
  margin: 26px auto 0; display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--cream); border-radius: 999px; padding: 8px 20px 8px 8px;
  transform: rotate(-1.5deg);
}
.headcount-num {
  display: grid; place-items: center; min-width: 52px; height: 52px; padding: 0 8px; border-radius: 999px;
  background: var(--mustard); color: var(--ink); font: 400 26px/1 var(--slab);
}
.headcount-label { font: 700 22px/1 var(--hand); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 12px 22px;
  font: 400 17px/1 var(--slab); letter-spacing: .3px; text-decoration: none;
  border: 2.5px solid var(--ink); border-radius: 12px; cursor: pointer; white-space: nowrap;
  box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--tomato); color: #fff; }
.btn-ghost { background: var(--paper); color: var(--ink); }
.btn-mustard { background: var(--mustard); color: var(--ink); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------- jump nav ---------- */
.jump {
  position: sticky; top: 0; z-index: 40;
  display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none;
  padding: 10px 16px; background: var(--tomato); border-bottom: 3px solid var(--ink);
}
.jump::-webkit-scrollbar { display: none; }
.jump a {
  flex: 0 0 auto; color: #fff; text-decoration: none; font: 400 14px/1 var(--slab);
  padding: 9px 13px; border-radius: 999px; border: 2px solid transparent;
}
.jump a:hover, .jump a:focus-visible { border-color: #fff; }
@media (min-width: 720px) { .jump { justify-content: center; } }
body.rainy .jump { top: var(--banner-h, 0px); }

/* ---------- sections ---------- */
.section { padding: 56px 16px; max-width: 1040px; margin: 0 auto; scroll-margin-top: 64px; }
.section-grass, .section-gingham { max-width: none; }
.section-grass > *, .section-gingham > * { max-width: 1040px; margin-left: auto; margin-right: auto; }

.section-title {
  font: 400 clamp(32px, 9vw, 52px)/1 var(--display);
  text-align: center; margin: 0 0 28px; color: var(--ink);
}
.section-title span {
  display: inline-block; padding: 6px 18px 10px;
  background: var(--mustard); border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: var(--shadow); transform: rotate(-2deg);
}
.section-title-tight { margin-bottom: 16px; }
.lede { text-align: center; max-width: 640px; margin: 0 auto 28px; font-size: 18px; }
.sub { font: 400 22px/1.1 var(--slab); margin: 0 0 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.panel {
  background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 22px 18px; box-shadow: var(--shadow-lg);
}

/* ---------- what's happening ---------- */
.cards { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cards { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
.card-tilt-l { transform: rotate(-1deg); }
.card-tilt-r { transform: rotate(1deg); }
.card-feature { background: var(--tomato); color: #fff; }
.card-feature h3 { color: var(--mustard); }
.card-icon { font-size: 36px; line-height: 1; margin-bottom: 8px; }
.card h3 { font: 400 22px/1.1 var(--slab); margin-bottom: 6px; }
.card p { margin: 0; }

.timeline {
  list-style: none; margin: 0 auto; padding: 0; max-width: 640px; position: relative;
}
.timeline::before {
  content: ""; position: absolute; left: 13px; top: 14px; bottom: 14px; width: 4px;
  background: repeating-linear-gradient(var(--ink) 0 8px, transparent 8px 14px);
}
.timeline li { position: relative; padding: 6px 0 18px 48px; display: grid; gap: 2px; }
.timeline li::before {
  content: ""; position: absolute; left: 3px; top: 8px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--mustard); border: 3px solid var(--ink);
}
.timeline li.tl-hot::before { background: var(--tomato); }
.tl-time { font: 400 20px/1.2 var(--slab); }
.tl-hot .tl-time { color: var(--tomato); }
.tl-what { color: var(--ink-soft); }

/* ---------- tournament ---------- */
.section-grass {
  background:
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.5px) 0 0 / 12px 12px,
    linear-gradient(var(--grass), var(--grass-deep));
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  color: var(--ink);
}
.section-grass > .lede { color: #fff; }
.section-grass .panel { color: var(--ink); }
.t-grid { display: grid; gap: 22px; }
@media (min-width: 820px) { .t-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.toggle { border: 0; padding: 0; margin: 0 0 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.toggle legend { font-weight: 700; margin-bottom: 8px; padding: 0; float: left; width: 100%; }
.toggle label { flex: 1 1 0; min-width: 110px; position: relative; }
.toggle input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.toggle span {
  display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 8px 12px;
  border: 2.5px solid var(--ink); border-radius: 12px; background: #fff; font: 400 16px/1 var(--slab);
  transition: background .12s;
}
.toggle input:checked + span { background: var(--mustard); box-shadow: 3px 3px 0 var(--ink); }
.toggle input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 2px; }

.field { display: block; margin: 0 0 14px; }
.field > span { display: block; font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.field em { color: var(--tomato); font-style: normal; }
.field small { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 17px; color: var(--ink);
  background: #fff; border: 2.5px solid var(--ink); border-radius: 10px; padding: 11px 12px; min-height: 48px;
  appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px; background-repeat: no-repeat; padding-right: 36px;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(90,166,201,.35); }
.field-narrow input { max-width: 140px; }
.field.invalid input, .field.invalid select { border-color: var(--tomato); background: #fff4f1; }

.check { display: flex; gap: 12px; align-items: center; margin: 4px 0 16px; cursor: pointer; font-weight: 700; }
.check input { width: 26px; height: 26px; accent-color: var(--tomato); flex: 0 0 auto; }

.hint { background: var(--mustard-soft); border: 2px dashed var(--ink); border-radius: 10px; padding: 10px 12px; font-weight: 500; }
.notice { background: var(--mustard-soft); border: 2.5px solid var(--ink); border-radius: 10px; padding: 12px 14px; font-weight: 700; margin-bottom: 14px; }

.form-msg { min-height: 1.2em; margin: 4px 0 12px; font-weight: 700; }
.form-msg.error { color: var(--tomato-deep); }
.form-msg.ok { color: var(--grass-deep); }

.similar {
  margin: -6px 0 14px; padding: 8px 12px; border-radius: 10px;
  background: var(--mustard-soft); border: 2px solid var(--mustard); font-weight: 500; font-size: 15px;
}

.panel-board { background: var(--chalk); color: var(--chalk-line) !important; }
.panel-board .sub { color: #fff; }
.count-pill {
  font: 400 14px/1 var(--slab); background: var(--mustard); color: var(--ink);
  padding: 6px 10px; border-radius: 999px; border: 2px solid var(--ink);
}
.meter { height: 12px; border-radius: 999px; background: rgba(255,255,255,.15); overflow: hidden; margin: 0 0 18px; }
.meter-fill { height: 100%; width: 0; background: repeating-linear-gradient(-45deg, var(--mustard) 0 8px, #e39f22 8px 16px); transition: width .4s ease; }
.list-head { font: 400 16px/1 var(--slab); color: var(--mustard); margin: 12px 0 10px; display: flex; gap: 8px; align-items: center; }
.list-head span { font: 700 13px/1 var(--body); background: rgba(255,255,255,.15); padding: 4px 8px; border-radius: 999px; color: #fff; }
.entry-list { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 8px; }
.entry-list li { border-bottom: 1px dashed rgba(247,239,220,.3); padding: 4px 0 8px; }
.entry-list li:last-child { border-bottom: 0; }
.entry-list .team-name { font: 700 24px/1.1 var(--hand); color: #fff; display: block; }
.entry-list .team-players { font-size: 14px; opacity: .8; }
.entry-list .empty { font-style: italic; opacity: .7; border: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { border: 2px solid rgba(247,239,220,.5); border-radius: 999px; padding: 4px 12px; font: 700 20px/1.1 var(--hand); }
.chips li.empty { border: 0; padding: 0; font: italic 400 16px/1.4 var(--body); }

/* champion */
.champion {
  margin: 0 auto 26px; padding: 6px; border-radius: 20px; background:
    repeating-conic-gradient(from 0deg, var(--mustard) 0 10deg, var(--tomato) 10deg 20deg);
  border: 3px solid var(--ink); box-shadow: var(--shadow-lg); max-width: 640px;
  animation: pop .6s cubic-bezier(.2,1.6,.4,1) both;
}
.champion-inner { background: var(--paper); border: 3px solid var(--ink); border-radius: 14px; padding: 20px 16px; text-align: center; }
.champion-kicker { font: 400 15px/1.2 var(--slab); color: var(--tomato); margin: 0 0 6px; text-transform: uppercase; letter-spacing: .5px; }
.champion-name { font: 400 clamp(34px, 10vw, 56px)/1 var(--display); margin: 0 0 6px; color: var(--ink); overflow-wrap: anywhere; }
.champion-players { font: 700 24px/1.1 var(--hand); margin: 0; color: var(--ink-soft); }
@keyframes pop { from { transform: scale(.7) rotate(-4deg); opacity: 0; } to { transform: none; opacity: 1; } }

/* bracket */
.bracket-wrap { background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 0 8px; margin-bottom: 26px; }
.bracket-wrap .sub { padding: 0 18px; }
.live-dot { font: 700 12px/1 var(--body); text-transform: uppercase; letter-spacing: 1px; color: var(--tomato); display: inline-flex; align-items: center; gap: 6px; }
.live-dot::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--tomato); animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .25; } }
.bracket-scroll { overflow-x: auto; padding: 4px 18px 14px; -webkit-overflow-scrolling: touch; }
.bracket { display: flex; gap: 26px; min-width: min-content; }
.round { display: flex; flex-direction: column; min-width: 190px; flex: 0 0 190px; }
.round-title { font: 400 14px/1 var(--slab); text-transform: uppercase; letter-spacing: .6px; color: var(--tomato); margin: 0 0 10px; white-space: nowrap; }
.round-matches { display: flex; flex-direction: column; justify-content: space-around; flex: 1; gap: 14px; }
.match { border: 2.5px solid var(--ink); border-radius: 10px; background: #fff; overflow: hidden; position: relative; }
.match.is-bye { opacity: .55; border-style: dashed; }
.slot {
  display: flex; align-items: center; justify-content: space-between; gap: 6px; width: 100%;
  min-height: 42px; padding: 8px 10px; font: 500 15px/1.2 var(--body); color: var(--ink);
  background: transparent; border: 0; text-align: left;
}
.slot + .slot { border-top: 2px dashed rgba(43,29,22,.35); }
.slot small { display: block; font-size: 12px; color: var(--ink-soft); font-weight: 400; }
.slot.is-tbd, .slot.is-empty { color: #9b8b80; font-style: italic; }
.slot.is-winner { background: var(--mustard); font-weight: 700; }
.slot.is-winner::after { content: "✓"; font-weight: 700; }
.slot.is-loser { color: #9b8b80; text-decoration: line-through; text-decoration-thickness: 2px; }
button.slot { cursor: pointer; }
button.slot:hover:not(:disabled) { background: var(--mustard-soft); }
button.slot:disabled { cursor: default; }

/* ---------- potluck menu ---------- */
.menu-board {
  max-width: 760px; margin: 0 auto; padding: 30px 20px 26px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.06), transparent 60%),
    var(--chalk);
  color: var(--chalk-line);
  border: 12px solid #8a5a32; border-radius: 10px;
  box-shadow: inset 0 0 0 3px var(--ink), 0 0 0 3px var(--ink), 8px 8px 0 3px var(--ink);
  outline: 2px solid #6b4221; outline-offset: -8px;
}
.menu-head { text-align: center; font: 700 30px/1 var(--hand); color: var(--mustard); margin: 0 0 18px; }
.menu-house { border: 2px dashed rgba(247,239,220,.5); border-radius: 10px; padding: 12px 14px 4px; margin: 0 0 24px; background: rgba(242,179,61,.08); }
.menu-house-label { font: 400 13px/1 var(--slab); text-transform: uppercase; letter-spacing: 1.5px; color: var(--mustard); margin: 0 0 8px; }
.menu-cat { margin: 0 0 22px; }
.menu-cat h3 {
  font: 400 26px/1 var(--display); color: #fff; text-align: center; margin: 0 0 12px;
  display: flex; align-items: center; gap: 12px;
}
.menu-cat h3::before, .menu-cat h3::after { content: ""; flex: 1; height: 2px; background: rgba(247,239,220,.35); }
.menu-item { display: flex; align-items: baseline; gap: 8px; margin: 0 0 8px; }
.mi-dish { font: 700 23px/1.15 var(--hand); color: #fff; min-width: 0; overflow-wrap: anywhere; }
.mi-dots { flex: 1; border-bottom: 2px dotted rgba(247,239,220,.45); transform: translateY(-5px); min-width: 16px; }
.mi-by { font-size: 14px; color: var(--mustard-soft); white-space: nowrap; font-style: italic; }
.menu-empty { text-align: center; font: 700 20px/1.2 var(--hand); opacity: .6; margin: 0 0 8px; }
.menu-foot { text-align: center; margin: 12px 0 0; font-size: 15px; opacity: .85; }
.menu-foot a { color: var(--mustard); }

/* ---------- rsvp ---------- */
.section-gingham {
  background-color: #fff;
  background-image:
    linear-gradient(90deg, rgba(217,65,43,.45) 50%, transparent 50%),
    linear-gradient(rgba(217,65,43,.45) 50%, transparent 50%);
  background-size: 48px 48px;
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
}
.panel-rsvp { max-width: 600px; padding: 28px 18px; }
@media (min-width: 560px) { .panel-rsvp { padding: 32px 30px; } }

.people { border: 0; padding: 0; margin: 0 0 18px; }
.people legend { font-weight: 700; font-size: 15px; padding: 0; margin-bottom: 2px; }
.people legend em { color: var(--tomato); font-style: normal; }
.people-hint { font-size: 14px; color: var(--ink-soft); margin: 0 0 10px; }
.people-list { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 8px; counter-reset: person; }
.person { display: flex; gap: 8px; align-items: center; counter-increment: person; }
.person::before {
  content: counter(person); flex: 0 0 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--mustard); border: 2px solid var(--ink); font: 400 14px/1 var(--slab);
}
.person input {
  flex: 1; min-width: 0; font: inherit; font-size: 17px; color: var(--ink); background: #fff;
  border: 2.5px solid var(--ink); border-radius: 10px; padding: 10px 12px; min-height: 48px;
}
.person input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(90,166,201,.35); }
.person.invalid input { border-color: var(--tomato); background: #fff4f1; }
.person-remove {
  flex: 0 0 44px; height: 44px; border-radius: 10px; border: 2.5px solid var(--ink); background: #fff;
  font: 700 20px/1 var(--body); color: var(--tomato-deep); cursor: pointer;
}
.person-remove:hover { background: #fff4f1; }
.btn-sm { min-height: 40px; padding: 8px 14px; font-size: 14px; box-shadow: 3px 3px 0 var(--ink); }

/* ---------- faq ---------- */
.faq { max-width: 720px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 52px 16px 18px; font: 400 18px/1.25 var(--slab); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%;
  background: var(--mustard); border: 2px solid var(--ink); font: 700 20px/1 var(--body);
}
.faq details[open] summary::after { content: "−"; background: var(--tomato); color: #fff; }
.faq details p { margin: 0; padding: 0 18px 18px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--cream); text-align: center; padding: 0 16px 36px; }
.bunting-foot { margin: 0 -16px 22px; filter: none; }
.footer-mark { font: 400 30px/1 var(--display); color: var(--mustard); margin: 0 0 8px; }
.footer p { margin-bottom: 4px; }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 20px; z-index: 60; transform: translate(-50%, calc(100% + 40px)); visibility: hidden;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 12px; font-weight: 700;
  max-width: calc(100vw - 32px); box-shadow: 4px 4px 0 var(--mustard); transition: transform .25s ease, visibility .25s;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); visibility: visible; }
