/* PES — Popradská energetická spoločnosť
 * Design system v1.0 — Tatra Navy + Heat Amber + Forest Green
 */

/* ==========================================================================
   1. TOKENY
   ========================================================================== */
:root {
  /* Primary — Tatra Navy */
  --c-navy:           #0F2B4C;
  --c-navy-dark:      #081A30;
  --c-navy-light:     #1B4377;
  --c-navy-50:        #E8EDF3;

  /* Accent warm — Heat Amber */
  --c-amber:          #E8833A;
  --c-amber-dark:     #C66A24;
  --c-amber-light:    #F4A668;
  --c-amber-50:       #FDF1E6;

  /* Accent eco — Forest Green */
  --c-eco:            #2D7A5F;
  --c-eco-dark:       #1F5A45;
  --c-eco-light:      #4A9B7E;
  --c-eco-50:         #E8F2EE;

  /* Status */
  --c-danger:         #C0392B;
  --c-danger-50:      #FBEAE7;
  --c-warning:        #E8833A;
  --c-success:        #2D7A5F;
  --c-info:           #1B4377;

  /* Neutral */
  --c-bg:             #F5F7FA;
  --c-bg-2:           #ECF1F5;
  --c-surface:        #FFFFFF;
  --c-text:           #0F1B2D;
  --c-text-2:         #5C6B7E;
  --c-text-3:         #94A1B5;
  --c-text-inv:       #FFFFFF;
  --c-border:         #E2E8F0;
  --c-border-strong:  #CBD5DF;

  /* Spacing — 4px grid */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* Radius */
  --r-xs: 4px;  --r-sm: 6px;  --r-md: 8px;
  --r-lg: 12px; --r-xl: 16px; --r-full: 999px;

  /* Shadow — jemne, konzervatívne */
  --sh-1: 0 1px 2px rgba(15,27,45,0.04), 0 1px 3px rgba(15,27,45,0.06);
  --sh-2: 0 4px 6px rgba(15,27,45,0.04), 0 2px 4px rgba(15,27,45,0.05);
  --sh-3: 0 10px 15px rgba(15,27,45,0.06), 0 4px 6px rgba(15,27,45,0.05);
  --sh-hero: 0 30px 60px rgba(15,43,76,0.18);

  /* Layout */
  --max-w: 1200px;
  --max-w-prose: 720px;
  --header-h: 72px;
  --topbar-h: 36px;

  /* Transition */
  --tr: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. BASE
   ========================================================================== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--c-navy); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--c-amber); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
hr { border: 0; border-top: 1px solid var(--c-border); margin: var(--s-12) 0; }

/* ==========================================================================
   3. TYPOGRAFIA
   ========================================================================== */
h1, h2, h3, h4, h5, h6, .heading {
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
  margin: 0 0 var(--s-4);
  letter-spacing: -0.01em;
}
h1, .h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -0.015em; }
h3, .h3 { font-size: 22px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 15px; }

p { margin: 0 0 var(--s-4); }
.lead { font-size: 18px; line-height: 1.6; color: var(--c-text-2); }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-eco);
  margin-bottom: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow.amber { color: var(--c-amber-dark); }
.eyebrow.navy { color: var(--c-navy); }
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.text-2 { color: var(--c-text-2); }
.text-3 { color: var(--c-text-3); }
.text-amber { color: var(--c-amber-dark); }
.text-eco { color: var(--c-eco); }
.text-navy { color: var(--c-navy); }
.text-center { text-align: center; }

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.section { padding: var(--s-20) 0; }
.section.tight { padding: var(--s-16) 0; }
.section.bg { background: var(--c-bg); }
.section.bg-2 { background: var(--c-bg-2); }
.section.navy {
  background: var(--c-navy);
  color: var(--c-text-inv);
}
.section.navy h1, .section.navy h2, .section.navy h3 { color: var(--c-text-inv); }
.section.navy .lead, .section.navy .text-2 { color: rgba(255,255,255,0.78); }
.section.eco-soft { background: var(--c-eco-50); }

