:root {
  --bg: #faf8f5;
  --bg-alt1: #f5f2ec;
  --bg-alt2: #eff1ea;
  --bg-alt3: #f2eff3;
  --bg-alt4: #f7efe8;
  --text: #2d2a27;
  --text-light: #7a7570;
  --text-muted: #9e9892;
  --sage: #8a9a7a;
  --sage-bg: #eef1ea;
  --sage-light: #dce3d4;
  --peach: #d4a574;
  --peach-bg: #f5ede4;
  --peach-light: #ebd9c9;
  --blue: #7a9aaa;
  --blue-bg: #e9eff2;
  --blue-light: #d2dee6;
  --lavender: #a99ab5;
  --lavender-bg: #eeeaf2;
  --lavender-light: #d9d0e0;
  --warm: #c4a87a;
  --warm-bg: #f0ece4;
  --warm-light: #ddd3c3;
  --red: #c47a6a;
  --red-bg: #f5ebe8;
  --red-text: #b06a5a;
  --green: #7a9a7a;
  --green-bg: #e8f0e8;
  --border: #e5e0d8;
  --shadow: rgba(0,0,0,0.04);
  --shadow-hover: rgba(0,0,0,0.07);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --max-width: 840px;
  --max-width-wide: 960px;
  --nav-height: 56px;
  --radius: 14px;
  --radius-sm: 10px;
  --transition: 0.2s ease;
}

html.dark-mode {
  --bg: #1a1a18;
  --bg-alt1: #22211e;
  --bg-alt2: #1e211d;
  --bg-alt3: #211f23;
  --bg-alt4: #231f1c;
  --text: #e8e4de;
  --text-light: #a8a29a;
  --text-muted: #6b6660;
  --sage: #8a9a7a;
  --sage-bg: #232620;
  --sage-light: #2f332a;
  --peach: #d4a574;
  --peach-bg: #26211c;
  --peach-light: #332a23;
  --blue: #7a9aaa;
  --blue-bg: #1e2226;
  --blue-light: #2a3035;
  --lavender: #a99ab5;
  --lavender-bg: #222026;
  --lavender-light: #2e2b33;
  --warm: #c4a87a;
  --warm-bg: #24211c;
  --warm-light: #302b23;
  --red: #c47a6a;
  --red-bg: #261e1c;
  --green: #7a9a7a;
  --green-bg: #1e241e;
  --border: #33302b;
  --shadow: rgba(0,0,0,0.15);
  --shadow-hover: rgba(0,0,0,0.25);
}

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

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

/* Navigation */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(250,248,245,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: background var(--transition);
}

html.dark-mode nav { background: rgba(26,26,24,0.88); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.nav-brand {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}

.nav-links a:hover, .nav-links a:focus { color: var(--text); background: var(--border); }
.nav-links a.active { color: var(--text); background: var(--sage-bg); font-weight: 600; }

.theme-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition);
  margin-left: 0.25rem;
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--text-light);
}

.theme-icon-light, .theme-icon-dark {
  line-height: 1;
}
html.dark-mode .theme-icon-light { display: none; }
.theme-icon-dark { display: none; }
html.dark-mode .theme-icon-dark { display: inline; }

/* Sections */
section {
  padding: 4.5rem 1.5rem;
}

section:nth-of-type(odd) { background: var(--bg); }
section:nth-of-type(even) { background: var(--bg-alt1); }
#hero { background: var(--bg); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

/* Hero */
#hero {
  padding: 8rem 1.5rem 4.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 640px;
}

.hero-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage-bg);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--sage);
}

#hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.btn-download {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-download:hover {
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
}

#hero .subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 1rem;
  line-height: 1.55;
}

#hero .version {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Typography */
h2 {
  font-size: 1.75rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
  color: var(--text);
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}

p { margin-bottom: 1rem; color: var(--text); }
ul, ol { margin: 0 0 1.25rem 1.5rem; }
li { margin-bottom: 0.35rem; line-height: 1.55; }
a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--blue-light); }
a:hover { color: var(--text); text-decoration-color: var(--text); }
strong { font-weight: 600; }

.lede {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin: 0.75rem 0 1.5rem;
  max-width: 680px;
}

.callout-emph {
  font-weight: 600;
  font-style: italic;
  color: var(--peach);
  font-size: 1.0625rem;
  margin: 1rem 0 0;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

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

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px var(--shadow), 0 1px 2px var(--shadow);
  transition: box-shadow var(--transition);
}

