:root {
  color-scheme: dark;
  --ink: #f8faf7;
  --muted: #a8b8be;
  --night: #07121d;
  --night-2: #0b1c28;
  --panel: rgba(13, 37, 50, 0.74);
  --line: rgba(218, 235, 233, 0.16);
  --red: #ff4d4d;
  --red-dark: #bf1f31;
  --gold: #ffd166;
  --mint: #81e6c3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 77, 77, 0.13), transparent 27rem),
    radial-gradient(circle at 85% 26%, rgba(129, 230, 195, 0.08), transparent 25rem),
    linear-gradient(180deg, var(--night), #061019 70%, #08141c);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(rgba(255,255,255,.48) .7px, transparent .7px);
  background-size: 27px 27px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a { color: inherit; }

button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: .75rem 1rem;
  color: #061019;
  background: var(--gold);
  border-radius: .5rem;
}

.skip-link:focus { top: 1rem; }

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--night);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 209, 102, .3);
}

.local-label {
  display: flex;
  gap: .45rem;
  align-items: center;
  color: var(--muted);
  font-size: .875rem;
}

.pulse {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 .25rem rgba(129, 230, 195, .12);
}

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 10vw, 8.5rem) 0 clamp(4rem, 9vw, 7rem);
  text-align: center;
}

.eyebrow,
.kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, p { text-wrap: balance; }

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.75rem, 8vw, 6.75rem);
  font-weight: 820;
  letter-spacing: -.065em;
  line-height: .95;
}