.section-head {
  max-width: 720px;
  margin: 0 auto var(--s-12);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }

/* Grids */
.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 880px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   5. TOPBAR + HEADER + MEGA DROPDOWN
   ========================================================================== */
.topbar {
  background: var(--c-navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--c-amber-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: var(--s-5); }
.topbar-item { display: inline-flex; align-items: center; gap: var(--s-2); }
.topbar-item i { width: 14px; height: 14px; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }

/* Header — sticky biely pás s nav v karte */
.header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 90;
  padding: var(--s-4) 0 0;
  transition: all var(--tr);
}
.header.scrolled {
  background: rgba(245,247,250,0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.nav {
  max-width: var(--max-w);
  width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-3) var(--s-3) var(--s-6);
  background: var(--c-surface);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(15,27,45,0.06), 0 1px 3px rgba(15,27,45,0.04);
  position: relative;
  overflow: visible;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 17px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--c-navy);
  color: white;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text small {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--c-text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 16px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: var(--s-2) var(--s-3);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--tr), color var(--tr);
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover { background: var(--c-bg-2); color: var(--c-navy); }
.nav-link.active { color: var(--c-amber-dark); }
.nav-link.has-mega svg.chevron {
  width: 10px; height: 10px;
  opacity: 0.55;
  transition: transform 0.25s ease;
}
.nav-link.has-mega.open svg.chevron { transform: rotate(180deg); }
.nav-link.has-mega.open { background: var(--c-bg-2); color: var(--c-navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: var(--c-eco-50);
  color: var(--c-eco-dark);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--tr);
}
.phone-pill:hover { background: var(--c-eco); color: white; }
.phone-pill i { width: 14px; height: 14px; }

.menu-toggle { display: none; }

/* MEGA DROPDOWN */
.nav-mega-dropdown {
  position: fixed;
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 999;
}
.nav-mega-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mega-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.megamenu-wrap {
  position: relative;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(15,27,45,0.12), 0 4px 16px rgba(15,27,45,0.06);
  display: flex;
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}
.mega-main { flex: 1; min-width: 0; padding: var(--s-6) var(--s-8); }
.mega-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-2);
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.mega-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--c-amber);
  border-radius: 2px;
}
.mega-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-1);
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background var(--tr);
}
.mega-item:hover { background: var(--c-bg-2); }
.mega-item-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--c-navy-50);
  color: var(--c-navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mega-item-icon i { width: 18px; height: 18px; }
.mega-item.amber .mega-item-icon { background: var(--c-amber-50); color: var(--c-amber-dark); }
.mega-item.eco .mega-item-icon { background: var(--c-eco-50); color: var(--c-eco); }
.mega-item-text { flex: 1; min-width: 0; padding-top: 2px; }
.mega-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 2px;
  font-family: 'Varela Round', sans-serif;
}
.mega-item-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-text-2);
}

/* Mega featured panel (right side — accent CTA) */
.mega-featured {
  width: 280px;
  flex-shrink: 0;
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.mega-featured::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,131,58,0.25) 0%, transparent 70%);
}
.mega-featured.amber {
  background: linear-gradient(160deg, var(--c-amber-dark) 0%, var(--c-amber) 100%);
}
.mega-featured.eco {
  background: linear-gradient(160deg, var(--c-eco-dark) 0%, var(--c-eco) 100%);
}
.mega-featured-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}
.mega-featured-icon i { width: 22px; height: 22px; color: white; }
.mega-featured-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s-2);
  position: relative;
  z-index: 1;
}
.mega-featured-title {
  font-family: 'Varela Round', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: var(--s-2);
  position: relative;
  z-index: 1;
}
.mega-featured-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-bottom: var(--s-4);
}
.mega-featured-link {
  font-size: 13px;
  font-weight: 600;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.mega-featured-link i { width: 14px; height: 14px; transition: transform var(--tr); }
.mega-featured:hover .mega-featured-link i { transform: translateX(3px); }

/* Backdrop */
.mega-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--tr), visibility var(--tr);
}
.mega-backdrop.open { opacity: 1; visibility: visible; }

