/* =========================================================================
   RoadTo — Kilimandżaro. Static brand system.
   One stylesheet for every page. Brand: deep forest green, warm paper,
   gold accent (book spine), mountain motif.
   ========================================================================= */

:root {
  --forest-900: #0e231d;
  --forest-800: #163b31;
  --forest-700: #1f4f43;
  --forest-600: #2c6354;

  --paper:   #f3eee2;
  --paper-2: #fbf7ee;
  --card:    #fffdf8;

  --ink:    #1b211d;
  --muted:  #6c675c;
  --line:   #e6ddca;

  --gold:      #d4a431;
  --gold-soft: #ecd49a;
  --rust:      #b8503a;

  --maxw: 1180px;
  --readw: 760px;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(14, 35, 29, .14);
  --shadow-sm: 0 8px 24px rgba(14, 35, 29, .08);

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--forest-700); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ----------------------------------------------------------------- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--forest-900);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 64px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
  flex: 0 0 auto;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.01em;
}
.brand__name b { color: var(--gold); font-weight: 800; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:hover { background: rgba(255, 255, 255, .10); color: #fff; }
.nav__links a.is-current { color: var(--forest-900); background: var(--gold-soft); }

/* --------------------------------------------------------------- HERO ---- */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  background: var(--forest-800);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
      rgba(14, 35, 29, .55) 0%,
      rgba(14, 35, 29, .28) 38%,
      rgba(14, 35, 29, .82) 100%);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px 22px 52px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 80px);
  line-height: .98;
  letter-spacing: -.03em;
  margin: 0;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}
.hero__lead {
  margin: 20px 0 0;
  max-width: 56ch;
  font-size: clamp(17px, 2.2vw, 20px);
  color: rgba(255, 255, 255, .9);
}
.crumbs {
  margin: 0 0 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
}
.crumbs a { color: rgba(255, 255, 255, .92); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ------------------------------------------------------------- CONTENT --- */
.content { padding: 56px 0 72px; }
.content__col { max-width: var(--readw); margin: 0 auto; }

.lead-block p {
  font-size: 19px;
  color: #33302a;
  margin: 0 0 18px;
}
.lead-block p:first-child {
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.5;
  color: var(--ink);
}

.divider {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--forest-800);
  margin: 52px 0 22px;
  padding-top: 26px;
  border-top: 2px solid var(--line);
}

/* Accordion chapters -------------------------------------------- */
.chapter {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0 0 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.chapter > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--forest-800);
  letter-spacing: -.01em;
}
.chapter > summary::-webkit-details-marker { display: none; }
.chapter__num {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--forest-900);
  background: var(--gold-soft);
  border: 1px solid var(--gold);
}
.chapter__num--glyph { background: transparent; border: none; color: var(--gold); }
.chapter__title { flex: 1 1 auto; }
.chapter__chev {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--muted);
  transition: transform .2s ease;
}
.chapter[open] > summary .chapter__chev { transform: rotate(180deg); }
.chapter[open] > summary { border-bottom: 1px solid var(--line); }
.chapter__body { padding: 6px 22px 22px; }
.chapter__body > :first-child { margin-top: 14px; }

.chapter__body h3,
.section-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--forest-700);
  margin: 22px 0 8px;
  letter-spacing: -.01em;
}
.chapter__body p,
.section-body p { margin: 0 0 12px; color: #34302a; }
.list-label { font-weight: 600; color: var(--ink); margin-bottom: 6px; }

.chapter__body ul,
.section-body ul { margin: 4px 0 16px; padding: 0; list-style: none; }
.chapter__body li,
.section-body li {
  position: relative;
  padding: 0 0 0 24px;
  margin: 0 0 9px;
  color: #34302a;
}
.chapter__body li::before,
.section-body li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Flowing article (pages without accordions) -------------------- */
.prose-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 16px;
  box-shadow: var(--shadow-sm);
}
.section-body h2.flow-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(21px, 3vw, 29px);
  color: var(--forest-800);
  letter-spacing: -.02em;
  margin: 34px 0 4px;
  padding-top: 22px;
  border-top: 2px solid var(--line);
}
.section-body h2.flow-h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose-card > .section-body > p:first-child,
.prose-card > p:first-child { margin-top: 0; }

