/* larum sports – design system (draft 2026-08) */
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("/fonts/barlow-condensed-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("/fonts/barlow-condensed-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("/fonts/barlow-condensed-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("/fonts/barlow-condensed-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Brand */
  --green: #30592d;          /* Zirbenwald – primary */
  --green-deep: #24451f;
  /* Scent palette (packaging 2026) */
  --zirbenwald: #30592d;
  --sandelholz: #534134;
  --lavendel: #563b54;
  --limette: #e69715;
  --mandarine: #d15116;
  --aloe: #828c64;
  --aktivkohle: #49433d;
  --extramild: #d0a867;
  /* Surface & text */
  --paper: #faf9f6;
  --paper-alt: #f2efe9;
  --ink: #26241f;
  --ink-soft: #5c584f;
  --line: #e6e2d9;
  --radius: 4px;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16.5px;
}

h1, h2, h3, .display {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
}

img { max-width: 100%; display: block; }
a { color: var(--green); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 28px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 18px;
  max-width: 900px;
}
.logo img { height: 48px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav a:hover { color: var(--green); }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; }

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--green-deep); }

/* Hero */
.hero { background: var(--paper); text-align: center; }
.hero .wrap { padding: 100px 28px 84px; }
.hero .kicker {
  font-family: "Inter", sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--green);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--green); }
.hero p.lead {
  font-size: 1.12rem; font-weight: 350; color: var(--ink-soft);
  max-width: 560px; margin: 0 auto 36px;
}
.hero .sub-link { display: block; margin-top: 18px; font-size: 0.95rem; }

/* Sections */
section { padding: 92px 0; }
section.alt { background: var(--paper-alt); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-head .kicker {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-weight: 350; }

/* Philosophy pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.pillar h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--green); }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; font-weight: 350; }

/* Drin / Weg */
.inout { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.inout > div { background: var(--paper); padding: 40px 44px; }
.inout h3 { font-size: 1.35rem; margin-bottom: 18px; }
.inout .in h3 { color: var(--green); }
.inout .out h3 { color: var(--mandarine); }
.inout ul { list-style: none; }
.inout li { padding: 7px 0 7px 30px; position: relative; color: var(--ink-soft); font-weight: 350; }
.inout li::before {
  position: absolute; left: 0; top: 7px; font-weight: 700; font-size: 15px;
}
.inout .in li::before { content: "＋"; color: var(--green); }
.inout .out li::before { content: "－"; color: var(--mandarine); }

/* Product grid */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(38, 36, 31, 0.1); }
.product .swatch { height: 5px; }
.product img {
  aspect-ratio: 1; object-fit: cover;
  width: calc(100% - 52px);
  margin: 26px auto 0;
  border-radius: 2px;
}
.product .p-body { padding: 16px 18px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product h3 { font-size: 1.12rem; letter-spacing: 0.05em; }
.product p { font-size: 0.88rem; color: var(--ink-soft); font-weight: 350; flex: 1; }
.product a.buy {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none;
  margin-top: 8px;
}

/* Testimonials */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 34px;
}
.quote p { color: var(--ink-soft); font-weight: 350; font-size: 0.98rem; }
.quote cite {
  display: block; margin-top: 16px; font-style: normal;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--green);
}

/* Blog hubs */
.hubs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.hub { border-top: 3px solid var(--green); background: #fff; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius); padding: 28px 28px 24px; }
.hub h3 { font-size: 1.25rem; margin-bottom: 16px; }
.hub ul { list-style: none; }
.hub li { padding: 8px 0; border-top: 1px solid var(--line); }
.hub li:first-child { border-top: none; }
.hub a { text-decoration: none; color: var(--ink); font-size: 0.96rem; font-weight: 450; }
.hub a:hover { color: var(--green); }
.hub .more { display: inline-block; margin-top: 14px; font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); text-decoration: none; }

/* Newsletter band */
.newsletter { background: var(--green); color: #fff; text-align: center; }
.newsletter .wrap { padding: 72px 28px; }
.newsletter h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 12px; }
.newsletter p { opacity: 0.85; font-weight: 350; max-width: 480px; margin: 0 auto 30px; }
.newsletter form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter input[type="email"] {
  flex: 1; padding: 13px 16px; border: none; border-radius: var(--radius);
  font-family: "Inter", sans-serif; font-size: 15px;
}
.newsletter button {
  background: var(--limette); color: var(--ink); border: none; cursor: pointer;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.newsletter .fineprint { font-size: 12px; opacity: 0.6; margin-top: 16px; }

/* Footer */
.site-footer { background: var(--ink); color: #b8b4ab; padding: 44px 0; font-size: 0.9rem; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 22px; }

/* Responsive */
@media (max-width: 900px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .pillars, .hubs, .quotes { grid-template-columns: 1fr; }
  .inout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 18px 28px; gap: 16px; align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 64px 0; }
  .hero .wrap { padding: 68px 24px 56px; }
  .newsletter form { flex-direction: column; }
  .products { grid-template-columns: 1fr; }
}

/* ===== Article template ===== */
.article-hero { background: var(--paper-alt); border-bottom: 1px solid var(--line); }
.article-hero .wrap-narrow { padding: 56px 28px 44px; }
.article-hero .hub-tag {
  display: inline-block; font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; background: var(--green); padding: 4px 12px; border-radius: 3px;
  text-decoration: none; margin-bottom: 18px;
}
.article-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.article-hero .lead { color: var(--ink-soft); font-weight: 350; font-size: 1.08rem; }
.article-hero .meta { margin-top: 18px; font-size: 0.85rem; color: var(--ink-soft); }

.article-body { padding: 56px 0 72px; }
.article-body .wrap-narrow > img.featured { border-radius: var(--radius); margin-bottom: 40px; }

.toc {
  background: var(--paper-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 44px;
}
.toc strong {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 10px;
}
.toc ol { margin: 0; padding-left: 0; list-style-position: inside; columns: 2; column-gap: 36px; }
.toc li { font-size: 0.93rem; padding: 3px 0; break-inside: avoid; }
.toc li::marker { color: var(--green); font-weight: 400; }
.toc a { text-decoration: none; color: var(--ink-soft); }
.toc a:hover { color: var(--green); }

.prose h2 {
  font-size: 1.7rem; margin: 48px 0 16px; scroll-margin-top: 90px;
}
.prose h3 { font-size: 1.2rem; margin: 32px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); font-weight: 380; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--ink-soft); font-weight: 380; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--green); }

