:root {
  --petrol: #00827f;
  --petrol-dark: #006562;
  --coral: #ff614b;
  --lemon: #d9ee55;
  --ink: #242039;
  --cream: #fff8eb;
  --white: #fff;
  --mist: #d9ece7;
  --line: rgba(36, 32, 57, .2);
  --shadow: 0 18px 55px rgba(36, 32, 57, .12);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--cream); color: var(--ink); font: 400 1rem/1.65 var(--body); }
body, button, input, select, textarea { font-family: var(--body); }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font-size: 1rem; }
button, a, input, select, textarea, summary { outline-offset: 4px; }
:focus-visible { outline: 3px solid var(--ink); }
[hidden] { display: none !important; }
[id] { scroll-margin-top: 7rem; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 1000; top: 1rem; left: 1rem; padding: .8rem 1rem; transform: translateY(-180%); background: var(--white); color: var(--ink); border: 3px solid var(--ink); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.preview-bar { position: relative; z-index: 101; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .4rem 1.2rem; padding: .35rem 1rem; background: var(--ink); color: var(--white); text-align: center; font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.preview-bar__next { color: var(--lemon); }
.preview-bar__social { display: inline-flex; gap: 1rem; }
.preview-bar__social a { color: var(--white); text-decoration: none; border-bottom: 2px solid var(--coral); }
.preview-bar__social .is-muted { color: #8b8798; }
.site-header { position: sticky; z-index: 100; top: 0; display: flex; align-items: center; justify-content: space-between; min-height: 74px; padding: .65rem clamp(1rem, 4vw, 3.75rem); border-bottom: 2px solid var(--ink); background: rgba(255, 248, 235, .95); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); text-decoration: none; font: 900 clamp(.9rem, 2vw, 1.08rem)/1 var(--display); letter-spacing: -.025em; text-transform: uppercase; }
.brand img { object-fit: contain; }
.brand__logo { height: 44px; width: auto; max-width: min(50vw, 360px); }
.brand__mark { display: none; height: 42px; width: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.35rem); }
.site-nav a { position: relative; min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 4px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 10px; border: 2px solid var(--ink); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 3px; margin: 4px 0; border-radius: 3px; background: currentColor; transition: transform .2s, opacity .2s; }

.section-pad { padding: clamp(4.5rem, 9vw, 9rem) max(1rem, calc((100vw - var(--max)) / 2)); }
.eyebrow, .kicker { margin: 0 0 1rem; font-size: .78rem; font-weight: 900; letter-spacing: .15em; line-height: 1.3; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 900; letter-spacing: -.065em; line-height: .89; text-transform: uppercase; }
h2 { margin-bottom: 2rem; font-size: clamp(3rem, 7vw, 6.8rem); }
h3 { line-height: 1.12; }
.prose { max-width: 700px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.prose p:last-child { margin-bottom: 0; }

.hero { position: relative; isolation: isolate; min-height: min(860px, calc(100vh - 74px)); display: grid; grid-template-columns: minmax(320px, .82fr) minmax(540px, 1.18fr); align-items: stretch; background: var(--cream); border-bottom: 2px solid var(--ink); }
.hero::before, .hero::after { content: ""; position: absolute; z-index: -1; width: 180px; height: 180px; border: 10px solid var(--mist); border-radius: 50%; opacity: .7; }
.hero::before { left: -110px; top: 34%; }
.hero::after { right: -105px; bottom: 5%; }
.hero__art { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; padding: clamp(2rem, 4vw, 3.5rem); overflow: hidden; min-height: 500px; background: var(--petrol); border-right: 2px solid var(--ink); }
.hero__art::before { content: ""; position: absolute; inset: 7%; border: 2px solid rgba(255,255,255,.44); border-radius: 45% 55% 63% 37% / 57% 35% 65% 43%; transform: rotate(-8deg); }
.hero__art img { position: relative; z-index: 2; }
.hero__logo { width: min(70%, 312px); height: auto; filter: drop-shadow(0 18px 0 rgba(0,0,0,.12)); }
.hero__truck { width: min(88%, 520px); height: auto; filter: drop-shadow(0 16px 0 rgba(0,0,0,.1)); }
.steam { position: absolute; top: 9%; width: 38px; height: 130px; border-left: 9px solid var(--lemon); border-radius: 50%; opacity: .95; transform: rotate(-8deg); }
.steam--one { left: 28%; }
.steam--two { left: 39%; top: 5%; height: 105px; }
.hero__content { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 7vw, 7rem); }
.hero__content::after { content: ""; position: absolute; top: 9%; right: 6%; width: 62px; height: 62px; background: repeating-conic-gradient(var(--coral) 0 10deg, transparent 10deg 24deg); border-radius: 50%; opacity: .8; }
.kicker { color: var(--petrol-dark); }
.hero h1 { margin: 0 0 1.35rem; font-size: clamp(3.2rem, 7.6vw, 6.8rem); }
.hero h1 span { display: block; }
.hero h1 span:first-child { color: var(--petrol); }
.hero h1 span:last-child { color: var(--ink); }
.hero__tagline { margin: -.7rem 0 1.4rem; color: var(--petrol-dark); font: 800 clamp(.95rem, 1.8vw, 1.2rem)/1.25 var(--body); letter-spacing: .04em; text-transform: uppercase; }
.date-band { align-self: flex-start; position: relative; margin: 0 0 1.4rem; padding: .15em .22em .13em; background: var(--lemon); color: var(--petrol-dark); font: 900 clamp(2.65rem, 6.6vw, 7rem)/.95 var(--display); letter-spacing: -.075em; transform: rotate(-1.2deg); }
.date-band strong { position: absolute; right: -1.55em; bottom: -.12em; padding: .18em .28em; background: var(--coral); color: var(--ink); font-size: .35em; letter-spacing: -.02em; transform: rotate(5deg); }
.location { display: flex; flex-direction: column; margin: 0 0 1.3rem; font-family: var(--display); line-height: .88; letter-spacing: -.055em; text-transform: uppercase; }
.location strong { color: var(--petrol); font-size: clamp(3rem, 6.5vw, 6.8rem); }
.location span { margin-top: .9rem; color: var(--ink); font: 800 .9rem/1.3 var(--body); letter-spacing: .03em; }
.free-badge { position: absolute; z-index: 1; top: 10%; right: 9%; max-width: 9ch; margin: 0; padding: .75rem 1rem; background: var(--coral); color: var(--ink); box-shadow: 7px 7px 0 var(--ink); font: 900 clamp(1.1rem, 2.2vw, 2rem)/.92 var(--display); text-align: center; text-transform: uppercase; transform: rotate(5deg); }
.hero__intro { max-width: 610px; margin: 0 0 1.6rem; font-size: clamp(1.02rem, 1.5vw, 1.22rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.15rem; border: 2px solid var(--ink); border-radius: 0; box-shadow: none; text-decoration: none; font-size: .88rem; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.button--ink { background: var(--ink); color: var(--white); }
.button--outline { background: var(--cream); color: var(--ink); }
.button--coral { background: var(--coral); color: var(--ink); }

.intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 8vw, 9rem); align-items: center; }
.intro h2 { margin-bottom: 0; color: var(--petrol); }
.intro .prose p:first-child::first-letter { float: left; margin: .12em .12em 0 0; color: var(--coral); font: 900 3.2em/.7 var(--display); }

.times { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.times::before { content: ""; position: absolute; right: -5rem; top: -8rem; width: 28rem; height: 28rem; border: 2px solid rgba(217, 238, 85, .35); border-radius: 48%; transform: rotate(21deg); }
.times h2 { max-width: 900px; color: var(--lemon); }
.times-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.time-card { min-height: 265px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.25rem, 3vw, 2.25rem); border: 2px solid var(--white); background: rgba(255,255,255,.035); }
.time-card:nth-child(2) { background: var(--petrol); }
.time-card:nth-child(3) { background: var(--coral); color: var(--ink); }
.time-card__number { margin-bottom: auto; color: var(--lemon); font: 900 3.6rem/1 var(--display); opacity: .9; }
.time-card:nth-child(3) .time-card__number { color: var(--ink); }
.time-card p { margin: 0; font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.time-card h3 { margin: .45rem 0 .1rem; font: 900 clamp(1.8rem, 3vw, 3.1rem)/1 var(--display); letter-spacing: -.05em; }
.time-card strong { font-size: 1.05rem; }
.address-line { position: relative; margin: 2rem 0 0; font-size: 1.05rem; }

.lineup { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, .6fr); gap: 3rem; align-items: end; }
.section-heading h2 { margin-bottom: 0; color: var(--petrol); }
.section-heading > p { max-width: 450px; margin-bottom: 1.3rem; font-size: 1.15rem; }
.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin: 3rem 0 2rem; padding-bottom: 1.1rem; border-bottom: 2px solid var(--ink); }
.filter-button { min-height: 44px; padding: .65rem 1rem; border: 2px solid var(--ink); background: transparent; color: var(--ink); font-weight: 850; cursor: pointer; }
.filter-button:hover, .filter-button.is-active { background: var(--ink); color: var(--white); }
.lineup-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.lineup-card { display: flex; flex-direction: column; min-width: 0; border: 2px solid var(--ink); background: var(--white); box-shadow: 8px 8px 0 var(--ink); }
.lineup-card__media { position: relative; overflow: hidden; aspect-ratio: 1.45; display: grid; place-items: center; background: var(--petrol); border-bottom: 2px solid var(--ink); }
.lineup-card:nth-child(3n+2) .lineup-card__media { background: var(--lemon); }
.lineup-card:nth-child(3n+3) .lineup-card__media { background: var(--coral); }
.lineup-card__media img { width: 100%; height: 100%; object-fit: cover; }
.lineup-card__index { position: relative; z-index: 2; color: var(--cream); font: 900 clamp(3.5rem, 7vw, 7rem)/1 var(--display); }
.lineup-card:nth-child(3n+2) .lineup-card__index, .lineup-card:nth-child(3n+3) .lineup-card__index { color: var(--ink); }
.lineup-card__shape { position: absolute; width: 58%; aspect-ratio: 1; border: 3px solid currentColor; border-radius: 50% 20% 55% 30%; color: rgba(255,255,255,.4); transform: rotate(22deg); }
.lineup-card__body { flex: 1; padding: 1.25rem; }
.lineup-card__category { margin-bottom: .55rem; color: var(--petrol-dark); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.lineup-card h3 { margin-bottom: .7rem; font: 900 clamp(1.45rem, 2.6vw, 2.2rem)/1 var(--display); letter-spacing: -.045em; text-transform: uppercase; overflow-wrap: anywhere; }
.tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: 1rem 0; padding: 0; list-style: none; }
.tags li { padding: .25rem .5rem; background: var(--mist); font-size: .75rem; font-weight: 750; }
.preview-chip { display: inline-flex; margin-top: .5rem; padding: .25rem .45rem; border: 1px solid var(--ink); background: var(--cream); font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.text-link { display: inline-flex; gap: .35rem; align-items: center; margin-top: .5rem; font-weight: 850; text-decoration-thickness: 2px; }
.lineup-empty { margin-top: 2.5rem; padding: clamp(2rem, 5vw, 4rem); border: 2px dashed var(--petrol); text-align: center; }
.lineup-empty > span { color: var(--coral); font-size: 3rem; }
.lineup-empty h3 { margin: .3rem 0; font: 900 clamp(2rem, 5vw, 4rem)/1 var(--display); text-transform: uppercase; }

.apply { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(520px, 1.3fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; background: var(--petrol); color: var(--white); }
.apply__intro { position: sticky; top: 7rem; }
.apply h2 { color: var(--lemon); font-size: clamp(2.5rem, 4.6vw, 4.4rem); }
.apply__intro > p:not(.eyebrow) { max-width: 48ch; font-size: 1.12rem; }
.notice { margin-top: 2rem; padding: 1rem; border: 2px solid var(--ink); background: var(--coral); color: var(--ink); box-shadow: 7px 7px 0 var(--ink); transform: rotate(-1deg); }
.notice strong { font-family: var(--display); text-transform: uppercase; }
.notice p { margin: .25rem 0 0; }
.application-form { padding: clamp(1.15rem, 4vw, 3rem); background: var(--cream); color: var(--ink); border: 2px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); }
fieldset { min-width: 0; margin: 0 0 2.5rem; padding: 0; border: 0; }
legend { width: 100%; margin-bottom: 1rem; padding-bottom: .55rem; border-bottom: 2px solid var(--ink); font: 900 1.22rem/1.2 var(--display); text-transform: uppercase; }
.choice-grid, .check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
.choice-card, .check-card { position: relative; display: block; cursor: pointer; }
.choice-card input, .check-card input { position: absolute; left: .9rem; top: 1.05rem; width: 1.15rem; height: 1.15rem; accent-color: var(--petrol-dark); }
.choice-card span, .check-card span { min-height: 100%; display: flex; flex-direction: column; padding: .85rem .85rem .85rem 2.7rem; border: 2px solid var(--ink); background: var(--white); }
.choice-card input:checked + span, .check-card input:checked + span { background: var(--lemon); box-shadow: 4px 4px 0 var(--ink); }
.choice-card input:focus-visible + span, .check-card input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 3px; }
.choice-card small, .check-card small { margin-top: .3rem; line-height: 1.35; }
.choice-card.is-disabled { opacity: .55; cursor: not-allowed; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { margin-bottom: 1rem; }
.field--wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .35rem; font-weight: 800; }
.field > small { display: block; margin: -.15rem 0 .4rem; color: #514d65; }
input, select, textarea { width: 100%; min-height: 48px; padding: .68rem .75rem; border: 2px solid var(--ink); border-radius: 0; background: var(--white); color: var(--ink); }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--petrol-dark); box-shadow: 4px 4px 0 var(--lemon); }
.field-error { margin: .32rem 0 0; color: #9c190d; font-size: .86rem; font-weight: 750; }
.form-errors, .form-success { margin-bottom: 1.5rem; padding: 1rem; border: 2px solid var(--ink); }
.form-errors { background: #ffe2dc; }
.form-success { background: var(--lemon); color: var(--ink); }
.form-errors p, .form-success p { margin-bottom: 0; }
.form-errors strong, .form-success strong { display: block; margin-bottom: .35rem; font-family: var(--display); text-transform: uppercase; }
.details-panel { margin: 0 0 2rem; border: 2px solid var(--ink); background: var(--white); }
.details-panel summary { min-height: 52px; padding: .75rem 1rem; background: var(--mist); font-weight: 850; cursor: pointer; }
.details-panel summary span { font-weight: 500; }
.details-panel > div { padding: 1rem; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: .65rem; align-items: start; margin: 1.2rem 0; }
.consent input { width: 22px; min-height: 22px; height: 22px; padding: 0; accent-color: var(--petrol-dark); }
.form-footnote, .dev-note { margin: .75rem 0 0; font-size: .8rem; }
.dev-note { padding: .55rem .7rem; border-left: 5px solid var(--coral); background: #fff1c8; color: var(--ink); font-weight: 700; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.about { position: relative; background: var(--lemon); color: var(--ink); }
.about::after { content: "✦"; position: absolute; right: 6vw; top: 1.5rem; color: var(--coral); font-size: clamp(5rem, 12vw, 12rem); line-height: 1; }
.about__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 7vw, 8rem); align-items: end; }
.about h2 { margin: 0; max-width: 900px; }
.about__organizer { margin: 1.4rem 0 0; padding: .8rem 1rem; border-left: 5px solid var(--petrol); background: rgba(255,255,255,.45); font-weight: 800; }
.about__organizer a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.editor-note { padding: .8rem 1rem; border: 2px solid var(--ink); background: var(--cream); font-size: .87rem; font-weight: 700; }

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 8vw, 8rem); align-items: center; }
.contact h2 { color: var(--petrol); }
.contact-card { padding: clamp(1.5rem, 4vw, 3.5rem); border: 2px solid var(--ink); background: var(--coral); box-shadow: 12px 12px 0 var(--ink); transform: rotate(1.5deg); }
.contact-card__label { margin-bottom: 2rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-card h3 { margin-bottom: .7rem; font: 900 clamp(2rem, 4vw, 4.2rem)/.95 var(--display); letter-spacing: -.05em; text-transform: uppercase; }
.route-options { display: grid; gap: .5rem; margin-top: 1.6rem; }
.route-options__label { margin: 0 0 .2rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.route-options__link { display: inline-flex; align-items: center; gap: .3rem; width: fit-content; padding-bottom: 2px; color: var(--ink); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--ink); }
.route-options__link:hover { color: var(--white); background: var(--ink); }

.newsletter { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 8vw, 8rem); align-items: center; background: var(--coral); color: var(--ink); }
.newsletter h2 { margin-bottom: 1rem; }
.newsletter-form { padding: clamp(1.2rem, 3vw, 2.5rem); border: 2px solid var(--ink); background: var(--cream); box-shadow: 10px 10px 0 var(--ink); }
.newsletter-form__row { display: grid; grid-template-columns: 1fr auto; gap: .7rem; align-items: end; }
.newsletter-form__row .field { margin: 0; }

