/* ── Season calendar bars ── */
    .season-calendar { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
    .sc-row { display: grid; grid-template-columns: 7rem 1fr 6rem; align-items: center; gap: 1rem; }
    .sc-month { font-weight: 600; font-size: .9rem; color: var(--gray-800); }
    .sc-track { background: var(--gray-100); border-radius: 4px; height: 24px; overflow: hidden; position: relative; }
    .sc-fill { height: 100%; border-radius: 4px; transition: width .4s; }
    .sc-none  { background: #d4edda; }
    .sc-low   { background: #a8d97f; }
    .sc-med   { background: #f4a623; }
    .sc-high  { background: #e07b39; }
    .sc-vhigh { background: #c0392b; }
    .sc-label { font-size: .8rem; font-weight: 600; color: var(--gray-600); }
    /* ── Region risk cards ── */
    .region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
    .region-card { background: var(--white); border-radius: 8px; padding: 1.1rem 1.2rem; box-shadow: var(--shadow); border-top: 4px solid transparent; }
    .region-card.risk-vhigh { border-color: #c0392b; }
    .region-card.risk-high  { border-color: #e07b39; }
    .region-card.risk-med   { border-color: #f4a623; }
    .region-card.risk-low   { border-color: #a8d97f; }
    .region-card h3 { font-size: .95rem; font-weight: 700; margin: 0 0 .3rem; color: var(--text); }
    .region-card .region-badge { display: inline-block; font-size: .72rem; font-weight: 700; padding: .15rem .55rem; border-radius: 3px; color: #fff; margin-bottom: .5rem; }
    .risk-vhigh .region-badge { background: #c0392b; }
    .risk-high  .region-badge { background: #e07b39; }
    .risk-med   .region-badge { background: #f4a623; color: #5a3a00; }
    .risk-low   .region-badge { background: #52b788; }
    .region-card p { font-size: .83rem; color: var(--gray-600); margin: 0; line-height: 1.5; }
    /* ── Stats row ── */
    .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1.5rem 0; }
    .stat-card { background: var(--white); border-radius: 8px; padding: 1.2rem 1rem; text-align: center; box-shadow: var(--shadow); }
    .stat-num { font-size: 1.9rem; font-weight: 800; color: var(--green); line-height: 1; }
    .stat-label { font-size: .78rem; color: var(--gray-600); margin-top: .4rem; line-height: 1.4; }
    /* ── Daily pattern bars ── */
    .hourly-bars { display: flex; align-items: flex-end; gap: 4px; height: 100px; margin: 1.2rem 0 .5rem; }
    .hb-col { display: flex; flex-direction: column; align-items: center; flex: 1; }
    .hb-bar { width: 100%; border-radius: 3px 3px 0 0; transition: height .3s; }
    .hb-time { font-size: .65rem; color: var(--gray-600); margin-top: .3rem; }
    .hb-low  { background: #52b788; }
    .hb-med  { background: #f4a623; }
    .hb-high { background: #e07b39; }
    .hb-peak { background: #c0392b; }
    /* ── Chart containers ── */
    .chart-wrap { position: relative; height: 260px; margin: 1.5rem 0; }
    /* ── Year comparison table ── */
    .year-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 1.5rem 0; }
    .year-table th { text-align: left; padding: .65rem 1rem; font-weight: 700; background: var(--gray-100); border-bottom: 2px solid var(--gray-300); color: var(--text); }
    .year-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-800); }
    .year-table tr:nth-child(even) td { background: var(--gray-50); }
    .year-table tr.yr-2026 td { font-weight: 600; background: #fff8e7; }
    .yr-badge { display: inline-block; font-size: .72rem; font-weight: 700; padding: .12rem .45rem; border-radius: 3px; }
    .yr-high  { background: #fde8e8; color: #8b0000; }
    .yr-vhigh { background: #c0392b; color: #fff; }
    .yr-med   { background: #fff3cd; color: #7a5000; }
    /* ── Romania map visual ── */
    .ro-map-wrap { position: relative; border-radius: 8px; overflow: hidden; margin: 1.5rem 0; background: var(--gray-50); }
    .ro-map-wrap img { width: 100%; height: auto; display: block; opacity: .85; }
    .ro-map-legend { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .75rem; }
    .rml-item { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--gray-700); }
    .rml-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
    /* Responsive */
    @media (max-width: 780px) {
      .region-grid { grid-template-columns: 1fr 1fr; }
      .stats-row   { grid-template-columns: 1fr 1fr; }
      .sc-row { grid-template-columns: 5rem 1fr 4.5rem; gap: .6rem; }
    }
    @media (max-width: 480px) {
      .region-grid { grid-template-columns: 1fr; }
      .stats-row   { grid-template-columns: 1fr 1fr; }
    }
    [data-theme="dark"] .region-card { background: var(--gray-100); }
    [data-theme="dark"] .stat-card   { background: var(--gray-100); }
    [data-theme="dark"] .sc-track    { background: rgba(255,255,255,.08); }
    [data-theme="dark"] .year-table tr.yr-2026 td { background: #2a2010; }