.answer {
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.countdown {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  max-width: 960px;
  margin: 3rem auto 0;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.count-card {
  display: flex;
  min-height: 170px;
  padding: 1.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.count-card:first-child { border-left: 0; }

.count-card-main {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
}

.count-value {
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 850;
  letter-spacing: -.06em;
  line-height: 1;
}

.count-card:not(.count-card-main) .count-value { color: var(--gold); }

.count-unit {
  margin-top: .7rem;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 820px;
  margin: 1.5rem auto 0;
}

.quick-facts div {
  display: flex;
  gap: .45rem;
  align-items: baseline;
  justify-content: center;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.quick-facts div:last-child { border-right: 0; }
.quick-facts strong { color: var(--ink); font-size: 1.2rem; }
.quick-facts span { font-size: .86rem; }

.actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: .75rem 1.05rem;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: .8rem;
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button-primary { background: var(--red); box-shadow: 0 10px 28px rgba(255,77,77,.22); }
.button-secondary { background: transparent; border-color: var(--line); }
.button-secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }

.date-line {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: .88rem;
}

.noscript-note {
  max-width: 640px;
  margin: 1rem auto 0;
  padding: .9rem 1rem;
  color: var(--ink);
  background: rgba(255, 209, 102, .1);
  border: 1px solid rgba(255, 209, 102, .28);
  border-radius: .8rem;
}

.planner,
.explainer,
.reference,
.deadline,
.related,
.faq,
.sleep-ideas,
.carrier-section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading { max-width: 680px; }

.section-intro {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--muted);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.milestone {
  position: relative;
  min-height: 210px;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.milestone::after {
  content: attr(data-number);
  position: absolute;
  right: -.35rem;
  bottom: -2.4rem;
  color: rgba(255,255,255,.035);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.milestone.is-now { border-color: rgba(255,209,102,.65); box-shadow: inset 0 0 0 1px rgba(255,209,102,.18); }
.milestone-badge { color: var(--gold); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.milestone h3 { margin: 1.1rem 0 .5rem; font-size: 1.25rem; }
.milestone p { margin: 0; color: var(--muted); }

.explainer {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 8vw, 7rem);
}

.explainer-copy { color: var(--muted); }
.explainer-copy p:first-child { margin-top: 0; }
.explainer-copy strong { color: var(--ink); }

.table-wrap {
  margin-top: 2.25rem;
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

table { width: 100%; border-collapse: collapse; }
th, td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); }
thead th { color: var(--gold); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody td { color: var(--muted); }

.deadline {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(2rem, 8vw, 6rem);
  align-items: center;
}

.deadline-tool {
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255,77,77,.13), var(--panel));
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.deadline-tool label { display: block; margin-bottom: .55rem; font-weight: 720; }
.deadline-tool select {
  width: 100%;
  min-height: 48px;
  padding: .7rem .85rem;
  color: var(--ink);
  background: var(--night-2);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: .75rem;
  font: inherit;
}
.deadline-tool select:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.deadline-result { margin: 1.15rem 0 0; color: var(--muted); }
.deadline-result strong { display: block; color: var(--gold); font-size: 1.2rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.related-grid a {
  display: flex;
  min-height: 150px;
  padding: 1.35rem;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  transition: transform .18s ease, border-color .18s ease;
}
.related-grid a:hover { transform: translateY(-3px); border-color: rgba(255,209,102,.55); }
.related-grid span { color: var(--gold); font-size: .78rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.related-grid strong { font-size: 1.2rem; }

.event-main { max-width: 920px; }
.event-hero { padding: clamp(4rem, 10vw, 8rem) 0; text-align: center; }
.event-hero h1 { font-size: clamp(2.7rem, 8vw, 5.8rem); }
.event-answer { margin: 1.3rem auto 0; color: var(--muted); font-size: 1.15rem; }
.event-countdown { grid-template-columns: repeat(4, 1fr); }
.event-copy { padding: clamp(3.5rem, 8vw, 6rem) 0; border-top: 1px solid var(--line); }
.event-copy h2 { margin-bottom: 1.25rem; }
.event-copy p { max-width: 720px; color: var(--muted); }
.event-nav { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }
.event-nav a { padding: .65rem .85rem; text-decoration: none; border: 1px solid var(--line); border-radius: .7rem; }
.event-nav a:hover { border-color: var(--gold); }

.sleep-hero {
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}

.sleep-hero h1 { font-size: clamp(2.7rem, 7vw, 5.6rem); }

.sleep-counter {
  display: flex;
  max-width: 720px;
  min-height: 250px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.sleep-counter strong {
  font-size: clamp(5rem, 18vw, 10rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.08em;
  line-height: .82;
}

.sleep-counter span {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mini-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 620px;
  margin: 1.5rem auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.mini-countdown div { padding: 1rem .6rem; border-right: 1px solid var(--line); }
.mini-countdown div:last-child { border-right: 0; }
.mini-countdown strong { display: block; color: var(--gold); font-size: 1.35rem; font-variant-numeric: tabular-nums; }
.mini-countdown span { color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.shipping-hero {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.shipping-hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
}

.shipping-lede { max-width: 560px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.1rem; }
.verified-label { color: var(--muted); font-size: .82rem; }

.shipping-calculator {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: linear-gradient(145deg, rgba(255,77,77,.12), var(--panel));
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
}

.calculator-heading h2 { margin: .5rem 0 0; font-size: clamp(1.65rem, 3vw, 2.35rem); }

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin-top: 1.5rem;
}

.field-grid label { color: var(--muted); font-size: .85rem; font-weight: 700; }
.field-grid input,
.field-grid select {
  width: 100%;
  min-height: 48px;
  margin-top: .4rem;
  padding: .7rem .8rem;
  color: var(--ink);
  background: var(--night-2);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: .72rem;
  font: inherit;
  color-scheme: dark;
}
.field-wide { grid-column: 1 / -1; }

.calculator-result {
  margin-top: 1.25rem;
  padding: 1.15rem;
  background: rgba(255,209,102,.09);
  border: 1px solid rgba(255,209,102,.28);
  border-radius: .9rem;
}
.calculator-result span,
.calculator-result small { display: block; color: var(--muted); }
.calculator-result strong { display: block; margin: .2rem 0; color: var(--gold); font-size: clamp(1.2rem, 3vw, 1.65rem); }
.calculator-caveat { margin: 1rem 0 0; color: var(--muted); font-size: .78rem; }

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}

.carrier-card {
  display: flex;
  min-height: 330px;
  padding: 1.4rem;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
}
.carrier-card.is-published { border-top-color: var(--mint); }
.carrier-card.is-pending { border-top-color: var(--gold); }
.carrier-card-head h3 { margin: 0; font-size: 1.45rem; }
.carrier-card-head span { display: inline-block; margin-top: .35rem; color: var(--mint); font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.carrier-card.is-pending .carrier-card-head span { color: var(--gold); }
.carrier-card p { color: var(--muted); }
.carrier-card a { margin-top: auto; color: var(--gold); font-weight: 750; }
.source-note { margin: 1rem 0 0; color: var(--muted); font-size: .82rem; }

.unit-hero {
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}
.unit-hero h1 { font-size: clamp(2.7rem, 7vw, 5.6rem); }
.unit-counter {
  display: flex;
  max-width: 700px;
  min-height: 230px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}
.unit-counter strong { font-size: clamp(5rem, 18vw, 9.5rem); font-variant-numeric: tabular-nums; letter-spacing: -.08em; line-height: .85; }
.unit-counter span { margin-top: 1.25rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.unit-facts {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  max-width: 620px;
  margin: 1.25rem auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.unit-facts div { padding: 1rem; border-right: 1px solid var(--line); }
.unit-facts div:last-child { border-right: 0; }
.unit-facts strong { display: block; color: var(--gold); font-size: 1.35rem; }
.unit-facts span { color: var(--muted); font-size: .75rem; letter-spacing: .07em; text-transform: uppercase; }
.toggle-row {
  display: flex;
  max-width: 520px;
  margin: 1.25rem auto 0;
  padding: 1rem;
  gap: .85rem;
  align-items: center;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: .9rem;
  cursor: pointer;
}
.toggle-row input { width: 1.25rem; height: 1.25rem; accent-color: var(--red); }
.toggle-row span { display: grid; }
.toggle-row small { color: var(--muted); }
.weekend-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.weekend-list li { display: flex; padding: 1rem; align-items: center; justify-content: space-between; background: var(--panel); border: 1px solid var(--line); border-radius: .85rem; }
.weekend-list span { color: var(--muted); font-size: .8rem; }
.weekend-list strong { color: var(--gold); }

.builder-hero {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.builder-intro h1 { margin: 0; font-size: clamp(3rem, 7vw, 6rem); }
.widget-builder { padding: clamp(1.25rem, 3vw, 2rem); background: var(--panel); border: 1px solid var(--line); border-radius: 1.35rem; box-shadow: var(--shadow); }
.widget-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.widget-options label, .code-label { color: var(--muted); font-size: .85rem; font-weight: 700; }
.widget-options select, #embed-code {
  width: 100%;
  margin-top: .4rem;
  padding: .7rem .8rem;
  color: var(--ink);
  background: var(--night-2);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: .7rem;
  font: inherit;
}
.widget-options select { min-height: 48px; }
.widget-preview { margin: 1rem 0; overflow: hidden; background: #07121d; border: 1px solid var(--line); border-radius: 1rem; }
.widget-preview iframe { display: block; width: 100%; height: 250px; border: 0; }
#embed-code { display: block; resize: vertical; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; }
.widget-builder .button { width: 100%; margin-top: .8rem; }
.copy-status { min-height: 1.5rem; margin: .45rem 0 0; color: var(--mint); font-size: .8rem; }
.header-link { color: var(--gold); font-size: .85rem; font-weight: 750; }

.guide-hero { padding: clamp(4rem, 10vw, 8rem) 0; text-align: center; }
.guide-hero h1 { font-size: clamp(2.8rem, 8vw, 5.8rem); }
.guide-steps { padding: 0 0 clamp(4rem, 8vw, 7rem); }
.guide-steps ol { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.guide-steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.35rem; background: var(--panel); border: 1px solid var(--line); border-radius: 1rem; }
.guide-steps li > span { display: grid; width: 3rem; height: 3rem; place-items: center; color: var(--night); background: var(--gold); border-radius: 50%; font-weight: 850; }
.guide-steps h2 { font-size: 1.35rem; }
.guide-steps p { margin: .45rem 0 0; color: var(--muted); }
code { padding: .12rem .35rem; color: var(--gold); background: rgba(255,209,102,.08); border-radius: .3rem; }

.printable-intro { max-width: 850px; margin-inline: auto; padding: clamp(4rem, 9vw, 7rem) 0 3rem; text-align: center; }
.printable-intro h1 { font-size: clamp(2.8rem, 8vw, 5.8rem); }
.print-sheet { max-width: 850px; min-height: 1050px; margin: 0 auto 5rem; padding: clamp(1.5rem, 5vw, 3.5rem); color: #102c35; background: #fff; border-radius: 1.2rem; box-shadow: var(--shadow); }
.print-sheet-head { text-align: center; }
.print-sheet-head p { margin: 0; color: #b91f35; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.print-sheet-head h2 { margin: .25rem 0; color: #102c35; font-size: clamp(2rem, 5vw, 3.4rem); }
.print-sheet-head span { color: #51666c; }
.ornament-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.5rem; }
.ornament-grid div { position: relative; display: grid; aspect-ratio: 1; place-items: center; border: 3px solid #b91f35; border-radius: 50%; }
.ornament-grid div::before { content: ""; position: absolute; top: -10px; width: 26%; height: 10px; background: #b58a22; border-radius: 3px 3px 0 0; }
.ornament-grid strong { color: #102c35; font-size: clamp(1.5rem, 4vw, 2.4rem); }
.ornament-grid span { position: absolute; bottom: 15%; color: #b91f35; font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.ornament-grid .is-christmas { color: #fff; background: #b91f35; border-color: #b91f35; }
.ornament-grid .is-christmas strong, .ornament-grid .is-christmas span { color: #fff; }
.activity-line { display: flex; gap: .75rem; margin-top: 2.5rem; align-items: flex-end; color: #102c35; font-weight: 750; }
.activity-line i { flex: 1; border-bottom: 2px solid #82959a; }
.print-credit { margin: 2rem 0 0; color: #687c82; font-size: .72rem; text-align: center; }

.faq { max-width: 850px; margin-inline: auto; }
.faq h2 { margin-bottom: 2rem; }

details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 1.3rem 2.5rem 1.3rem 0; cursor: pointer; font-size: 1.05rem; font-weight: 730; }
details p { max-width: 680px; margin: -.5rem 0 1.5rem; color: var(--muted); }

footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .84rem;
}

footer p { margin: 0; }

@media (max-width: 760px) {
  .local-label { max-width: 12rem; justify-content: flex-end; text-align: right; }
  .countdown { grid-template-columns: repeat(3, 1fr); }
  .count-card-main { grid-column: 1 / -1; min-height: 145px; }
  .count-card { min-height: 125px; padding: 1rem .5rem; border-top: 1px solid var(--line); }
  .count-card:nth-child(2) { border-left: 0; }
  .milestone-grid { grid-template-columns: 1fr; }
  .milestone { min-height: 175px; }
  .explainer, .deadline, .shipping-hero, .builder-hero { grid-template-columns: 1fr; gap: 2rem; }
  .carrier-grid { grid-template-columns: 1fr; }
  .carrier-card { min-height: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { min-height: 125px; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); row-gap: .75rem; }
  .quick-facts div:nth-child(2) { border-right: 0; }
  .event-countdown { grid-template-columns: repeat(2, 1fr); }
  .event-countdown .count-card:nth-child(3) { border-left: 0; }
  .weekend-list { grid-template-columns: 1fr; }
  .ornament-grid { gap: .65rem; }
}

@media (max-width: 500px) {
  .site-header, main, footer { width: min(100% - 1.25rem, 1120px); }
  .site-header { min-height: 68px; }
  .brand { font-size: .92rem; }
  .brand-mark { width: 1.75rem; height: 1.75rem; }
  .local-label { font-size: .75rem; }
  .hero { padding-top: 4rem; }
  .count-value { font-size: 2.45rem; }
  .count-card-main .count-value { font-size: 4.5rem; }
  .count-unit { font-size: .65rem; letter-spacing: .09em; }
  .quick-facts span { display: block; font-size: .73rem; }
  .quick-facts div { display: block; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .verified-label { max-width: 9rem; text-align: right; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .mini-countdown { grid-template-columns: repeat(2, 1fr); }
  .mini-countdown div:nth-child(2) { border-right: 0; }
  .mini-countdown div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .widget-options { grid-template-columns: 1fr; }
  .unit-facts { grid-auto-flow: row; grid-auto-columns: auto; }
  .unit-facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .unit-facts div:last-child { border-bottom: 0; }
  .ornament-grid { grid-template-columns: repeat(5, 1fr); gap: .35rem; }
  .ornament-grid div { border-width: 2px; }
  .ornament-grid div::before { top: -6px; height: 6px; }
  .ornament-grid span { display: none; }
  footer { display: block; }
  footer p + p { margin-top: .35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}

@media print {
  @page { size: letter portrait; margin: .35in; }
  body { min-width: 0; color: #000; background: #fff; }
  body::before, .no-print { display: none !important; }
  main { width: 100%; }
  .print-sheet { width: 100%; max-width: none; min-height: 0; margin: 0; padding: .2in; box-shadow: none; border-radius: 0; }
  .print-sheet-head h2 { font-size: 30pt; }
  .ornament-grid { gap: .14in; margin-top: .25in; }
  .ornament-grid div { break-inside: avoid; }
  .print-credit { margin-top: .2in; }
}
