/* =============================================================================
   DeWayne's Events — public site. Photo-forward, warm botanical; Fraunces display.
   Brand-consistent with the admin (Fraunces + green), but marketing-warm.
   ============================================================================= */

:root {
    --ground: #FAFAF7;
    --surface: #FFFFFF;
    --ink: #172033;
    --ink-soft: #5B6472;
    /* --ink-faint darkened #8A90A0 (~3.2:1) → #6B7280 (~4.8:1 on white) for WCAG 1.4.3.
       Reserved for de-emphasised-but-readable text; disabled controls may still use it. */
    --ink-faint: #6B7280;
    --line: #E4E7EF;
    --primary: #2B4FB5;
    --primary-deep: #1E3A82;
    --primary-tint: #E9EDF8;
    /* --field-border: resting input border ≥3:1 on white for WCAG 1.4.11 (was #C7CCDA ~1.6:1). */
    --field-border: #7A8299;
    /* Urgency accents darkened for ≥4.5:1 with white badge text / on white (WCAG 1.4.3):
       bloom #C65C7C → #B23A5E, honey #B8801F → #9A6410. */
    --bloom: #B23A5E;
    --honey: #9A6410;
    --slate: #6B7A70;

    --radius: 14px;
    --radius-sm: 9px;
    --shadow: 0 1px 2px rgba(27,46,34,.05), 0 10px 26px rgba(27,46,34,.06);
    --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --serif: "Fraunces", Georgia, "Times New Roman", serif;
    --wrap: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
    background: var(--ground); color: var(--ink); font-family: var(--sans);
    font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased;
    display: flex; flex-direction: column; min-height: 100vh;
}
main { flex: 1; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0; }