/* Mobile */
@media (max-width: 980px) {
  .nav { padding: var(--s-2) var(--s-2) var(--s-2) var(--s-4); }
  .nav-links { display: none; position: fixed; top: calc(var(--header-h) + var(--topbar-h));
               left: 16px; right: 16px; background: white; flex-direction: column;
               padding: var(--s-4); border-radius: var(--r-lg);
               box-shadow: 0 24px 60px rgba(15,27,45,0.18); align-items: stretch; gap: 4px;
               max-height: calc(100vh - 140px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-link { padding: var(--s-3) var(--s-4); }
  .nav-link-wrap { flex-direction: column; align-items: stretch; }
  .nav-mega-dropdown { position: static; opacity: 1; visibility: visible;
                        pointer-events: auto; transform: none; display: none; }
  .nav-mega-dropdown.open { display: block; }
  .megamenu-wrap { flex-direction: column; box-shadow: none; border: 0;
                    background: transparent; }
  .mega-main { padding: var(--s-2) var(--s-2) var(--s-4); }
  .mega-items { grid-template-columns: 1fr; }
  .mega-featured { width: 100%; border-radius: var(--r-md); margin-top: var(--s-2); }
  .menu-toggle { display: grid; place-items: center; width: 40px; height: 40px;
                  border-radius: var(--r-sm); background: var(--c-bg); color: var(--c-navy);
                  border: 0; cursor: pointer; }
  .phone-pill .pill-text { display: none; }
  .phone-pill { padding: var(--s-2); }
}
@media (max-width: 600px) {
  .topbar-item.hide-sm { display: none; }
  .brand-text small { display: none; }
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  height: 44px;
  padding: 0 var(--s-6);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--tr);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn i { width: 16px; height: 16px; }
.btn-primary {
  background: var(--c-amber);
  color: white;
  box-shadow: 0 4px 14px rgba(232,131,58,0.32);
}
.btn-primary:hover {
  background: var(--c-amber-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,131,58,0.42);
}
.btn-secondary {
  background: var(--c-navy);
  color: white;
}
.btn-secondary:hover { background: var(--c-navy-dark); color: white; }
.btn-outline {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-border-strong);
}
.btn-outline:hover { background: var(--c-bg); color: var(--c-navy); border-color: var(--c-navy); }
.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.6); }
.btn-ghost { color: var(--c-navy); }
.btn-ghost:hover { background: var(--c-bg); color: var(--c-navy); }
.btn-danger {
  background: var(--c-danger);
  color: white;
  box-shadow: 0 4px 14px rgba(192,57,43,0.32);
}
.btn-danger:hover { background: #A02A1F; color: white; }

.btn-sm { height: 36px; padding: 0 var(--s-4); font-size: 13px; }
.btn-lg { height: 52px; padding: 0 var(--s-8); font-size: 15px; }

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0F2B4C 0%, #1B4377 65%, #2C5990 100%);
  color: white;
  overflow: hidden;
  padding: var(--s-20) 0 var(--s-24);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232,131,58,0.18) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(45,122,95,0.15) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: rgba(232,131,58,0.15);
  border: 1px solid rgba(232,131,58,0.35);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F4A668;
  margin-bottom: var(--s-6);
}
.hero-badge i { width: 14px; height: 14px; }
.hero h1 {
  color: white;
  margin-bottom: var(--s-5);
  text-wrap: balance;
}
.hero h1 .accent { color: #F4A668; }
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--s-8);
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-10);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: 'Varela Round', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #F4A668;
  line-height: 1;
  margin-bottom: var(--s-2);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  height: 460px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-hero);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #1B4377 0%, #0F2B4C 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* Floating climate ticker */