/* Inline product card */
.inline-product {
  display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent, var(--green));
  border-radius: var(--radius); padding: 22px 26px; margin: 40px 0;
}
.inline-product img { width: 130px; border-radius: 3px; }
.inline-product .kicker {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent, var(--green)); margin-bottom: 4px;
}
.inline-product h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--accent, var(--green)); }
.inline-product p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 12px; }
.inline-product a.buy {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none;
  color: var(--accent, var(--green));
}

/* End-of-article product strip */
.product-strip { border-top: 1px solid var(--line); background: var(--paper-alt); padding: 56px 0; }
.product-strip h2 { text-align: center; font-size: 1.6rem; margin-bottom: 30px; }
.strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.strip a {
  text-decoration: none; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 12px 14px;
}
.strip img { width: 78%; margin: 0 auto 10px; border-radius: 3px; }
.strip span {
  display: block; font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.25;
}

/* FAQ (details accordion) */
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: 12px;
}
.faq-list summary {
  cursor: pointer; padding: 16px 48px 16px 20px; font-weight: 550; font-size: 0.98rem;
  list-style: none; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--green); font-size: 1.3rem; font-weight: 400;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list .faq-body { padding: 0 20px 16px; color: var(--ink-soft); font-weight: 380; font-size: 0.95rem; }

/* Related posts */
.related { padding: 56px 0 72px; }
.related h2 { text-align: center; font-size: 1.6rem; margin-bottom: 30px; }
.related .cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related a.card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green);
  border-radius: var(--radius); padding: 22px 24px; text-decoration: none;
}
.related a.card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }
.related a.card:hover h3 { color: var(--green); }
.related a.card p { font-size: 0.9rem; color: var(--ink-soft); font-weight: 380; }

/* ===== Blog archive / hubs ===== */
.hub-section { padding: 64px 0; }
.hub-section + .hub-section { border-top: 1px solid var(--line); }
.hub-section .hub-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px; }
.hub-section .hub-head h2 { font-size: 1.9rem; scroll-margin-top: 90px; }
.hub-section .hub-head .count { color: var(--ink-soft); font-size: 0.9rem; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; text-decoration: none; display: flex; flex-direction: column; gap: 8px;
  border-top: 3px solid var(--hub, var(--green));
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.post-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(38,36,31,0.09); }
.post-card h3 { font-size: 1.12rem; color: var(--ink); }
.post-card:hover h3 { color: var(--hub, var(--green)); }
.post-card p { font-size: 0.9rem; color: var(--ink-soft); font-weight: 380; flex: 1; }
.post-card .read {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--hub, var(--green));
}

/* ===== Newsletter modal ===== */
.nl-modal {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(38, 36, 31, 0.55); align-items: center; justify-content: center; padding: 24px;
}
.nl-modal.open { display: flex; }
.nl-modal .nl-box {
  background: var(--paper); border-radius: 6px; max-width: 560px; width: 100%;
  padding: 28px 24px 18px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.nl-modal .nl-head { text-align: center; margin-bottom: 14px; }
.nl-modal .nl-head h3 { font-size: 1.5rem; margin-bottom: 6px; }
.nl-modal .nl-head p { font-size: 0.92rem; color: var(--ink-soft); font-weight: 380; }
.nl-modal .nl-close {
  position: absolute; top: 10px; right: 14px; background: none; border: none;
  font-size: 26px; color: var(--ink-soft); cursor: pointer; z-index: 2;
}
.nl-modal iframe { width: 100%; height: 500px; border: none; border-radius: 4px; background: #fff; }
.nl-modal .nl-placeholder {
  padding: 60px 30px; text-align: center; color: var(--ink-soft); font-size: 0.95rem;
}

@media (max-width: 900px) {
  .strip { grid-template-columns: repeat(4, 1fr); }
  .related .cards3, .post-grid { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .inline-product { grid-template-columns: 90px 1fr; padding: 18px; }
  .inline-product img { width: 90px; }
}

.quotes.three { grid-template-columns: 1fr; }

/* TOC: hard-flush numbered list (belt and suspenders) */
.toc ol { padding: 0 !important; margin-left: 0 !important; }
.toc li { list-style-position: inside; margin-left: 0; padding-left: 0; }

/* Consent banner */
#consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink); color: #eceae4;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}
#consent-banner .cb-inner {
  max-width: 900px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
#consent-banner p { margin: 0; font-size: 0.9rem; flex: 1; min-width: 260px; }
#consent-banner a { color: #fff; }
#consent-banner .cb-actions { display: flex; gap: 10px; }
.cb-btn {
  border: none; cursor: pointer; border-radius: var(--radius);
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 10px 20px;
}
.cb-yes { background: var(--green); color: #fff; }
.cb-no { background: transparent; color: #eceae4; border: 1px solid #5c584f; }