/* Static (non-collapsing) section card -------------------------- */
.section-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 8px;
  margin: 0 0 16px;
  box-shadow: var(--shadow-sm);
}
.section-card > h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 27px);
  color: var(--forest-800);
  margin: 0 0 4px;
  letter-spacing: -.02em;
}
.section-card > h2 + .rule { margin: 12px 0 16px; }
.rule { height: 3px; width: 46px; background: var(--gold); border-radius: 999px; }

/* --------------------------------------------------------------- CARDS --- */
.section-intro {
  padding: 56px 0 8px;
  max-width: var(--readw);
  margin: 0 auto;
}
.section-intro p { font-size: 19px; color: #33302a; margin: 0 0 16px; }
.section-intro p:first-child { font-size: clamp(20px, 2.6vw, 23px); color: var(--ink); line-height: 1.5; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  padding: 30px 0 80px;
}
.card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-link__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--forest-700); }
.card-link__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-link:hover .card-link__media img { transform: scale(1.05); }
.card-link__body { padding: 18px 20px 22px; }
.card-link__kicker {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 6px;
}
.card-link__body h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  margin: 0 0 6px; color: var(--forest-800); letter-spacing: -.01em;
}
.card-link__body p { margin: 0; color: var(--muted); font-size: 15px; }
.card-link__more {
  margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--forest-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link:hover .card-link__more { gap: 10px; }

/* --------------------------------------------------------------- TRASY --- */
.routes { max-width: var(--maxw); margin: 0 auto; padding: 48px 22px 80px; }
.routes__tabs {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; justify-content: center;
}
.routes__tab {
  appearance: none; cursor: pointer; font: inherit;
  border: 1.5px solid var(--forest-800); background: var(--card);
  color: var(--forest-800); font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 999px;
  transition: transform .14s ease, background .14s ease, color .14s ease, border-color .14s ease;
}
.routes__tab:hover { transform: translateY(-2px); }
.routes__tab.is-active { background: var(--rust); border-color: var(--rust); color: #fff; }
.routes__map {
  margin: 0 auto; max-width: 1080px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--card); box-shadow: var(--shadow);
}
.routes__map img { width: 100%; height: auto; }
.routes__cap {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 20px; background: var(--forest-800); color: rgba(255, 255, 255, .9); font-size: 14px;
}
.routes__cap b { color: #fff; font-family: var(--font-display); font-size: 16px; }

/* -------------------------------------------------------------- HOMEPAGE - */
.home-hero { min-height: 78vh; }
.home-hero .hero__inner { justify-content: center; min-height: 78vh; padding-top: 120px; }
.home-hero h1 { font-size: clamp(46px, 9vw, 104px); max-width: 14ch; }
.home-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 700; font-size: 16px;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--forest-900); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .4); }

.home-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: var(--maxw); margin: 0 auto; padding: 56px 22px;
}
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 6vw, 56px); color: var(--forest-800); line-height: 1; letter-spacing: -.02em;
}
.stat span { color: var(--muted); font-size: 14px; }