.site-footer { padding: 3rem max(1rem, calc((100vw - var(--max)) / 2)); background: var(--ink); color: var(--white); text-align: center; }
.site-footer__brand { display: flex; justify-content: center; align-items: center; gap: .7rem; margin-bottom: 1rem; color: var(--lemon); font: 900 1.25rem/1 var(--display); text-transform: uppercase; }
.site-footer__brand img { width: min(210px, 74vw); height: auto; filter: drop-shadow(0 4px 0 rgba(255,255,255,.2)); }
.site-footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; }
.site-footer__social a { color: var(--lemon); font-weight: 800; }
.site-footer__social a:hover { text-decoration: underline; }
.site-footer__small { margin: 0; color: #d9d5e5; font-size: .78rem; }

.legal-page { min-height: 100vh; }
.legal-header { padding: 1.5rem max(1rem, calc((100vw - 900px) / 2)); border-bottom: 2px solid var(--ink); }
.legal-header a { font-weight: 850; }
.legal-content { max-width: 900px; margin: 0 auto; padding: clamp(4rem, 10vw, 8rem) 1rem; }
.legal-content h1 { color: var(--petrol); font-size: clamp(3.5rem, 9vw, 8rem); }
.legal-content h2 { margin-top: 2.5rem; font-size: 2rem; letter-spacing: -.03em; text-transform: none; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: .75fr 1.25fr; }
  .hero__content { padding-inline: 3.5rem; }
  .hero h1 { font-size: clamp(2.9rem, 7.5vw, 5.4rem); }
  .free-badge { top: 5%; }
  .lineup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .apply { grid-template-columns: .65fr 1.35fr; }
}