.climate-ticker {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  background: white;
  color: var(--c-text);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  min-width: 240px;
}
.climate-temp {
  font-family: 'Varela Round', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
}
.climate-info { display: flex; flex-direction: column; gap: 2px; }
.climate-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-eco);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
}
.climate-status i { width: 12px; height: 12px; }
.climate-detail { font-size: 12px; color: var(--c-text-2); }

@media (max-width: 980px) {
  .hero { padding: var(--s-12) 0 var(--s-16); }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  .hero-stat-num { font-size: 24px; }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > div:last-child { grid-column: 1 / -1; }
  .climate-ticker { left: var(--s-3); right: var(--s-3); min-width: auto; }
}

/* ==========================================================================
   8. ALERT BAR (poruchy / odstávky)
   ========================================================================== */
.alert-bar {
  background: var(--c-amber-50);
  border-top: 3px solid var(--c-amber);
  padding: var(--s-5) 0;
}
.alert-bar.danger {
  background: var(--c-danger-50);
  border-top-color: var(--c-danger);
}
.alert-bar .wrap {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  justify-content: space-between;
  flex-wrap: wrap;
}
.alert-msg { display: flex; align-items: center; gap: var(--s-3); }
.alert-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-amber);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.alert-icon i { width: 18px; height: 18px; }
.alert-bar.danger .alert-icon { background: var(--c-danger); }
.alert-text strong { color: var(--c-navy); display: block; font-family: 'Varela Round', sans-serif; }
.alert-text span { font-size: 13px; color: var(--c-text-2); }

/* ==========================================================================
   9. CARDS
   ========================================================================== */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: all var(--tr);
}
.card-hover:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}
.card-feature {
  position: relative;
  padding: var(--s-8);
}
.card-feature .card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-navy-50);
  color: var(--c-navy);
  display: grid; place-items: center;
  margin-bottom: var(--s-5);
}
.card-feature .card-icon i { width: 28px; height: 28px; }
.card-feature.amber .card-icon { background: var(--c-amber-50); color: var(--c-amber-dark); }
.card-feature.eco .card-icon { background: var(--c-eco-50); color: var(--c-eco); }
.card-feature h3 { margin-bottom: var(--s-3); }
.card-feature p { color: var(--c-text-2); margin-bottom: var(--s-5); font-size: 14px; }
.card-feature .card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--c-navy);
  font-weight: 600;
  font-size: 14px;
}
.card-feature .card-link i { width: 16px; height: 16px; transition: transform var(--tr); }
.card-feature .card-link:hover i { transform: translateX(3px); }

/* Notice card (oznam) — status cez tag VPRAVO + ikonu vľavo, žiadne ľavé hrany */
.notice {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-5);
  align-items: center;
  transition: all var(--tr);
}
.notice:hover { border-color: var(--c-border-strong); box-shadow: var(--sh-1); }
.notice.danger { background: var(--c-danger-50); border-color: rgba(192,57,43,0.18); }
.notice.eco    { background: var(--c-eco-50);    border-color: rgba(45,122,95,0.18); }
.notice-date {
  text-align: center;
  padding-right: var(--s-4);
  border-right: 1px solid var(--c-border);
}
.notice-date .day {
  font-family: 'Varela Round', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
}
.notice-date .month {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-2);
  margin-top: 2px;
  display: block;
}
.notice-body h4 { font-size: 16px; margin-bottom: var(--s-1); }
.notice-meta {
  display: flex;
  gap: var(--s-4);
  font-size: 12px;
  color: var(--c-text-2);
  margin-top: var(--s-2);
}
.notice-meta span { display: inline-flex; align-items: center; gap: var(--s-1); }
.notice-meta i { width: 12px; height: 12px; }
.notice-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  background: var(--c-amber-50);
  color: var(--c-amber-dark);
  white-space: nowrap;
}
.notice-tag.danger { background: var(--c-danger-50); color: var(--c-danger); }
.notice-tag.info { background: var(--c-navy-50); color: var(--c-navy); }
.notice-tag.eco { background: var(--c-eco-50); color: var(--c-eco-dark); }