/* -------------------------------------------------------------- FOOTER --- */
.footer {
  background: var(--forest-900);
  color: rgba(255, 255, 255, .78);
  margin-top: 40px;
}
.footer__top {
  max-width: var(--maxw); margin: 0 auto; padding: 56px 22px 30px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
}
.footer h2 {
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(24px, 3.6vw, 34px); margin: 0 0 14px; letter-spacing: -.02em;
}
.footer p { margin: 0 0 18px; max-width: 42ch; }
.footer__contacts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.footer__contacts a { color: var(--gold-soft); text-decoration: none; font-weight: 500; }
.footer__contacts a:hover { color: #fff; }
.footer .btn--gold { font-size: 15px; }

.footer__gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  align-content: start;
}
.footer__gallery a { display: block; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; }
.footer__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.footer__gallery a:hover img { transform: scale(1.08); }

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  max-width: var(--maxw); margin: 0 auto; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255, 255, 255, .55);
}
.footer__bar nav { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__bar a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.footer__bar a:hover { color: #fff; }

/* -------------------------------------------------------------- 404 ------ */
.notfound {
  min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 22px;
}
.notfound h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 8vw, 80px); color: var(--forest-800); margin: 0 0 10px; }
.notfound p { color: var(--muted); font-size: 18px; max-width: 46ch; margin: 0 auto 26px; }
.notfound .home-cta { justify-content: center; }
.notfound .btn--gold { color: var(--forest-900); }
.notfound .btn--ghost { background: var(--card); color: var(--forest-800); border-color: var(--line); }

/* ---------------------------------------------------------- RESPONSIVE --- */
@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .nav__inner { gap: 12px; }
  .brand__name { font-size: 17px; }
  .hero__inner { padding: 72px 22px 40px; min-height: 300px; }
  .home-stats { grid-template-columns: 1fr; gap: 8px; padding: 36px 22px; }
  .stat { display: flex; align-items: baseline; gap: 12px; justify-content: center; }
  .stat b { font-size: 40px; }
  .footer__gallery { grid-template-columns: repeat(3, 1fr); }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* visible keyboard focus */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------------------------------------------------------- GEAR (Sprzęt) */
.gear { max-width: 1000px; margin: 0 auto; padding: 0 22px; }
.gear .lead-block { max-width: var(--readw); }
.gear .lead-block .btn { margin-top: 6px; }

.gear-section { margin: 0 0 14px; }
.gear-group {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--forest-800);
  letter-spacing: -.01em;
  margin: 28px 0 12px;
  display: flex; align-items: center; gap: 12px;
}
.gear-group::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 3px;
  background: var(--gold); border-radius: 999px;
}
.gear-group:first-child { margin-top: 8px; }

.gear-table-wrap { margin: 0 0 18px; }
.gear-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.gear-table caption {
  caption-side: top;
  background: var(--forest-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 11px 14px;
}
.gear-table thead th {
  background: var(--paper-2);
  color: var(--forest-800);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: bottom;
}
.gear-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--forest-800);
  padding: 12px 14px;
  vertical-align: top;
  width: 24%;
  border-top: 1px solid var(--line);
}
.gear-table tbody td {
  padding: 12px 14px;
  color: #34302a;
  vertical-align: top;
  border-top: 1px solid var(--line);
}
.gear-table tbody tr:first-child th,
.gear-table tbody tr:first-child td { border-top: 0; }
.gear-table tbody tr:nth-child(even) th,
.gear-table tbody tr:nth-child(even) td { background: rgba(243, 238, 226, .4); }
.gear-price { white-space: nowrap; font-weight: 600; color: var(--forest-700); }

@media (max-width: 680px) {
  .gear { padding: 0 16px; }
  .gear-table, .gear-table tbody, .gear-table tr,
  .gear-table td, .gear-table th { display: block; width: 100%; }
  .gear-table { border: 0; background: none; box-shadow: none; overflow: visible; }
  .gear-table thead { display: none; }
  .gear-table caption {
    border-radius: 12px 12px 0 0; margin-top: 4px;
  }
  .gear-table tbody tr {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin: 0 0 12px;
    padding: 10px 14px;
    background: var(--card);
    box-shadow: var(--shadow-sm);
  }
  .gear-table tbody tr:nth-child(even) th,
  .gear-table tbody tr:nth-child(even) td { background: none; }
  .gear-table tbody th {
    width: 100%; font-size: 16.5px; padding: 0 0 6px;
    border: 0; border-bottom: 1px solid var(--line); margin-bottom: 8px;
  }
  .gear-table tbody td { border: 0; padding: 4px 0; }
  .gear-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 1px;
  }
}

