    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    /* ── TOKENS — Flu site: deep burgundy + warm paper ── */
    :root {
      --paper:      #f8f7f5;
      --bg:         #f8f7f5;
      --ink:        #1c1614;   /* deep warm black                                 */
      --ink-2:      #3d2e2a;   /* mid warm brown-gray                             */
      --ink-3:      #8a7570;   /* muted warm gray                                 */
      --rule-soft:    rgba(28,22,20,0.16);
      --rule-faint:   rgba(28,22,20,0.09);
      --rule-section: rgba(28,22,20,0.80);

      --accent:      #6e2035;   /* deep burgundy — serious, illness-adjacent      */
      --accent-soft: rgba(110,32,53,0.12);
      --accent-2:    #b84a20;   /* warm amber-red — urgency, alert                */
      --accent-2-soft: rgba(184,74,32,0.14);

      /* Flu activity severity palette — matches sibling sites */
      --s0: #c8c0bc;   /* none      — warm gray                          */
      --s1: #a8b8a0;   /* very low  — sage gray                          */
      --s2: #5a9e48;   /* low       — green                              */
      --s3: #c9a227;   /* moderate  — amber                              */
      --s4: #c86820;   /* high      — orange                             */
      --s5: #a01828;   /* very high — deep red                           */

      --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
      --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    }

    html, body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--serif);
      font-size: 18px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    body { min-height: 100vh; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    .tnum { font-variant-numeric: tabular-nums; }

    .shell {
      max-width: 880px;
      margin: 0 auto;
      padding: 0 36px;
      min-height: 100vh;
    }

    /* ── MASTHEAD ── */
    .masthead {
      border-bottom: 2px solid var(--accent);
      padding: 28px 0 18px;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 24px;
      flex-wrap: wrap;
    }
    .mast-brand {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
    }
    .mast-date {
      font-family: var(--sans);
      font-style: italic;
      font-size: 14px;
      color: var(--ink-2);
      flex: 1;
      text-align: center;
    }
    .mast-nav { display: flex; gap: 24px; }
    .mast-btn {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-2);
    }
    .mast-btn:hover,
    .mast-btn[aria-current="page"] { color: var(--accent); }

    /* ── HERO ── */
    .hero {
      position: relative;
      padding: 72px 0 60px;
      text-align: center;
      overflow: hidden;
    }
    #heroCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .hero-q {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 18px;
      position: relative;
    }
    .answer {
      font-family: var(--serif);
      font-size: clamp(64px, 14vw, 108px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--accent);
      margin-bottom: 20px;
      position: relative;
    }
    .answer.yes   { color: var(--s5); }
    .answer.no    { color: var(--ink-3); }
    .answer.maybe { color: var(--accent-2); }
    .answer.loading { color: var(--ink-3); font-size: 48px; letter-spacing: 0.2em; }
    .answer.loading .dot { animation: blink 1.2s infinite; display: inline-block; }
    .answer.loading .dot:nth-child(2) { animation-delay: 0.2s; }
    .answer.loading .dot:nth-child(3) { animation-delay: 0.4s; }
    @keyframes blink { 0%,80%,100% { opacity: 0 } 40% { opacity: 1 } }

    /* ── Answer reveal — clock-hand swing ── */
    @keyframes clockDrift {
      0%   { transform: perspective(700px) rotateY(-110deg) translateX(-24px); opacity: 0; }
      12%  { opacity: 1; }
      78%  { transform: perspective(700px) rotateY(4deg)    translateX(1px);   opacity: 1; }
      90%  { transform: perspective(700px) rotateY(-1.5deg) translateX(0);     opacity: 1; }
      100% { transform: perspective(700px) rotateY(0deg)    translateX(0);     opacity: 1; }
    }
    @keyframes subtleFadeUp {
      from { opacity: 0; transform: translateY(5px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .answer.swing-in {
      animation: clockDrift 3.4s cubic-bezier(0.10, 1, 0.24, 1) both;
    }
    .qualifier.swing-in {
      opacity: 0;
      animation: subtleFadeUp 0.7s ease both;
      animation-delay: 2.6s;
    }
    .loc-line.swing-in {
      opacity: 0;
      animation: subtleFadeUp 0.6s ease both;
      animation-delay: 3.0s;
    }

    .qualifier {
      font-family: var(--sans);
      font-size: 17px;
      color: var(--ink-2);
      margin-bottom: 10px;
      position: relative;
    }
    .qualifier.loading { color: var(--ink-3); font-style: italic; }
    .q-level {
      font-weight: 700;
      color: var(--ink);
    }
    .q-place {
      font-weight: 700;
      font-style: italic;
      color: var(--ink);
    }
    .q-place-national {
      font-style: italic;
      color: var(--ink-2);
    }
    .loc-line {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--ink-3);
      position: relative;
    }
    .loc-place {
      color: var(--ink);
      font-weight: 600;
      letter-spacing: 0.01em;
    }
    .loc-sample {
      color: var(--ink-3);
      font-style: italic;
    }
    .hero-loc-bar {
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .hero-loc-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
    }
    .hero-loc-input {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--rule-soft);
      text-align: center;
      font-family: var(--sans);
      font-size: 13px;
      color: var(--ink-2);
      padding: 4px 22px 5px 4px; /* right padding leaves room for pencil */
      width: 220px;
      outline: none;
      transition: border-color 0.15s, color 0.15s;
    }
    .hero-loc-input::placeholder { color: var(--ink-3); }
    .hero-loc-input:focus {
      border-bottom-color: var(--accent);
      color: var(--ink);
    }
    .hero-loc-input:focus + .hero-loc-pencil { opacity: 0; pointer-events: none; }
    .hero-loc-input:disabled {
      color: var(--ink-3);
      font-style: italic;
    }
    .hero-loc-pencil {
      position: absolute;
      right: 2px;
      bottom: 6px;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font-size: 13px;
      color: var(--ink-3);
      line-height: 1;
      transition: opacity 0.15s, color 0.15s;
    }
    .hero-loc-pencil:hover { color: var(--accent); }
    .hero-loc-error {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--accent-2);
    }

    /* ── HBID ── */
    .hbid {
      border-top: 1px solid var(--rule-section);
      padding: 48px 0 40px;
    }
    [hidden] { display: none !important; }

    .hbid-head {
      display: flex;
      align-items: baseline;
      gap: 20px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .hbid-eyebrow {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
    }
    .hbid-severity {
      font-family: var(--sans);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .hbid-sentence {
      font-family: var(--serif);
      font-size: 19px;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 12px;
    }
    .hbid-decision {
      font-size: 17px;
      color: var(--ink-2);
      margin-bottom: 16px;
    }
    .hbid-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .hbid-tag {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: var(--accent-soft);
      color: var(--accent);
      padding: 4px 10px;
      border-radius: 2px;
    }
    .hbid-recs { margin-top: 8px; }
    .hbid-recs-label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 12px;
    }
    .hbid-recs-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }
    .rec-card {
      display: flex;
      flex-direction: column;
      gap: 2px;
      background: white;
      border: 1px solid var(--rule-soft);
      border-radius: 10px;
      padding: 7px 12px;
      font-family: var(--sans);
      font-size: 12px;
      color: var(--ink);
      text-decoration: none;
      min-width: 110px;
      transition: border-color 0.15s;
    }
    .rec-card:hover { border-color: var(--accent); }
    .rec-card-title { font-weight: 600; font-size: 12px; }
    .rec-card-sub { font-size: 10px; color: var(--ink-3); }
    .hbid-recs-disclosure {
      font-family: var(--sans);
      font-size: 11px;
      color: var(--ink-3);
      font-style: italic;
    }

    /* ── SECTIONS ── */
    .section {
      border-top: 1px solid var(--rule-section);
      padding: 48px 0 40px;
    }
    .section-head {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.01em;
      text-transform: none;
      color: var(--accent);
      margin-bottom: 28px;
      display: flex;
      align-items: baseline;
      gap: 12px;
      line-height: 1.2;
    }
    .section-num {
      font-family: var(--serif);
      font-size: 13px;
      font-style: italic;
      font-weight: 400;
      color: var(--ink-3);
      opacity: 0.9;
      letter-spacing: 0;
      text-transform: none;
      flex-shrink: 0;
    }
    .section-sub {
      font-size: 13px;
      font-weight: 400;
      font-family: var(--sans);
      letter-spacing: 0.04em;
      color: var(--ink-3);
      text-transform: uppercase;
    }

    /* ── THIS WEEK ── */
    .this-week-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 24px;
    }
    .tw-card {
      background: white;
      border: 1px solid var(--rule-soft);
      border-radius: 4px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .tw-card-label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--ink-3);
    }
    .tw-card-value {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
      color: var(--ink);
    }
    .tw-card-sub {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--ink-3);
    }
    .tw-trend {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      padding: 10px 16px;
      border-radius: 3px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
    }
    .tw-trend.up   { background: rgba(168,74,32,0.10); color: #a04a20; }
    .tw-trend.down { background: rgba(90,158,72,0.10); color: #3a7e30; }
    .tw-trend.flat { background: rgba(28,22,20,0.06);  color: var(--ink-3); }

    /* ── SEASON CHART (SVG area chart) ── */
    .flu-chart {
      margin-bottom: 8px;
      width: 100%;
    }
    .flu-chart-legend {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .fc-leg {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--ink-3);
    }
    .fc-leg::before {
      content: '';
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 2px;
      flex-shrink: 0;
    }
    .fc-leg-0::before { background: var(--s0); }
    .fc-leg-1::before { background: var(--s1); }
    .fc-leg-2::before { background: var(--s2); }
    .fc-leg-3::before { background: var(--s3); }
    .fc-leg-4::before { background: var(--s4); }
    .fc-leg-5::before { background: var(--s5); }
    .fc-leg-note {
      font-family: var(--sans);
      font-size: 10px;
      color: var(--ink-3);
      font-style: italic;
      margin-left: 4px;
    }

    /* ── SECTION I: TEST BLOCK ── */
    .test-block { padding: 4px 0 8px; }
    .test-verdict {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 14px;
    }
    .tv-no  { background: var(--accent-soft); color: var(--accent); }
    .tv-low { background: rgba(90,158,72,0.12); color: #3a7030; }
    .tv-mid { background: rgba(201,162,39,0.15); color: #7a5a10; }
    .tv-high { background: rgba(168,24,40,0.12); color: var(--accent); }
    .test-headline {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--ink);
      margin-bottom: 10px;
    }
    .test-body {
      font-size: 16px;
      color: var(--ink-2);
      line-height: 1.6;
      margin-bottom: 16px;
      max-width: 640px;
    }
    .test-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .test-link {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
      outline: none;
    }
    .test-link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 3px;
    }
    .test-note {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--ink-3);
    }

    /* ── LAB SIGNAL (inside test block — inline, not a card) ── */
    .lab-signal {
      margin-top: 14px;
      display: flex;
      align-items: baseline;
      gap: 7px;
      flex-wrap: wrap;
    }
    .ls-label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--ink-3);
      white-space: nowrap;
    }
    .lab-signal.ls-warning .ls-label { color: var(--accent-2); }
    .ls-main {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--ink-3);
      line-height: 1.5;
    }
    .ls-main strong { color: var(--ink-2); }
    .lab-signal.ls-warning .ls-main { color: var(--ink-2); }
    .lab-signal.ls-warning .ls-main strong { color: var(--accent-2); }

    /* ── HBID RECAP (season summary for end/off states) ── */
    .hbid-recap {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--rule-soft);
    }
    .recap-label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 12px;
    }
    .recap-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .recap-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      text-align: center;
      padding: 14px 8px;
      border-right: 1px solid var(--rule-soft);
    }
    .recap-stat:last-child { border-right: none; }
    .recap-val {
      font-family: var(--serif);
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
    }
    /* Tint the peak-level value with its severity color */
    .recap-val.s2 { color: var(--s2); }
    .recap-val.s3 { color: var(--s3); }
    .recap-val.s4 { color: var(--s4); }
    .recap-val.s5 { color: var(--s5); }
    .recap-key {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--ink-3);
    }

    /* ── HBID SIGNALS (strain + age burden) ── */
    .hbid-signals {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 8px 10px;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--rule-faint);
    }
    .sig-pill {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--accent-soft);
      color: var(--accent);
      padding: 3px 10px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .sig-note {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--ink-2);
    }
    .sig-div {
      color: var(--ink-3);
      font-size: 13px;
    }
    .sig-age {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--ink-2);
    }
    .sig-age strong { color: var(--ink); font-weight: 600; }

    /* ── FLU / ALLERGY CROSS-ANALYSIS BOX ── */
    .cross-box {
      margin-top: 22px;
      padding: 20px 22px;
      border: 1px solid var(--rule-soft);
      border-left: 3px solid var(--s3);
      border-radius: 0 4px 4px 0;
      background: rgba(201,162,39,0.04);
    }
    .cross-levels {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .cross-lvl-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
    }
    .cross-lvl {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .cross-lvl-flu    { background: var(--accent-soft); color: var(--accent); }
    .cross-lvl-pollen { background: rgba(201,162,39,0.15); color: #7a5e0a; }
    .cross-lvl-time {
      font-family: var(--sans);
      font-size: 10px;
      color: var(--ink-3);
      padding-left: 4px;
    }
    .cross-sep {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-3);
      align-self: center;
    }
    /* Pollen live-data box */
    .cross-pollen-box {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
      padding: 8px 12px;
      border: 2px solid #c9a227;
      border-radius: 6px;
      background: rgba(201,162,39,0.06);
    }
    .cross-now {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: #7a5e0a;
      padding-left: 2px;
    }
    /* Fever callout — the #1 differentiator */
    .cross-fever {
      display: flex;
      align-items: baseline;
      gap: 10px;
      background: var(--accent-soft);
      border-radius: 6px;
      padding: 10px 14px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .cross-fever-q {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      white-space: nowrap;
    }
    .cross-fever-a {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--ink-2);
      line-height: 1.45;
    }
    /* Two-column comparison */
    .cross-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 16px;
    }
    @media (max-width: 520px) {
      .cross-cols { grid-template-columns: 1fr; }
    }
    .cross-col {
      padding: 12px 14px;
      border-radius: 4px;
    }
    .cross-col-flu    { background: rgba(110,32,53,0.05); }
    .cross-col-allergy { background: rgba(201,162,39,0.08); }
    .cross-col-head {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .cross-col-flu .cross-col-head    { color: var(--accent); }
    .cross-col-allergy .cross-col-head { color: #7a5e0a; }
    .cross-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .cross-list li {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--ink-2);
      line-height: 1.4;
      padding-left: 12px;
      position: relative;
    }
    .cross-list li::before {
      content: '–';
      position: absolute;
      left: 0;
      color: var(--ink-3);
    }
    .cross-link {
      display: inline-block;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 600;
      color: var(--ink-3);
      text-decoration: underline;
      text-underline-offset: 2px;
      transition: color 0.15s;
    }
    .cross-link:hover { color: var(--ink); }

    /* ── SEASON END ESTIMATE ── */
    .compare-end-est {
      font-family: var(--sans);
      font-size: 14px;
      color: var(--ink-2);
      margin: 10px 0 16px;
      max-width: 560px;
    }
    .compare-end-est strong { color: var(--ink); }

    /* ── SECTION II: VACCINE WINDOW ── */
    .vacc-block { padding: 4px 0 8px; }
    .vacc-verdict {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 14px;
      background: var(--accent-soft);
      color: var(--accent);
    }
    .vacc-headline {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--ink);
      margin-bottom: 10px;
    }
    .vacc-body {
      font-size: 16px;
      font-family: var(--serif);
      color: var(--ink-2);
      line-height: 1.6;
      max-width: 640px;
    }
    .vacc-body strong { color: var(--ink); font-weight: 700; }
    .vacc-links { margin-top: 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    /* ── SECTION III: SEASON COMPARE ── */
    .compare-block { padding: 4px 0 8px; }
    .compare-delta {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 14px;
    }
    .compare-delta-num {
      font-family: var(--serif);
      font-size: 48px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.01em;
    }
    .compare-delta-num.cd-above { color: var(--accent-2); }
    .compare-delta-num.cd-below { color: var(--s2); }
    .compare-delta-label {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-3);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .compare-verdict {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 12px;
    }
    .compare-body {
      font-size: 16px;
      color: var(--ink-2);
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 640px;
    }
    .compare-bar-wrap { max-width: 480px; }
    .compare-bar-track {
      position: relative;
      height: 8px;
      background: var(--accent-soft);
      border-radius: 4px;
      margin-bottom: 6px;
      overflow: visible;
    }
    .compare-bar-fill {
      height: 100%;
      background: var(--accent);
      border-radius: 4px;
      transition: width 0.6s ease;
    }
    .compare-bar-baseline {
      position: absolute;
      top: -4px;
      width: 2px;
      height: 16px;
      background: var(--ink-3);
      transform: translateX(-1px);
    }
    .compare-bar-labels {
      position: relative;
      font-family: var(--sans);
      font-size: 11px;
      color: var(--ink-3);
      height: 16px;
    }
    .cbl-left  { position: absolute; left: 0; }
    .cbl-right { position: absolute; right: 0; }
    .cbl-baseline {
      position: absolute;
      transform: translateX(-50%);
      white-space: nowrap;
      color: var(--ink-2);
    }

    /* ── REGION LIST ── */
    .region-list {
      max-width: 580px;
      margin-bottom: 16px;
    }
    .rgn-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid var(--rule-soft);
    }
    .rgn-row:first-child { border-top: 1px solid var(--rule-soft); }
    .rgn-left {
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .rgn-name {
      font-family: var(--serif);
      font-size: 16px;
    }
    .rgn-you .rgn-name { font-weight: 700; }
    .rgn-you-tag {
      font-family: var(--sans);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-soft);
      padding: 2px 7px;
      border-radius: 2px;
    }
    .rgn-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .rgn-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .rgn-dot.s0 { background: var(--s0); }
    .rgn-dot.s1 { background: var(--s1); }
    .rgn-dot.s2 { background: var(--s2); }
    .rgn-dot.s3 { background: var(--s3); }
    .rgn-dot.s4 { background: var(--s4); }
    .rgn-dot.s5 { background: var(--s5); }
    .rgn-num {
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 700;
      min-width: 14px;
      font-variant-numeric: tabular-nums;
    }
    .rgn-label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--ink-3);
      min-width: 64px;
    }
    .region-note {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--ink-3);
      font-style: italic;
      margin-bottom: 24px;
    }

    /* ── MAP OVERRIDE ── */
    .map-meta { margin-top: 4px; }
    .map-override-label {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-3);
      display: block;
      margin-bottom: 8px;
    }
    .map-override {
      display: flex;
      gap: 8px;
      max-width: 360px;
    }
    .map-override-input {
      flex: 1;
      font-family: var(--sans);
      font-size: 14px;
      padding: 8px 12px;
      border: 1px solid var(--rule-soft);
      border-radius: 3px;
      background: white;
      color: var(--ink);
      outline: none;
    }
    .map-override-input:focus { border-color: var(--accent); }
    .map-override-btn {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: var(--accent);
      color: white;
      border: none;
      padding: 8px 18px;
      border-radius: 3px;
      cursor: pointer;
    }
    .map-override-btn:hover { background: #8a2840; }
    .map-override-error {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--accent-2);
      margin-top: 6px;
      min-height: 18px;
    }

    /* ── AD SLOT ── */
    .ad-slot {
      border-top: 1px solid var(--rule-faint);
      border-bottom: 1px solid var(--rule-faint);
      padding: 20px 0;
      text-align: center;
    }
    .ad-slot-label {
      font-family: var(--sans);
      font-size: 9px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 8px;
    }
    .ad-unit {
      background: var(--rule-faint);
      color: var(--ink-3);
      font-family: var(--sans);
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(728px, 100%);
      height: 90px;
      border-radius: 2px;
    }

    /* ── ACTIONS ── */
    .actions { display: flex; flex-direction: column; }
    .action {
      display: grid;
      grid-template-columns: 100px 1fr auto;
      align-items: baseline;
      gap: 0 20px;
      border-bottom: 1px solid var(--rule-soft);
      padding: 18px 0;
    }
    .action:first-child { border-top: 1px solid var(--rule-soft); }
    .action-label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      padding-top: 2px;
    }
    .action-title {
      font-family: var(--serif);
      font-size: 17px;
      font-weight: 600;
      line-height: 1.35;
      color: var(--ink);
    }
    .action-links { justify-content: flex-end; }
    .action-links { display: flex; gap: 12px; flex-wrap: wrap; }
    .action-link {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      border-bottom: 1px solid var(--accent-soft);
      padding-bottom: 1px;
      transition: border-color 0.15s;
    }
    .action-link:hover { border-color: var(--accent); }

    /* ── COMING SOON ── */
    .coming-soon {
      border-top: 1px solid var(--rule-section);
      padding: 48px 0 40px;
    }
    .cs-inner { max-width: 520px; }
    .cs-eyebrow {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
      opacity: 0.7;
    }
    .cs-title {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .cs-body {
      font-size: 16px;
      color: var(--ink-2);
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .cs-form { display: flex; gap: 8px; margin-bottom: 12px; }
    .cs-input {
      flex: 1;
      max-width: 260px;
      font-family: var(--sans);
      font-size: 14px;
      padding: 10px 14px;
      border: 1px solid var(--rule-soft);
      border-radius: 3px;
      background: white;
      color: var(--ink);
      opacity: 0.6;
    }
    .cs-btn {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--accent);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 3px;
      opacity: 0.5;
      cursor: not-allowed;
    }
    .cs-note {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--ink-3);
      font-style: italic;
    }

    /* ── CONTENT (guides, about, etc.) ── */
    .section.content h3 {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      margin: 32px 0 10px;
    }
    .section.content h3:first-of-type { margin-top: 0; }
    .section.content p {
      font-size: 16px;
      color: var(--ink-2);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .section.content a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }

    /* ── ABOUT / ARTICLE PAGES ── */
    .page {
      padding: 56px 0 72px;
      max-width: 680px;
      margin: 0 auto;
    }
    .page-eyebrow {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .page h1 {
      font-family: var(--serif);
      font-size: clamp(34px, 5vw, 52px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 16px;
    }
    .page-lede {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(18px, 2.2vw, 22px);
      line-height: 1.5;
      color: var(--ink-2);
      margin-bottom: 36px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--rule-section);
    }
    .page h2 {
      font-family: var(--serif);
      font-size: clamp(22px, 2.6vw, 28px);
      font-weight: 700;
      color: var(--ink);
      margin-top: 44px;
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .page h2:first-of-type { margin-top: 0; }
    .page h3 {
      font-family: var(--serif);
      font-weight: 700;
      font-size: 19px;
      color: var(--accent);
      margin-top: 28px;
      margin-bottom: 8px;
    }
    .page p {
      font-family: var(--serif);
      font-size: 17px;
      line-height: 1.75;
      color: var(--ink-2);
      margin-bottom: 14px;
    }
    .page a {
      color: var(--accent);
      border-bottom: 1px solid var(--accent);
      padding-bottom: 1px;
    }
    .page a:hover { opacity: 0.72; }
    .page ul, .page ol {
      margin-bottom: 16px;
      padding-left: 22px;
    }
    .page li {
      font-family: var(--serif);
      font-size: 16px;
      line-height: 1.7;
      color: var(--ink-2);
      margin-bottom: 6px;
    }
    .page .meta-date {
      font-family: var(--sans);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-top: -10px;
      margin-bottom: 32px;
    }

    /* ── GUIDE PAGES ── */
    .guide-wrap { max-width: 680px; padding: 48px 0 80px; }
    .guide-wrap h1 {
      font-family: var(--serif);
      font-size: clamp(28px, 5vw, 40px);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .guide-wrap .guide-meta {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--ink-3);
      margin-bottom: 40px;
    }
    .guide-wrap h2 {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 700;
      margin: 40px 0 12px;
    }
    .guide-wrap p { font-size: 17px; color: var(--ink-2); line-height: 1.7; margin-bottom: 20px; }
    .guide-wrap a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
    .guide-wrap strong { color: var(--ink); font-weight: 600; }
    .guide-disclaimer {
      font-size: 14px;
      color: var(--ink-3);
      font-style: italic;
      border-top: 1px solid var(--rule-soft);
      padding-top: 16px;
      margin-top: 40px;
    }

    /* ── GUIDES INDEX ── */
    .guides-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }
    .guide-card {
      border: 1px solid var(--rule-soft);
      border-radius: 4px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: border-color 0.15s;
    }
    .guide-card:hover { border-color: var(--accent); }
    .guide-card-cat {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      opacity: 0.7;
    }
    .guide-card-title {
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.3;
      color: var(--ink);
    }
    .guide-card-desc {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--ink-3);
      line-height: 1.5;
    }

    /* ── AD SLOTS ── */
    .ad-slot {
      margin: 32px 0;
      padding: 28px 16px;
      background: rgba(28,22,20,0.03);
      border: 1px dashed rgba(28,22,20,0.18);
      text-align: center;
      min-height: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .ad-slot-label {
      font-family: var(--sans);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-3);
    }
    .ad-slot-note {
      font-family: var(--sans);
      font-size: 11px;
      color: var(--ink-3);
    }

    /* ── CONTACT FORM ── */
    .contact-form {
      display: grid;
      gap: 16px;
      max-width: 500px;
      margin-top: 24px;
    }
    .contact-form label {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-bottom: 4px;
      display: block;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      font-family: var(--serif);
      font-size: 16px;
      padding: 11px 14px;
      background: #fff;
      border: 1px solid var(--ink);
      color: var(--ink);
      border-radius: 0;
      outline: none;
      -webkit-appearance: none;
      box-sizing: border-box;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(110,32,53,0.12);
    }
    .contact-form textarea { min-height: 140px; resize: vertical; }
    .contact-form button {
      justify-self: start;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--accent);
      color: #fff;
      border: 1px solid var(--accent);
      padding: 12px 22px;
      cursor: pointer;
    }
    .contact-form button:hover { background: #521828; border-color: #521828; }
    .contact-form button:disabled { opacity: 0.6; cursor: default; }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--rule-section);
      padding: 32px 0 48px;
    }
    .ft-nav {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .ft-nav a {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-3);
    }
    .ft-nav a:hover { color: var(--accent); }
    .ft-meta {
      font-family: var(--sans);
      font-size: 12px;
      color: var(--ink-3);
      line-height: 1.6;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      .shell { padding: 0 20px; }
      .masthead { padding: 20px 0 14px; gap: 12px; }
      .mast-date { display: none; }
      .mast-nav { gap: 16px; }
      .hero { padding: 56px 0 44px; }
      .hero-art { width: 260px; height: 260px; }
      .this-week-grid { grid-template-columns: repeat(2, 1fr); }
      .flu-chart { height: 80px; }
      .hbid-sentence { font-size: 19px; }
      .section { padding: 36px 0 28px; }
      .guides-grid { grid-template-columns: 1fr; }
      .action {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 16px 0;
      }
      .action-links { justify-content: flex-start; margin-top: 6px; }
      .recap-grid { grid-template-columns: repeat(2, 1fr); }
      .recap-stat { border-right: none; border-bottom: 1px solid var(--rule-soft); }
      .recap-stat:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
      .recap-stat:nth-last-child(-n+2) { border-bottom: none; }
    }