@media (max-width: 600px) {
  .notice { grid-template-columns: 1fr; gap: var(--s-3); }
  .notice-date { display: flex; gap: var(--s-3); align-items: baseline;
                  padding-right: 0; border-right: 0; padding-bottom: var(--s-2);
                  border-bottom: 1px solid var(--c-border); }
}

/* ==========================================================================
   10. STATS — sieť v číslach
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.stat {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-6);
  text-align: center;
  border: 1px solid var(--c-border);
}
.stat-value {
  font-family: 'Varela Round', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}
.stat-value .unit { font-size: 22px; color: var(--c-text-2); margin-left: var(--s-1); }
.stat-label {
  font-size: 13px;
  color: var(--c-text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.stat.eco .stat-value { color: var(--c-eco); }
.stat.amber .stat-value { color: var(--c-amber-dark); }

@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 36px; }
}

/* ==========================================================================
   11. STEPS — ako funguje
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  position: relative;
}
.step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
}
.step-num {
  position: absolute;
  top: -16px;
  left: var(--s-6);
  width: 36px; height: 36px;
  background: var(--c-navy);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--c-eco-50);
  color: var(--c-eco);
  display: grid; place-items: center;
  margin: var(--s-3) 0 var(--s-4);
}
.step-icon i { width: 24px; height: 24px; }
.step h4 { margin-bottom: var(--s-2); }
.step p { font-size: 13px; color: var(--c-text-2); margin: 0; }

@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   12. TIMELINE — 10 rokov
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--c-border);
}
.tl-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: var(--s-8);
}
.tl-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 3px solid var(--c-amber);
  display: grid; place-items: center;
}
.tl-dot.eco { border-color: var(--c-eco); }
.tl-dot.navy { border-color: var(--c-navy); }
.tl-dot::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-amber);
}
.tl-dot.eco::after { background: var(--c-eco); }
.tl-dot.navy::after { background: var(--c-navy); }
.tl-year {
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--c-amber-dark);
  margin-bottom: var(--s-1);
}
.tl-dot.eco ~ .tl-content .tl-year { color: var(--c-eco); }
.tl-dot.navy ~ .tl-content .tl-year { color: var(--c-navy); }
.tl-title { font-family: 'Varela Round', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: var(--s-2); }
.tl-text { color: var(--c-text-2); font-size: 14px; margin: 0; }

/* ==========================================================================
   13. DOCS
   ========================================================================== */
