/* ============================================================
   CROSSWALK CHRONICLE — independent Chicken Road fan magazine
   Theme: light editorial print journal (cream paper + ink +
   safety-orange accents, serif display, rounded cards)
   ============================================================ */

:root {
  /* paper surfaces */
  --paper: #faf5ec;
  --paper-deep: #f1e9da;
  --card: #fffdf8;
  --card-deep: #fbf4e6;

  /* ink */
  --ink: #25211a;
  --ink-soft: #6d6355;
  --ink-faint: #a49a8a;

  /* accents */
  --accent: #e0532b;             /* safety orange */
  --accent-deep: #b83e1e;
  --accent-soft: #fceae2;
  --gold: #df9f2e;
  --leaf: #4f8a5e;               /* used sparingly for "safe" marks */

  /* lines */
  --line: #e4dac7;
  --line-strong: #d3c5ab;

  /* type */
  --font-display: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-body: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;

  /* shape */
  --radius: 16px;
  --radius-lg: 22px;

  --maxw: 1150px;
  --ticker-h: 36px;
  --header-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--ticker-h) + var(--header-h));
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--card); }

img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3, .serif { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.6vw, 3.9rem); line-height: 1.06; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.15; }
h3 { font-size: 1.18rem; line-height: 1.3; }

p { color: var(--ink-soft); }
strong { color: var(--ink); }

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.lead em { color: var(--ink); }

/* kicker: "Chapter One · The Subject" */
.kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section { padding: 78px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head p { margin-top: 12px; }

/* ------------------------------------------------------------
   TICKER
   ------------------------------------------------------------ */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  background: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1001;
}
.ticker__label {
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0 16px;
  background: var(--accent);
  color: var(--card);
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 50s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--paper);
  padding: 0 32px;
  position: relative;
}
.ticker__track span::after { content: "◆"; position: absolute; right: -8px; color: var(--gold); font-size: 0.55rem; top: 4px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: var(--ticker-h); left: 0; right: 0;
  height: var(--header-h);
  background: rgba(250, 245, 236, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
}
.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex: 0 0 auto;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.1;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}

.main-nav ul { display: flex; gap: 6px; list-style: none; }
.main-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 15px;
  border-radius: 99px;
  display: block;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { color: var(--ink); background: var(--paper-deep); text-decoration: none; }
.main-nav a.active { background: var(--ink); color: var(--paper); }