/* --------------------------------------------------------- SAFARI ----- */
.safari { max-width: var(--readw); margin: 0 auto; padding: 0 22px; }
.safari .chapter__body p { font-size: 16.5px; margin: 0 0 14px; }
.safari .chapter__body > :first-child { margin-top: 14px; }

.safari-tip {
  background: var(--paper-2);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 18px 0;
  color: #34302a;
}
.safari-tip b { color: var(--forest-800); }

.safari-info {
  margin: 18px 0 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
}
.safari-info > h4 {
  margin: 0;
  background: var(--forest-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 10px 16px;
}
.safari-info dl { margin: 0; display: grid; grid-template-columns: 170px 1fr; }
.safari-info dt {
  font-weight: 700; color: var(--forest-800);
  padding: 12px 16px; border-top: 1px solid var(--line);
}
.safari-info dd {
  margin: 0; padding: 12px 16px; border-top: 1px solid var(--line);
  color: #34302a;
}
.safari-info dl > dt:first-of-type,
.safari-info dl > dd:first-of-type { border-top: 0; }

@media (max-width: 600px) {
  .safari-info dl { grid-template-columns: 1fr; }
  .safari-info dd { padding-top: 0; border-top: 0; }
  .safari-info dl > dd:first-of-type { border-top: 0; }
}

/* ------------------------------------------------------- TRENING (ćwiczenia) */
.ex-lead { max-width: var(--readw); margin: 0 auto 8px; }
.ex-lead p { font-size: 18px; color: #33302a; }

.ex-body > :first-child { margin-top: 12px; }
.ex-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--forest-800);
  margin: 16px 0 6px;
}
.ex-list { list-style: none; margin: 4px 0 14px; padding: 0; }
.ex-list li {
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 0 8px;
  color: #34302a;
}
.ex-list li::before {
  position: absolute;
  left: 0; top: -1px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
}
.ex-list--check li::before { content: "✓"; color: var(--gold); }
.ex-list--arrow li::before { content: "→"; color: var(--gold); }
.ex-list--x li::before {
  content: "✕"; color: var(--rust);
  font-size: 13px; top: 1px;
  width: 18px; height: 18px;
  border: 1.6px solid var(--rust); border-radius: 50%;
  display: grid; place-items: center;
}
.ex-list--x li { padding-left: 30px; }