.doc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.doc {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--tr);
}
.doc:hover {
  border-color: var(--c-amber);
  transform: translateY(-1px);
  box-shadow: var(--sh-1);
}
.doc-icon {
  width: 44px; height: 44px;
  background: var(--c-navy-50);
  color: var(--c-navy);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.doc-icon i { width: 22px; height: 22px; }
.doc-info { flex: 1; }
.doc-title { font-weight: 600; font-size: 14px; color: var(--c-text); margin-bottom: 2px; }
.doc-meta { font-size: 12px; color: var(--c-text-2); }
.doc-arrow { color: var(--c-text-3); transition: all var(--tr); }
.doc:hover .doc-arrow { color: var(--c-amber); transform: translateX(3px); }

@media (max-width: 720px) {
  .doc-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   14. FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-q {
  width: 100%;
  padding: var(--s-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Varela Round', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
  gap: var(--s-4);
}
.faq-q i { width: 20px; height: 20px; color: var(--c-text-2); transition: transform var(--tr); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--c-amber); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr);
  color: var(--c-text-2);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: var(--s-5);
}

/* ==========================================================================
   15. CONTACT + MAP
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-8);
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-block {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.contact-block .ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--c-eco-50);
  color: var(--c-eco);
  display: grid; place-items: center;
}
.contact-block .ico i { width: 20px; height: 20px; }
.contact-block.amber .ico { background: var(--c-amber-50); color: var(--c-amber-dark); }
.contact-block.danger .ico { background: var(--c-danger-50); color: var(--c-danger); }
.contact-block .label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--c-text-2); font-weight: 600; margin-bottom: var(--s-1);
}
.contact-block .value { font-family: 'Varela Round', sans-serif; font-weight: 700; color: var(--c-text); font-size: 18px; }
.contact-block .value a { color: inherit; }
.contact-block .meta { font-size: 13px; color: var(--c-text-2); margin-top: var(--s-1); }

#map {
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  min-height: 460px;
  background: var(--c-bg-2);
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  #map { min-height: 360px; }
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.footer {
  background: var(--c-navy-dark);
  color: rgba(255,255,255,0.72);
  padding: var(--s-16) 0 var(--s-6);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-12);
}
.footer h5 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
}
.footer-brand { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.footer-brand .brand-mark { background: white; color: var(--c-navy); }
.footer-brand-text {
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 17px;
}
.footer p { color: rgba(255,255,255,0.7); margin-bottom: var(--s-3); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer ul a { color: rgba(255,255,255,0.7); }
.footer ul a:hover { color: var(--c-amber-light); }
.footer-emergency {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.3);
  padding: var(--s-4);
  border-radius: var(--r-md);
  margin-top: var(--s-3);
}
.footer-emergency .label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #F4A668; font-weight: 700; margin-bottom: var(--s-1);
}
.footer-emergency .num {
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.footer-bottom {
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   17. UTILITIES
   ========================================================================== */
.hide-md { display: initial; }
@media (max-width: 880px) { .hide-md { display: none; } }
@media (min-width: 881px) { .show-md { display: none; } }

.divider-amber {
  width: 60px; height: 4px;
  background: var(--c-amber);
  border-radius: 2px;
  margin: 0 auto var(--s-5);
}
.divider-amber.left { margin: 0 0 var(--s-5); }


/* ==========================================================================
   18. SUB-PAGE HERO + BREADCRUMB
   ========================================================================== */
.subhero {
  background: linear-gradient(135deg, #0F2B4C 0%, #1B4377 100%);
  color: white;
  padding: var(--s-12) 0 var(--s-10);
  position: relative;
  overflow: hidden;
}
.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(232,131,58,0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(45,122,95,0.12) 0%, transparent 50%);
}
.subhero .wrap { position: relative; z-index: 1; }
.subhero .eyebrow { color: #F4A668; }
.subhero h1 {
  color: white;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--s-3);
  text-wrap: balance;
}
.subhero p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s-5);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #F4A668; }
.breadcrumb i { width: 12px; height: 12px; opacity: 0.5; }
.breadcrumb span { color: white; }

/* Active nav state */
.nav a.active { color: var(--c-amber-dark); background: var(--c-amber-50); }

/* ==========================================================================
   19. PROSE — článkový obsah
   ========================================================================== */
.prose {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
}
.prose.wide { max-width: 920px; }
.prose h2 { margin-top: var(--s-10); margin-bottom: var(--s-4); font-size: 26px; }
.prose h3 { margin-top: var(--s-8); margin-bottom: var(--s-3); font-size: 20px; color: var(--c-navy); }
.prose h4 { margin-top: var(--s-6); margin-bottom: var(--s-2); font-size: 17px; }
.prose p { margin-bottom: var(--s-4); color: var(--c-text); }
.prose ul, .prose ol { margin: 0 0 var(--s-5); padding-left: var(--s-6); }
.prose li { margin-bottom: var(--s-2); }
.prose ul li::marker { color: var(--c-amber); }
.prose strong { color: var(--c-navy); font-weight: 600; }
.prose blockquote {
  margin: var(--s-6) 0;
  padding: var(--s-5) var(--s-6);
  background: var(--c-eco-50);
  border-radius: var(--r-md);
  font-style: italic;
  color: var(--c-eco-dark);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose blockquote cite {
  display: block;
  margin-top: var(--s-3);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-2);
}
.prose a:not(.btn) { color: var(--c-navy); text-decoration: underline; text-decoration-color: var(--c-amber); text-underline-offset: 3px; }
.prose a:not(.btn):hover { color: var(--c-amber-dark); }