/* ── Masthead ────────────────────────────────────────────────────────────── */
.masthead { background: var(--surface); border-bottom: 1px solid var(--line); }
.masthead__inner {
    max-width: var(--wrap); margin: 0 auto; padding: 0 24px; height: 68px;
    display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand__logo { height: 46px; width: auto; display: block; }
.brand__events { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 23px; color: var(--primary); }
.masthead__all { color: var(--ink-soft); font-size: 14px; font-weight: 500; }

/* ── Page intro ──────────────────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.intro { padding: 48px 0 30px; }
.intro__title { font-size: clamp(32px, 5vw, 46px); letter-spacing: -.015em; }
.intro__lead { color: var(--ink-soft); font-size: 18px; margin-top: 10px; max-width: 60ch; }

/* ── Listing: Upcoming + Earlier-events sections ─────────────────────────── */
.listing { padding-bottom: 64px; }
.sec-head { display: flex; align-items: baseline; gap: 12px; margin: 40px 0 18px; }
.sec-head--first { margin-top: 26px; }
.sec-head__title { font-size: 24px; letter-spacing: -.01em; }
.sec-head__count { color: var(--ink-faint); font-size: 14px; font-weight: 500; }
.nothingupcoming { color: var(--ink-soft); font-size: 16px; padding: 22px 0 2px; }

/* "Happening now" — a quiet live signal in brand blue; the ring pulse is the one bit of
   non-user-triggered motion on the page, and it's dropped under reduced-motion. */
.sec-head--now .sec-head__title { display: inline-flex; align-items: center; gap: 10px; }
.live-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--primary); position: relative; flex: none; }
.live-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 999px; border: 2px solid var(--primary); opacity: .6; animation: live-pulse 1.8s ease-out infinite; }
@keyframes live-pulse { 0% { transform: scale(.55); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .live-dot::after { animation: none; opacity: 0; } }

/* ── Event grid + cards ──────────────────────────────────────────────────── */
/* min(300px, 100%) so a single card never exceeds the viewport on a narrow phone (no h-scroll). */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 26px; }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .14s ease, box-shadow .14s ease; }
.card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: 0 2px 4px rgba(27,46,34,.06), 0 18px 36px rgba(27,46,34,.10); }
.card__photo { aspect-ratio: 16 / 10; background: var(--primary-tint) center/cover no-repeat; position: relative; overflow: hidden; }
.card__photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card__photo--empty { display: flex; align-items: center; justify-content: center; color: var(--primary); font-family: var(--serif); font-size: 44px; opacity: .5; }
.card__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__date { color: var(--primary); font-weight: 600; font-size: 13.5px; }
.card__title { font-size: 21px; color: var(--ink); }
.card__meta { color: var(--ink-soft); font-size: 14px; }
.card__snippet { color: var(--ink-soft); font-size: 14.5px; margin-top: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Past ("Earlier events") card: a quiet archive tone — photo desaturates, date turns slate.
   The photo filter is scoped to the image/fleuron so the "Past" chip over it stays crisp. */
.card--past .card__photo-img { filter: grayscale(.55) brightness(1.02); }
.card--past .card__photo--empty { color: var(--slate); }
.card--past .card__date { color: var(--slate); }

/* ── Badges ──────────────────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; color: #fff; background: var(--slate); box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.badge--few { background: var(--bloom); }
.badge--soon { background: var(--honey); }
.badge--full { background: var(--slate); }
.badge--past { background: var(--slate); }

/* ── Empty ───────────────────────────────────────────────────────────────── */
.empty { text-align: center; padding: 80px 24px; color: var(--ink-soft); }
.empty__title { font-size: 26px; margin-bottom: 8px; }

/* ── Detail page ─────────────────────────────────────────────────────────── */
.herowrap { max-width: var(--wrap); margin: 0 auto; padding: 24px 24px 0; }
.hero { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center; background: var(--primary-tint); border-radius: var(--radius); }
.hero--empty { display: flex; align-items: center; justify-content: center; color: var(--primary); font-family: var(--serif); font-size: 64px; opacity: .45; }
.detail { max-width: 780px; margin: 0 auto; padding: 0 24px 72px; }
.detail__head { padding: 30px 0 4px; }
.detail__title { font-size: clamp(30px, 4.5vw, 42px); letter-spacing: -.015em; }
.detail__facts { display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--ink-soft); font-size: 16px; margin-top: 14px; }
.detail__facts b { color: var(--ink); font-weight: 600; }
.crumb { display: inline-block; color: var(--ink-soft); font-size: 14px; padding: 22px 0 0; }
.prose { font-size: 17px; line-height: 1.65; color: #2C3A31; margin-top: 22px; white-space: pre-wrap; }

.goodtoknow { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin-top: 28px; }
.goodtoknow__label { font-family: var(--serif); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.goodtoknow__body { color: var(--ink-soft); white-space: pre-wrap; }

/* ── Slot picker ─────────────────────────────────────────────────────────── */
.slots { margin-top: 34px; }
.slots__label { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; }
.slots__hint { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 16px; }
.slot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 10px; }
.slot__when { font-weight: 600; }
.slot__remain { color: var(--ink-soft); font-size: 14px; margin-top: 2px; }
.slot__remain--few { color: var(--bloom); font-weight: 600; }
/* Dim only the disabled control, never the informational time / "Full" text (WCAG 1.4.3). */
.slot--full .btn--full { opacity: .6; }

.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 11px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-deep); color: #fff; text-decoration: none; }
.btn--full { background: var(--ground); color: var(--ink-faint); border-color: var(--line); cursor: not-allowed; }
.btn--sm { padding: 8px 15px; font-size: 14px; }

.closed { margin-top: 30px; padding: 18px 20px; border-radius: var(--radius-sm); background: var(--primary-tint); color: var(--primary-deep); font-weight: 500; }

/* Information-only event: a calm, welcoming note where the slot picker would be. Deliberately warm
   and botanical (the ❧ fleuron + slate accent), NOT the blue status tone of .closed — this is an
   invitation, not a closed/unavailable message. */