@media (max-width: 820px) {
  [id] { scroll-margin-top: 5.5rem; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1rem 1rem; border-bottom: 2px solid var(--ink); background: var(--cream); }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: center; border-bottom: 1px solid var(--line); }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero__art { order: 2; min-height: 370px; border: 0; border-top: 2px solid var(--ink); }
  .hero__logo { width: min(65%, 240px); }
  .hero__truck { width: min(86%, 440px); }
  .hero__content { order: 1; padding: 5rem max(1rem, 5vw) 3.5rem; }
  .free-badge { top: 2rem; right: 1.5rem; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .date-band { font-size: clamp(2.55rem, 12vw, 5rem); }
  .location strong { font-size: clamp(3rem, 13vw, 5.5rem); }
  .intro, .apply, .about__grid, .contact, .newsletter, .section-heading { grid-template-columns: 1fr; }
  .times-grid { grid-template-columns: 1fr; }
  .time-card { min-height: 220px; }
  .apply__intro { position: static; }
  .section-heading { gap: 0; }
  .about::after { opacity: .25; }
  .newsletter-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .preview-bar { font-size: .66rem; }
  .site-header { min-height: 66px; padding-inline: .8rem; }
  .brand__logo { display: none; }
  .brand__mark { display: block; }
  .section-pad { padding-block: 4rem; }
  h2 { font-size: clamp(2.75rem, 16vw, 4.6rem); }
  .hero__content { padding-top: 6.4rem; }
  .hero__content::after { display: none; }
  .hero h1 { font-size: clamp(2.5rem, 14vw, 3.6rem); }
  .date-band { white-space: nowrap; font-size: clamp(2.15rem, 11.5vw, 3.6rem); }
  .date-band strong { right: -.45em; bottom: -.75em; }
  .free-badge { top: 1.35rem; right: 1.2rem; font-size: 1rem; }
  .hero__art { min-height: 300px; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .lineup-grid { grid-template-columns: 1fr; }
  .filters { flex-wrap: nowrap; overflow-x: auto; margin-right: -1rem; padding-right: 1rem; }
  .filter-button { flex: 0 0 auto; }
  .application-form { margin-inline: 0; padding: 1rem; box-shadow: 7px 7px 0 var(--ink); }
  .choice-grid, .check-grid, .form-grid { grid-template-columns: 1fr; }
  .contact-card { box-shadow: 7px 7px 0 var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .button-row, .apply, .newsletter, .site-footer, .filters, .preview-bar { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: 0; border: 0; }
  .hero__art { display: none; }
  .hero__content { padding: 1rem; }
  .section-pad { padding: 2rem 1rem; }
}