.nav-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 99px;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 99px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--solid { background: var(--accent); color: var(--card); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(224, 83, 43, 0.3); text-decoration: none; }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37, 33, 26, 0.25); text-decoration: none; }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--paper-deep); text-decoration: none; }
.btn--small { padding: 10px 20px; font-size: 0.8rem; }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, var(--accent-soft) 0%, transparent 34%),
    radial-gradient(circle at 4% 90%, var(--paper-deep) 0%, transparent 40%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  background: var(--card);
  border: 1px solid var(--line-strong);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__byline {
  margin-top: 26px;
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-style: italic;
}

/* ------------------------------------------------------------
   DISPATCH PANEL — live crossing feed
   ------------------------------------------------------------ */
.dispatch {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--paper);
  box-shadow: 0 24px 60px rgba(37, 33, 26, 0.28);
}
.dispatch__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(250, 245, 236, 0.15);
  margin-bottom: 16px;
}
.dispatch__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.dispatch__live {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--paper-deep);
  background: rgba(224, 83, 43, 0.25);
  border: 1px solid rgba(224, 83, 43, 0.5);
  padding: 4px 12px;
  border-radius: 99px;
}
.dispatch__score {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}
.dispatch__score .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.dispatch__score .cap {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 245, 236, 0.55);
}
.dispatch__feed {
  background: rgba(250, 245, 236, 0.06);
  border: 1px solid rgba(250, 245, 236, 0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-height: 168px;
  max-height: 168px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.feed-line {
  font-size: 0.84rem;
  color: rgba(250, 245, 236, 0.85);
  padding: 4px 0;
  border-bottom: 1px dashed rgba(250, 245, 236, 0.08);
  animation: feed-in 0.3s ease;
}
.feed-line:last-child { border-bottom: none; }
.feed-line .t { color: var(--gold); font-weight: 700; margin-right: 8px; }
.feed-line.safe .t { color: var(--leaf); }
.feed-line.end .t { color: var(--accent); }
@keyframes feed-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.dispatch__controls { display: flex; gap: 10px; flex-wrap: wrap; }
.dispatch__note {
  margin-top: 14px;
  font-size: 0.74rem;
  color: rgba(250, 245, 236, 0.5);
  font-style: italic;
}

/* ------------------------------------------------------------
   STATS
   ------------------------------------------------------------ */
.stats { padding: 54px 0; border-bottom: 1px solid var(--line); background: var(--card); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { border-top: 3px solid var(--accent); padding-top: 16px; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ------------------------------------------------------------
   CARDS
   ------------------------------------------------------------ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 0 var(--paper-deep);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(37, 33, 26, 0.12); }
.card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.94rem; }
.card__tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

/* tips */
.tips-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.tip {
  background: var(--card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tip:hover { border-color: var(--accent); transform: translateY(-3px); }
.tip__no {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.tip h3 { font-size: 1rem; margin-bottom: 7px; }
.tip p { font-size: 0.87rem; }

/* ------------------------------------------------------------
   TABLE
   ------------------------------------------------------------ */
.table-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(37, 33, 26, 0.06);
}
.table-card__scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
thead th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: left;
  padding: 16px 20px;
  background: var(--paper-deep);
  border-bottom: 2px solid var(--line-strong);
  white-space: nowrap;
}
tbody td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.93rem;
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) td { background: rgba(241, 233, 218, 0.4); }
td.rowhead { font-family: var(--font-display); font-weight: 700; color: var(--ink); white-space: nowrap; }
.pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-right: 8px;
  color: var(--card);
}
.pill--easy { background: var(--leaf); }
.pill--medium { background: var(--gold); }
.pill--hard { background: var(--accent); }
.pill--hardcore { background: var(--ink); }
.table-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-style: italic;
  max-width: 78ch;
}

/* ------------------------------------------------------------
   PANELS — quiz / checklist / generator
   ------------------------------------------------------------ */
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 4px 20px rgba(37, 33, 26, 0.06);
}
.panel + .panel { margin-top: 26px; }
.panel__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 6px;
}

.quiz-q { margin-bottom: 28px; }
.quiz-q .q-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.quiz-opts { display: grid; gap: 10px; }
.quiz-opt {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 12px;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.quiz-opt:hover { border-color: var(--accent); color: var(--ink); }
.quiz-opt.picked-right { border-color: var(--leaf); background: #edf5ee; color: var(--ink); }
.quiz-opt.picked-wrong { border-color: var(--accent); background: var(--accent-soft); color: var(--ink); }
.quiz-opt:disabled { cursor: default; opacity: 0.8; }
.quiz-verdict { margin-top: 10px; font-size: 0.88rem; font-style: italic; color: var(--ink-faint); min-height: 22px; }
.quiz-result {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--ink);
  font-size: 1rem;
  display: none;
}

.check-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  cursor: pointer;
  user-select: none;
}
.check-item:last-of-type { border-bottom: none; }
.check-item input { accent-color: var(--accent); width: 18px; height: 18px; margin-top: 4px; cursor: pointer; }
.check-item span { color: var(--ink-soft); font-size: 0.95rem; }
.check-item input:checked + span { color: var(--ink); }
.check-meter {
  height: 10px;
  background: var(--paper-deep);
  border-radius: 99px;
  overflow: hidden;
  margin: 20px 0 12px;
}
.check-meter__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 99px;
  transition: width 0.35s ease;
}
.check-verdict { font-size: 0.88rem; font-style: italic; color: var(--ink-faint); }

.advice-box {
  min-height: 120px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  padding: 26px 28px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.55;
  transition: opacity 0.2s ease;
}
.advice-box.fading { opacity: 0; }

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--line-strong); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  text-align: left;
  padding: 19px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--accent-deep); }