.dropin { margin-top: 34px; display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; border: 1px solid var(--line); border-left: 3px solid var(--slate); border-radius: var(--radius-sm); background: var(--surface); }
.dropin__mark { font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--slate); flex: 0 0 auto; }
.dropin__title { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.dropin__body { color: var(--ink-soft); font-size: 15px; margin: 0; }

.actions { display: flex; gap: 12px; align-items: center; margin-top: 30px; }
.sharebtn { background: none; border: 1px solid var(--line); color: var(--ink); border-radius: 999px; padding: 10px 16px; font: inherit; font-weight: 600; font-size: 14px; cursor: pointer; }
.sharebtn:hover { background: var(--surface); }

/* ── More events strip ───────────────────────────────────────────────────── */
.more { border-top: 1px solid var(--line); background: var(--surface); }
.more__inner { max-width: var(--wrap); margin: 0 auto; padding: 40px 24px 60px; }
.more__label { font-family: var(--serif); font-size: 22px; margin-bottom: 18px; }

/* ── Signup flow ─────────────────────────────────────────────────────────── */
.signup { max-width: 460px; margin: 0 auto; padding: 24px 20px 72px; }
.signup__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 26px 30px; margin-top: 12px; }
.signup__event { border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 20px; }
.signup__eventlabel { color: var(--ink-faint); font-size: 12.5px; font-weight: 600; }
.signup__eventtitle { font-family: var(--serif); font-weight: 600; font-size: 20px; margin-top: 4px; }
.signup__eventwhen { color: var(--primary); font-weight: 600; font-size: 14px; margin-top: 3px; }
.signup__title { font-size: 24px; margin-bottom: 6px; }
.signup__lead { color: var(--ink-soft); font-size: 15px; margin: 0 0 20px; }
.signup__fine { color: var(--ink-faint); font-size: 12.5px; margin-top: 14px; line-height: 1.45; }

.fld { margin-bottom: 16px; }
.fld__label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.fld__opt { color: var(--ink-faint); font-weight: 400; }
.fld__input { width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--surface); border: 1px solid var(--field-border); border-radius: var(--radius-sm); padding: 12px 13px; }
.fld__input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-tint); }
.fld__input--code { font-size: 26px; letter-spacing: .35em; text-align: center; font-weight: 600; }
/* Spot-count picker: native <select> restyled to match .fld__input, with a chevron drawn in brand ink. */
.fld__select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23172033' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 13px center; }

.btn--block { width: 100%; margin-top: 4px; }
.cf-turnstile { margin: 4px 0 16px; }