.ex-tip {
  background: var(--paper-2);
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 18px 0 2px;
}
.ex-tip__h {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest-800);
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 6px;
  font-size: 15px;
}
.ex-tip__h svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; }
.ex-tip p { margin: 0; color: #34302a; }
.ex-sub { color: var(--muted); font-style: italic; margin: -2px 0 10px; }

/* ------------------------------------------------------- ZDROWIE (szczepienia) */
.vax-h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--forest-800); margin: 22px 0 10px; }
.section-intro { max-width: var(--readw); color: #33302a; }

/* zielony ✓ w nagłówku rozwijanej sekcji szczepienia */
.chapter__num--check { background: transparent; border: none; color: var(--forest-600);
  font-size: 19px; line-height: 1; }

/* pod-nagłówki w opisie szczepienia (Czym jest / Schemat / itd.) */
.vax-q { font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  color: var(--forest-800); margin: 18px 0 6px; }
.chapter__body .vax-q:first-child { margin-top: 4px; }

/* lista z zielonym haczykiem (ochrona przed komarami) */
.vax-check { list-style: none; margin: 8px 0 14px; padding: 0; }
.vax-check li { position: relative; padding-left: 32px; margin: 0 0 9px; color: #34302a; }
.vax-check li::before { content: "✓"; position: absolute; left: 0; top: 1px;
  color: #fff; background: var(--forest-600); width: 20px; height: 20px;
  border-radius: 6px; display: grid; place-items: center; font-size: 12px; font-weight: 800; }

/* trzy kolumny ryzyka malarii */
.vax-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 12px 0 16px; }
.vax-col { border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: var(--card); display: flex; flex-direction: column; }
.vax-col__h { background: var(--forest-700); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 13.5px; text-align: center; padding: 11px 12px; line-height: 1.3; }
.vax-col__b { padding: 13px 15px; font-size: 14.5px; }
.vax-col__b p { margin: 0 0 9px; }
.vax-col__b p:last-child { margin-bottom: 0; }
.vax-col__b ul { margin: 6px 0 9px; padding-left: 20px; }
.vax-col__b li { margin: 0 0 4px; }
@media (max-width: 760px) { .vax-cols { grid-template-columns: 1fr; } }

/* numerowane kroki „Praktyczne szczegóły" */
.vax-steps { counter-reset: s; list-style: none; padding: 0; margin: 14px 0 6px;
  max-width: var(--readw); }
.vax-steps li { position: relative; padding-left: 46px; margin: 0 0 16px;
  counter-increment: s; color: #33302a; }
.vax-steps li::before { content: counter(s); position: absolute; left: 0; top: -2px;
  width: 30px; height: 30px; border-radius: 9px; background: var(--gold-soft);
  border: 1px solid var(--gold); color: var(--forest-900); font-weight: 800;
  display: grid; place-items: center; font-size: 14px; }

.pdf-todo { color: var(--muted); font-style: italic; margin: 12px 0 0; }

/* ---------------------------------------------------------------- */
/*  Trasy — treść trasy pod mapą (dni, meta, tabela wersji)         */
/* ---------------------------------------------------------------- */
.route-content { max-width: var(--maxw); margin: 8px auto 0; padding: 0 20px; }
.route-panel { margin-top: 28px; }
.route-panel__title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--forest-700); margin: 0 0 6px; line-height: 1.15;
}
.route-meta {
  font-style: italic; color: var(--muted); margin: 0 0 22px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line); font-size: 1.02rem;
}
.route-goodif { margin: 0 0 30px; }
.route-goodif h3 {
  font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); margin: 0 0 12px;
}
.route-goodif__list { margin: 0; padding-left: 1.1em; }
.route-goodif__list li { margin: 6px 0; line-height: 1.55; }

.route-days { display: flex; flex-direction: column; gap: 18px; }
.route-day {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 22px 24px;
}
.route-day__title {
  font-family: var(--font-display); font-size: 1.12rem; color: var(--forest-700);
  margin: 0 0 14px; line-height: 1.3;
}
.route-day__stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px 18px; margin: 0 0 14px;
  padding: 12px 14px; background: var(--paper-2); border-radius: 12px;
}
.route-day__stat { display: flex; flex-direction: column; gap: 1px; }
.route-day__k { font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.route-day__v { font-weight: 600; color: var(--ink); font-size: .95rem; }
.route-day__desc { margin: 0; line-height: 1.62; color: var(--ink); }
.route-day__note {
  margin: 14px 0 0; padding: 10px 14px; border-left: 3px solid var(--gold);
  background: rgba(212,164,49,.10); border-radius: 0 10px 10px 0;
  font-size: .92rem; color: var(--ink);
}
.route-table { margin-top: 30px; }
.route-table caption {
  caption-side: top; text-align: left; font-family: var(--font-display);
  font-size: 1.18rem; color: var(--ink); margin-bottom: 12px; font-weight: 600;
}
.route-todo {
  margin: 18px 0 0; padding: 12px 16px; border: 1px dashed var(--rust);
  border-radius: 12px; color: var(--rust); background: rgba(184,80,58,.06); font-size: .92rem;
}