/* Two column layout — content + side */
.split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s-10);
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.side-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: sticky;
  top: calc(var(--header-h) + var(--s-4));
}
.side-card h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-2);
  margin-bottom: var(--s-4);
}
.side-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.side-card a { display: flex; align-items: center; gap: var(--s-2); color: var(--c-text); padding: var(--s-2); border-radius: var(--r-sm); }
.side-card a:hover { background: white; color: var(--c-navy); }
.side-card i { width: 14px; height: 14px; color: var(--c-text-3); }

/* ==========================================================================
   20. TABLES — cenník, dokumenty, zverejňovanie
   ========================================================================== */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--c-border); border-radius: var(--r-md); background: white; }
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tbl th, .tbl td {
  padding: var(--s-3) var(--s-4);
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.tbl th {
  background: var(--c-bg-2);
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.tbl tr:hover td { background: var(--c-bg); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl td.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--c-navy); }
.tbl td.right { text-align: right; }
.tbl td.center { text-align: center; }

/* ==========================================================================
   21. PREVIEW CARDS — pre index rozcestník
   ========================================================================== */
.preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.preview-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: all var(--tr);
  text-decoration: none;
  color: inherit;
}
.preview-card:hover {
  border-color: var(--c-amber);
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  color: inherit;
}
.preview-card .pv-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-navy-50);
  color: var(--c-navy);
  display: grid; place-items: center;
}
.preview-card .pv-icon i { width: 28px; height: 28px; }
.preview-card.amber .pv-icon { background: var(--c-amber-50); color: var(--c-amber-dark); }
.preview-card.eco .pv-icon { background: var(--c-eco-50); color: var(--c-eco); }
.preview-card h3 { margin: 0; font-size: 22px; }
.preview-card p { color: var(--c-text-2); font-size: 14px; margin: 0; flex: 1; }
.preview-card .pv-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--c-navy);
  font-weight: 600;
  font-size: 14px;
  margin-top: var(--s-2);
}
.preview-card:hover .pv-link { color: var(--c-amber-dark); }
.preview-card:hover .pv-link i { transform: translateX(3px); }
.preview-card .pv-link i { width: 16px; height: 16px; transition: transform var(--tr); }

@media (max-width: 720px) { .preview { grid-template-columns: 1fr; } }

/* ==========================================================================
   22. CONTACT BLOCKS — extended
   ========================================================================== */
.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (max-width: 720px) { .contact-list { grid-template-columns: 1fr; } }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: var(--s-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(232,131,58,0.18) 0%, transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: var(--s-3); }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto var(--s-6); }



/* ==========================================================================
   18. PAGE HERO + PROSE — pre podstránky
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
  padding: var(--s-16) 0 var(--s-12);
  border-bottom: 1px solid var(--c-border);
}
.page-hero .wrap { max-width: 880px; }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: var(--s-4);
  text-wrap: balance;
}
.page-hero .lead {
  font-size: 17px;
  max-width: 720px;
}

.prose {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
}
.prose h3 {
  font-size: 22px;
  margin: var(--s-10) 0 var(--s-4);
  color: var(--c-navy);
}
.prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: var(--s-4); }
.prose ul, .prose ol {
  margin: 0 0 var(--s-5);
  padding-left: var(--s-6);
}
.prose li { margin-bottom: var(--s-2); }
.prose strong { color: var(--c-navy); font-weight: 600; }
.prose a { color: var(--c-amber-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--c-navy); }