.formalert { background: #F7E9EC; color: #9A3B54; border: 1px solid #E6C3CC; border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14.5px; margin-bottom: 18px; }

.linkbtn { background: none; border: none; color: var(--ink-soft); font: inherit; font-size: 14px; text-decoration: underline; cursor: pointer; padding: 0; }
.signup__resend { text-align: center; margin-top: 16px; }

.signup__done { text-align: center; padding: 8px 0; }
.signup__donetick { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--primary-tint); color: var(--primary); font-size: 30px; display: flex; align-items: center; justify-content: center; }
.signup__donetitle { font-size: 26px; margin-bottom: 8px; }
.signup__done p { color: var(--ink-soft); margin-bottom: 22px; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer__brand { text-align: center; padding: 26px 24px 0; }
.footer__brand img { height: 48px; width: auto; display: inline-block; }
.footer__inner { max-width: var(--wrap); margin: 0 auto; padding: 12px 24px 26px; color: var(--ink-faint); font-size: 13.5px; display: flex; gap: 10px; align-items: center; justify-content: center; }
.footer__dot { color: var(--line); }

/* ── Accessibility: skip link, focus, reduced motion ─────────────────────── */
/* Visually-hidden skip link that reveals itself on keyboard focus (WCAG 2.4.1). */
.skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 1000;
    background: var(--primary-deep); color: #fff; text-decoration: none;
    font-weight: 600; font-size: 14px; padding: 10px 16px; border-radius: var(--radius-sm);
    transition: top .12s ease;
}
.skip-link:focus, .skip-link:focus-visible { top: 12px; text-decoration: none; color: #fff; }

/* Explicit keyboard focus ring on every interactive control (WCAG 2.4.7). ≥3:1 vs
   surrounding surfaces via --primary-deep; never suppressed globally. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.card:focus-visible,
.crumb:focus-visible,
.sharebtn:focus-visible,
.linkbtn:focus-visible,
.masthead__all:focus-visible,
.brand:focus-visible,
.skip-link:focus-visible,
.fld__input:focus-visible {
    outline: 3px solid var(--primary-deep);
    outline-offset: 2px;
}
/* Programmatic focus target for the skip link shouldn't paint a ring around the whole region. */
main:focus { outline: none; }

/* Honour a reduced-motion preference: neutralise the card hover-lift and any transitions. */
@media (prefers-reduced-motion: reduce) {
    .card { transition: none; }
    .card:hover { transform: none; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Error page ──────────────────────────────────────────────────────────── */
.errorpage { padding: 64px 24px 80px; max-width: 640px; }
.errorpage__title { font-size: clamp(28px, 4.5vw, 40px); letter-spacing: -.015em; }
.errorpage__lead { color: var(--ink-soft); font-size: 18px; margin: 12px 0 24px; max-width: 60ch; }
.errorpage__ref { color: var(--ink-soft); font-size: 14px; margin: 0 0 24px; }
.errorpage__ref code { font-size: 13px; }

/* Inline field / verification error text near submit (WCAG 3.3.1 / 4.1.3). */
.fld__error { color: #9A3B54; font-size: 14px; margin-top: 6px; }

/* ── Ticket page (spec §3.4) ─────────────────────────────────────────────── */
/* A real admission pass: an info half and a QR "stub" divided by a punched
   tear-line. The perforation is the one bold, subject-specific device here —
   everything else reuses the site's quiet card language. */
.ticketpage { max-width: 440px; margin: 0 auto; padding: 34px 24px 72px; }
.ticketpage__lead { text-align: center; color: var(--ink-soft); font-size: 15px; margin: 0 0 20px; }

.ticket {
    position: relative;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.ticket__top { padding: 28px 28px 24px; }
.ticket__kind { color: var(--primary); font-weight: 600; font-size: 13px; margin: 0 0 6px; }
.ticket__event { font-family: var(--serif); font-size: clamp(24px, 6vw, 30px); letter-spacing: -.015em; color: var(--ink); }

.ticket__facts { margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.ticket__fact { display: flex; gap: 14px; align-items: baseline; }
.ticket__fact dt { flex: 0 0 66px; color: var(--ink-faint); font-size: 13px; font-weight: 600; margin: 0; }
.ticket__fact dd { margin: 0; color: var(--ink); font-size: 16px; font-weight: 500; }

.ticket__admit {
    margin-top: 22px; padding: 14px 18px;
    background: var(--primary-tint); border-radius: var(--radius-sm);
    display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.ticket__admit-label { color: var(--primary-deep); font-size: 13px; font-weight: 600; }
.ticket__admit-name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }

/* Tear-line: a dashed rule across the middle with a ground-coloured notch punched
   into each edge. The notches straddle the ticket's sides to read as cut-outs. */
.ticket__perf {
    position: relative; height: 26px;
    background-image: repeating-linear-gradient(to right, var(--line) 0 7px, transparent 7px 14px);
    background-repeat: no-repeat; background-position: center;
    background-size: calc(100% - 52px) 2px;
}
.ticket__perf::before, .ticket__perf::after {
    content: ""; position: absolute; top: 50%; transform: translateY(-50%);
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--ground); border: 1px solid var(--line);
}
.ticket__perf::before { left: -14px; }
.ticket__perf::after { right: -14px; }

.ticket__stub { padding: 6px 28px 30px; text-align: center; }
.ticket__qr {
    width: 210px; max-width: 100%; aspect-ratio: 1; margin: 0 auto;
    padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.ticket__qr svg { display: block; width: 100%; height: 100%; }
.ticket__qrcaption { color: var(--ink-soft); font-weight: 600; font-size: 14.5px; margin: 14px 0 0; }
.ticket__code { color: var(--ink-faint); font-size: 12px; letter-spacing: .03em; margin: 6px 0 0; word-break: break-all; }

.ticket__actions { text-align: center; margin-top: 24px; }
.ticket__print { min-width: 220px; }

/* ── Print: strip site chrome, keep just the pass (reliable "save as PDF"). ── */
@media print {
    .masthead, .footer, .skip-link, .ticketpage__lead, .ticket__actions { display: none !important; }
    body { background: #fff; }
    main { flex: none; }
    .ticketpage { padding: 0; max-width: 460px; }
    .ticket {
        box-shadow: none; border: 1px solid #000;
        break-inside: avoid; page-break-inside: avoid;
        -webkit-print-color-adjust: exact; print-color-adjust: exact;
    }
    .ticket__perf::before, .ticket__perf::after { background: #fff; }
    .ticket__admit { background: #fff; border: 1px solid var(--line); }
}

/* ── Small screens ───────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    /* Reclaim edge space and trim desktop-sized vertical padding on phones. */
    .masthead__inner, .wrap, .more__inner, .footer__inner,
    .detail, .signup, .ticketpage { padding-left: 16px; padding-right: 16px; }
    .intro { padding-top: 28px; padding-bottom: 22px; }
    /* Tighter masthead so logo + wordmark + link never crowd on a narrow device. */
    .masthead__inner { height: 60px; }
    .brand__logo { height: 38px; }
    .brand__events { font-size: 19px; }
    .grid { gap: 18px; }
    .signup__card { padding: 22px 20px 26px; }
}

@media (max-width: 560px) {
    .slot { flex-direction: column; align-items: stretch; }
    .slot .btn { width: 100%; }
}

/* ── Event alerts: discovery entry points (nav, footer, homepage CTA, poster) ── */
/* All gated on Alerts:Enabled server-side, so these never render when the /Alerts page is off. */
.masthead__nav { display: flex; align-items: center; gap: 20px; }
.masthead__alerts { color: var(--primary); font-size: 14px; font-weight: 600; }

/* Homepage call-to-action band — the main on-site invitation, styled in the site's blue-tint. */
.alertband {
    margin: 8px 0 56px; background: var(--primary-tint); border: 1px solid #D4DDF3;
    border-radius: var(--radius); padding: 26px 28px;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.alertband__mark {
    flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%;
    background: var(--surface); border: 1px solid #D4DDF3; color: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.alertband__mark svg { width: 26px; height: 26px; display: block; }
.alertband__txt { flex: 1 1 320px; }
.alertband__title { font-size: 23px; color: var(--ink); }
.alertband__lead { margin: 5px 0 0; color: var(--ink-soft); font-size: 15px; max-width: 52ch; }

/* Print-ready signage poster (/alerts/poster): a scannable in-store card. */
.poster { max-width: 520px; margin: 0 auto; padding: 40px 24px 72px; text-align: center; }
.poster__card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 40px 36px 44px;
}
.poster__kicker { font-family: var(--serif); font-style: italic; color: var(--primary); font-size: 20px; }
.poster__title {
    font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 6vw, 38px);
    color: var(--ink); letter-spacing: -.015em; line-height: 1.1; margin: 6px 0 26px; text-wrap: balance;
}
.poster__qr {
    width: 230px; max-width: 72%; aspect-ratio: 1; margin: 0 auto; background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px;
}
.poster__qr svg { display: block; width: 100%; height: 100%; }
.poster__scan { font-weight: 600; font-size: 16px; color: var(--ink); margin: 22px 0 2px; }
.poster__url { color: var(--primary); font-weight: 600; font-size: 18px; word-break: break-word; }
.poster__actions { margin-top: 26px; }

@media (max-width: 640px) {
    .masthead__nav { gap: 14px; }
    .alertband { padding: 22px 20px; }
}

/* Print: strip site chrome so the poster prints clean as an in-store sign. */
@media print {
    .masthead, .footer, .skip-link, .poster__actions { display: none !important; }
    body { background: #fff; }
    main { flex: none; }
    .poster { padding: 12px; }
    .poster__card { box-shadow: none; border: 1px solid var(--line); break-inside: avoid; }
}