.card:hover { box-shadow: 0 4px 12px var(--shadow-hover); }

.card-sage { background: var(--sage-bg); }
.card-peach { background: var(--peach-bg); }
.card-blue { background: var(--blue-bg); }
.card-lavender { background: var(--lavender-bg); }
.card-warm { background: var(--warm-bg); }
.card-green { background: var(--green-bg); }

.card .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  display: block;
}

.card ul, .card ol {
  margin: 0 0 0 1.1rem;
}

.card li {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
}

.card p {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.card p:last-child { margin-bottom: 0; }

/* Callouts */
.callout {
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.callout-warning { background: var(--peach-bg); border-left: 4px solid var(--peach); }
.callout-info { background: var(--blue-bg); border-left: 4px solid var(--blue); }
.callout-tip { background: var(--sage-bg); border-left: 4px solid var(--sage); }

.callout .callout-label {
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.callout ul { margin: 0.5rem 0 0 1.2rem; }
.callout li { font-size: 0.9375rem; margin-bottom: 0.45rem; }
.callout p { font-size: 0.9375rem; }

/* Lager grid (six layers) */
.lager-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.lager-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 3px var(--shadow);
  transition: box-shadow var(--transition);
}

.lager-card:hover { box-shadow: 0 4px 12px var(--shadow-hover); }

.lager-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}

.lager-1 .lager-num { background: var(--warm); }
.lager-2 .lager-num { background: var(--sage); }
.lager-3 .lager-num { background: var(--peach); }
.lager-4 .lager-num { background: var(--blue); }
.lager-5 .lager-num { background: var(--lavender); }
.lager-6 .lager-num { background: var(--peach); }

.lager-title {
  font-weight: 700;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.lager-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* Crisis flowchart */
.kris-flow {
  margin: 2rem 0;
  position: relative;
}

.kris-flow-labels {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 1;
}

.kris-flow-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kris-flow-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-left: 44px;
}

.kris-step {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  text-align: center;
  min-width: 180px;
  flex: 1;
  font-size: 0.9375rem;
  box-shadow: 0 1px 3px var(--shadow);
  position: relative;
}

.kris-step-title {
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kris-step-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.kris-step-akut { background: var(--peach-bg); }
.kris-step-akut .kris-step-title { color: var(--peach); }

.kris-step-112 {
  font-weight: 700;
  border: 2px solid var(--peach);
}

.kris-step-112 .kris-step-title {
  font-size: 1.1rem;
}

.kris-step-sok { background: var(--blue-bg); }
.kris-step-sok .kris-step-title { color: var(--blue); }

.kris-step-stod { background: var(--lavender-bg); }
.kris-step-stod .kris-step-title { color: var(--lavender); }

.kris-step-info { background: var(--sage-bg); }
.kris-step-info .kris-step-title { color: var(--sage); }

.kris-step-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.kris-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.5rem 0;
  line-height: 1;
  text-align: center;
}

@media (max-width: 640px) {
  .kris-step { min-width: 140px; font-size: 0.8125rem; padding: 0.7rem 1rem; }
  .kris-step-row { gap: 0.5rem; }
  .kris-arrow { font-size: 0.875rem; padding: 0.35rem 0; }
  .kris-flow-label { font-size: 0.625rem; }
}

/* Zone grid */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.zone-card {
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.zone-green { background: var(--green-bg); }
.zone-yellow { background: var(--warm-bg); }
.zone-red { background: var(--red-bg); }

.zone-label {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.zone-green .zone-label { color: var(--green); }
.zone-yellow .zone-label { color: var(--warm); }
.zone-red .zone-label { color: var(--red-text); }

.zone-card p { font-size: 0.875rem; margin-bottom: 0; }

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.timeline-phase {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: 0 1px 3px var(--shadow);
}

.phase-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  display: block;
}

.phase-warm { color: var(--warm); }
.phase-sage { color: var(--sage); }
.phase-peach { color: var(--peach); }
.phase-blue { color: var(--blue); }
.phase-lavender { color: var(--lavender); }

.phase-time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.timeline-phase p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0; }

/* Checklist */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.checklist-day {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: 0 1px 3px var(--shadow);
}

.checklist-day h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
  color: var(--text-light);
}