.faq-q .sign {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-item.open .faq-q .sign { transform: rotate(45deg); background: var(--accent); color: var(--card); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 0.94rem; }
.faq-item.open .faq-a { max-height: 360px; }

/* ------------------------------------------------------------
   BADGES
   ------------------------------------------------------------ */
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--leaf);
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */
.cta {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 52px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  color: var(--paper);
  background-image: radial-gradient(circle at 92% 20%, rgba(224, 83, 43, 0.4) 0%, transparent 40%);
}
.cta h2 { color: var(--paper); }
.cta p { color: rgba(250, 245, 236, 0.72); margin-top: 10px; max-width: 58ch; }
.cta .btn--ghost { border-color: var(--paper); color: var(--paper); }
.cta .btn--ghost:hover { background: rgba(250, 245, 236, 0.12); }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 245, 236, 0.65);
  padding: 64px 0 36px;
}
.site-footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(250, 245, 236, 0.65); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--paper); }
.footer-about .brand__name { color: var(--paper); }
.footer-about .brand__sub { color: rgba(250, 245, 236, 0.45); }
.footer-about p { color: rgba(250, 245, 236, 0.55); font-size: 0.87rem; margin-top: 14px; }
.footer-disclaimer {
  font-size: 0.84rem;
  color: rgba(250, 245, 236, 0.55);
  border: 1px dashed rgba(250, 245, 236, 0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 30px;
}
.footer-bottom {
  border-top: 1px solid rgba(250, 245, 236, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(250, 245, 236, 0.4);
}

/* ------------------------------------------------------------
   COOKIE BANNER
   ------------------------------------------------------------ */
.cookie {
  position: fixed;
  bottom: 22px;
  left: 22px;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  z-index: 2000;
  box-shadow: 0 22px 60px rgba(37, 33, 26, 0.25);
  display: none;
}
.cookie.show { display: block; }
.cookie p { font-size: 0.87rem; margin-bottom: 15px; }
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ------------------------------------------------------------
   INNER PAGES
   ------------------------------------------------------------ */
.page-hero {
  padding: 66px 0 50px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, var(--accent-soft) 0%, transparent 30%);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin: 12px 0 16px; }
.crumb {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.crumb a { color: var(--ink-soft); }

.prose { max-width: 74ch; }
.prose p { margin-bottom: 18px; }
.prose h2 { margin: 42px 0 16px; }
.prose h3 { margin: 30px 0 12px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; color: var(--ink-soft); }
.prose li { margin-bottom: 9px; }
.prose > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  float: left;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--accent);
}

.step-list { list-style: none; counter-reset: step; margin: 30px 0; }
.step-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 30px 66px;
}
.step-list li:last-child { padding-bottom: 0; }
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--accent);
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 48px;
  bottom: 2px;
  width: 2px;
  background: var(--line-strong);
}
.step-list h3 { margin-bottom: 5px; }
.step-list p { font-size: 0.95rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

.callout {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 24px 0;
  border-left: 4px solid var(--accent);
}
.callout--leaf { border-left-color: var(--leaf); background: #edf5ee; }
.callout--ink { border-left-color: var(--ink); background: var(--paper-deep); }

.glossary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.glossary-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
}
.glossary-item dt {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 5px;
}
.glossary-item dt::before { content: "» "; color: var(--accent); }
.glossary-item dd { color: var(--ink-soft); font-size: 0.89rem; }

/* quote pull */
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  border-top: 3px solid var(--accent);
  padding-top: 22px;
  max-width: 56ch;
}
.pullquote small {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* contact form */
.form-grid { display: grid; gap: 18px; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field textarea { min-height: 135px; resize: vertical; }
.form-field .err { color: var(--accent-deep); font-size: 0.8rem; margin-top: 6px; display: none; }
.form-field.invalid input, .form-field.invalid textarea { border-color: var(--accent-deep); }
.form-field.invalid .err { display: block; }
.form-success {
  display: none;
  background: #edf5ee;
  border: 1px solid var(--leaf);
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.94rem;
  margin-top: 20px;
}

/* ------------------------------------------------------------
   REVEAL
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1020px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .cards, .tips-grid, .glossary-grid, .stats__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line-strong);
    padding: 12px 22px 20px;
    box-shadow: 0 20px 40px rgba(37, 33, 26, 0.12);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 13px 12px; border-radius: 10px; border-bottom: 1px dashed var(--line); }

  .cta { padding: 36px 28px; }
  .panel { padding: 24px 20px; }
  .cookie { left: 14px; right: 14px; bottom: 14px; max-width: none; }
  .dispatch { padding: 20px; }
  .dispatch__score .num { font-size: 2.1rem; }
}