.checklist-day ul {
  list-style: none;
  margin: 0;
}

.checklist-day li {
  padding: 0.3rem 0;
  font-size: 0.875rem;
  line-height: 1.45;
  position: relative;
  padding-left: 1.2rem;
}

.checklist-day li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

th, td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

th {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-alt1);
}

.blank {
  display: inline-block;
  min-width: 120px;
  border-bottom: 2px dotted var(--border);
  color: var(--text-muted);
  font-style: italic;
  min-height: 1.2em;
}

.blank-inline {
  display: inline-block;
  min-width: 80px;
  border-bottom: 2px dotted var(--border);
  color: var(--text-muted);
  font-style: italic;
  min-height: 1.2em;
}

/* Contact table */
.contact-table th {
  font-weight: 600;
  color: var(--blue);
  background: transparent;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  width: 180px;
}

.contact-table .cat-row td {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 1.25rem;
  border-bottom: none;
  background: transparent;
}

.contact-table .blank { min-width: 200px; }

/* Glossary */
.glossary-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  margin: 1.25rem 0;
}

.glossary-term {
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  color: var(--text);
  white-space: nowrap;
}

.glossary-def {
  font-size: 0.875rem;
  padding: 0.3rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.glossary-def:last-of-type { border-bottom: none; }

/* Product tree */
.product-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.product-q {
  background: var(--blue-bg);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 1px 3px var(--shadow);
  color: var(--blue);
}

.product-branches {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.product-branch {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}

.product-branch-header {
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.product-branch-header.warm { background: var(--warm-bg); color: var(--warm); }
.product-branch-header.green { background: var(--green-bg); color: var(--green); }
.product-branch-header.lavender { background: var(--lavender-bg); color: var(--lavender); }

.product-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.875rem;
  text-align: center;
  font-size: 0.8125rem;
  box-shadow: 0 1px 2px var(--shadow);
}

.product-item .product-name {
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.product-item p { font-size: 0.8125rem; margin: 0; color: var(--text-light); }

/* GPS cards */
.gps-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

/* Incident log */
.incident-entry {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px var(--shadow);
}

.incident-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.incident-row:last-child { margin-bottom: 0; }

.incident-field {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  white-space: nowrap;
}

.incident-blank {
  flex: 1;
  border-bottom: 2px dotted var(--border);
  min-height: 1.5rem;
  min-width: 120px;
}

/* Nödkit */
.nodkit-foot {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Vision cards */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.vision-card {
  background: var(--sage-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.vision-year {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--sage);
  display: block;
  margin-bottom: 0.75rem;
}

.vision-card p {
  font-size: 0.9375rem;
  margin: 0;
  color: var(--text);
}

/* Doc info */
.doc-info-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  margin: 0.75rem 0;
}

.doc-info-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Season grid */
.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.season-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: 0 1px 3px var(--shadow);
}

.season-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.season-card ul { margin: 0; }
.season-card li { font-size: 0.875rem; }

/* Footer */
footer {
  padding: 4.5rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

.footer-hearts {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.4rem;
  color: var(--peach);
}

footer p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.footer-version {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: var(--text-muted) !important;
  margin-top: 0.5rem !important;
}

/* Print */
@media print {
  nav { display: none; }
  #hero { padding-top: 1rem; }
  section { page-break-inside: avoid; break-inside: avoid; }
  .card:hover, .timeline-phase:hover, .checklist-day:hover { box-shadow: 0 1px 3px var(--shadow); }
  .kris-step, .card, .callout, .timeline-phase, .checklist-day, .season-card, .vision-card { break-inside: avoid; }
  body { font-size: 11pt; }
  .section-inner { max-width: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { gap: 0.1rem; }
  .nav-links a { font-size: 0.6875rem; padding: 0.25rem 0.4rem; }
  .season-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  #hero h1 { font-size: 1.75rem; }
  #hero { padding: 5.5rem 1rem 3rem; }
  section { padding: 2.5rem 1rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.05rem; margin-top: 1.75rem; }
  .card-grid { gap: 0.75rem; }
  .card { padding: 1.25rem; }
  .callout { padding: 1.25rem; }
  .product-branches { gap: 0.75rem; }
  .product-branch { min-width: 160px; }
  .lager-card { padding: 1rem; }
  .vision-grid { gap: 0.75rem; }
  .vision-card { padding: 1.25rem; }
}
