/* SoulSize Design-Tokens + Bootstrap-Overrides */

:root {
  /* Build-ID für Cache-Bust */
  --soulsize-build: "v2-mobile-mega-fix";

  /* Bootstrap-Container-Override: 1400px → 1600px */
  --bs-container-xxl: 1600px;

  /* Globales Edge-Padding für Container (synchron mit Nav-Logo!) */
  --soulsize-edge: clamp(16px, 3vw, 48px);

  /* SoulSize Farben (aus v1 übernommen, unverändert) */
  --soulsize-bg: #F4EFE8;
  --soulsize-bg-2: #EDE6DC;
  --soulsize-ink: #1F1B17;
  --soulsize-ink-2: #3A332C;
  --soulsize-muted: #6B6054;
  --soulsize-line: #D9CFC1;
  --soulsize-line-soft: #E6DDD0;
  --soulsize-accent: #B7553C;
  --soulsize-accent-ink: #8A3E2C;
  --soulsize-paper: #FBF7F0;
  --soulsize-gold: #B8996A;

  /* SoulSize Container-Modifier */
  --soulsize-container-narrow: 900px;
  --soulsize-container-essay: 820px;
  --soulsize-container-prose: 720px;

  /* v1-Kurzaliase — lösen legacy.css :root ab */
  --bg: var(--soulsize-bg);
  --bg-2: var(--soulsize-bg-2);
  --ink: var(--soulsize-ink);
  --ink-2: var(--soulsize-ink-2);
  --muted: var(--soulsize-muted);
  --line: var(--soulsize-line);
  --line-soft: var(--soulsize-line-soft);
  --accent: var(--soulsize-accent);
  --accent-ink: var(--soulsize-accent-ink);
  --paper: var(--soulsize-paper);
  --gold: var(--soulsize-gold);
}

/* Bootstrap-Container: 1600px max-width + globales Edge-Padding */
.container-xxl,
.container-fluid {
  max-width: var(--bs-container-xxl);
  padding-inline: var(--soulsize-edge);
}

.container-fluid {
  max-width: none;
}

/* Body-Defaults */
body {
  background: var(--soulsize-bg);
  color: var(--soulsize-ink);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}
/* SoulSize Custom Components — BEM-light, prefix soulsize-*
   Layout-Klassen aus Plan v2 Klassen-Katalog. Nur Layout — keine Farb-/Typo-Änderungen. */

/* ============================================================
   Container-Modifier
   ============================================================ */
.soulsize-container--narrow,
.soulsize-container--essay,
.soulsize-container--prose {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--soulsize-edge);
}

.soulsize-container--narrow { max-width: var(--soulsize-container-narrow); }
.soulsize-container--essay  { max-width: var(--soulsize-container-essay); }
.soulsize-container--prose  { max-width: var(--soulsize-container-prose); }

/* ============================================================
   Section
   ============================================================ */
.soulsize-section {
  padding-block: clamp(20px, 6vw, 25px);
  position: relative;
}

.soulsize-section--paper {
  background: var(--soulsize-paper);
}

.soulsize-section--ink {
  background: var(--soulsize-ink);
  color: var(--soulsize-bg);
}

.soulsize-section--bordered-top {
  border-top: 1px solid var(--soulsize-line-soft);
}

.soulsize-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-block: 48px 24px;
}

.soulsize-section__lead {
  flex: 1;
}

.soulsize-section__aside {
  text-align: right;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--soulsize-muted);
}

.soulsize-section__aside a {
  color: var(--soulsize-ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--soulsize-ink);
}

.soulsize-section__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soulsize-muted);
  margin-bottom: 10px;
}

.soulsize-section__title {
  letter-spacing: -.02em;
  color: var(--soulsize-ink);
  /* max-width: 680px; */
  margin: 0;
  font-family: Fraunces, serif;
  font-size: clamp(36px, 4.2vw, 46px);
  font-weight: 400;
  line-height: 1;
}

.soulsize-section__title em {
  font-style: italic;
  color: var(--soulsize-accent-ink);
}

@media (max-width: 768px) {
  .soulsize-section__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .soulsize-section__aside {
    text-align: left;
    max-width: none;
  }
}

/* ============================================================
   Hero (Landing) — Section + Inner Modifier
   ============================================================ */
.soulsize-section--hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding-block: 0;
}

.soulsize-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.soulsize-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.soulsize-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--soulsize-bg) 0%, var(--soulsize-bg) 30%, transparent 60%);
}

.soulsize-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 64px 80px;
}

@media (max-width: 640px) {
  .soulsize-section--hero {
    min-height: auto;
  }
  .soulsize-hero__bg {
    display: none;
  }
}

/* ============================================================
   Partners — Section + Inner Modifier
   ============================================================ */
.soulsize-section--partners {
  background: var(--soulsize-paper);
  border-top: 1px solid var(--soulsize-line-soft);
  padding-block: 48px;
}

.soulsize-partners__inner {
  /* Container-xxl base, kein extra padding-block (kommt von --partners) */
}

@media (max-width: 640px) {
  .soulsize-hero {
    min-height: auto;
  }
  .soulsize-hero__bg {
    display: none;
  }
}

/* ============================================================
   Card (Article)
   ============================================================ */
.soulsize-card {
  display: flex;
  flex-direction: column;
  background: var(--soulsize-bg);
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* Bootstrap-Ratio-Erweiterung: 4:5 (Editorial-Card-Format) */
.ratio-4x5 { --bs-aspect-ratio: 125%; }

.soulsize-card__media {
  background: var(--soulsize-line-soft);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}

.soulsize-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soulsize-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soulsize-muted);
}

.soulsize-card__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 10px 0 6px;
  color: var(--soulsize-ink);
}

.soulsize-card:hover .soulsize-card__title {
  color: var(--soulsize-accent-ink);
}

.soulsize-card__excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--soulsize-ink-2);
  margin: 0;
}

/* ============================================================
   Tile (Evergreen)
   ============================================================ */
.soulsize-tile-grid {
  background: var(--soulsize-line-soft);
  border: 1px solid var(--soulsize-line-soft);
}

.soulsize-tile-grid > .col {
  background: var(--soulsize-bg);
  outline: 1px solid var(--soulsize-line-soft);
}

.soulsize-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 260px;
  padding: 32px 28px 28px;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
}

.soulsize-tile:hover {
  background: var(--soulsize-paper);
}

.soulsize-tile__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--soulsize-accent);
  margin-bottom: 20px;
}

.soulsize-tile__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--soulsize-ink);
}

.soulsize-tile__more {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soulsize-ink);
  margin-top: 22px;
}

.soulsize-tile__more::after {
  content: "→";
  margin-left: 8px;
}

/* ============================================================
   Page-Hero (Category/Hub)
   ============================================================ */
.soulsize-page-hero {
  padding-block: 48px 32px;
}

.soulsize-page-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--soulsize-ink);
  max-width: 900px;
  margin: 16px 0;
}

.soulsize-page-hero__title em {
  font-style: italic;
  color: var(--soulsize-accent-ink);
}

.soulsize-page-hero__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--soulsize-ink-2);
  max-width: 680px;
  margin: 0 0 24px;
}

.soulsize-page-hero__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--soulsize-line-soft);
  border-bottom: 1px solid var(--soulsize-line-soft);
  padding: 16px 0;
  margin-top: 20px;
}

.soulsize-page-hero__stat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--soulsize-line-soft);
}

.soulsize-page-hero__stat:first-child {
  padding-left: 0;
}

.soulsize-page-hero__stat:last-child {
  padding-right: 0;
  border-right: 0;
}

/* ============================================================
   Partners (Inner-Elements; Section-Layer in Hero-Block oben)
   ============================================================ */
.soulsize-partners__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soulsize-muted);
  text-align: center;
  margin: 0 0 28px;
}

.soulsize-partners__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
}

.soulsize-partners__logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--soulsize-ink-2);
  opacity: 0.72;
  text-decoration: none;
  transition: opacity 0.2s;
}

.soulsize-partners__logo:hover {
  opacity: 1;
}

/* ============================================================
   Newsletter
   ============================================================ */
.soulsize-newsletter__eyebrow {
  letter-spacing: .22em;
  color: var(--soulsize-gold, #C9A84C);
  margin-bottom: 14px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.soulsize-newsletter__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--soulsize-bg);
  margin: 0 0 12px;
}

.soulsize-newsletter__lead {
  font-size: 0.875rem;
  color: rgba(244, 239, 232, 0.72);
  max-width: 420px;
  margin: 0;
  line-height: 1.55;
}

.soulsize-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.soulsize-newsletter__input-row {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
}

.soulsize-newsletter__input {
  background: transparent;
  border: 0;
  outline: none;
  flex: 1;
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--soulsize-bg);
  font-family: 'Inter', sans-serif;
}

.soulsize-newsletter__input::placeholder {
  color: rgba(244, 239, 232, 0.45);
}

.soulsize-newsletter__btn {
  background: var(--soulsize-bg);
  color: var(--soulsize-ink);
  border: 0;
  padding: 0 26px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}

.soulsize-newsletter__btn:hover {
  opacity: .88;
}

.soulsize-newsletter__error {
  display: block;
  font-size: 0.6875rem;
  color: var(--soulsize-gold, #C9A84C);
  margin-top: 2px;
}

.soulsize-newsletter__gdpr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.6875rem;
  color: rgba(244, 239, 232, 0.5);
  cursor: pointer;
  line-height: 1.5;
}

.soulsize-newsletter__checkbox {
  margin-top: 2px;
  accent-color: var(--soulsize-gold, #C9A84C);
  flex-shrink: 0;
}

.soulsize-newsletter__link {
  color: var(--soulsize-gold, #C9A84C);
  text-decoration: none;
}

.soulsize-newsletter__link:hover {
  text-decoration: underline;
}

.soulsize-newsletter__success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 0;
}

.soulsize-newsletter__success-icon {
  color: var(--soulsize-gold, #C9A84C);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.soulsize-newsletter__success-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--soulsize-bg);
  margin: 0 0 4px;
}

.soulsize-newsletter__success-text {
  font-size: 0.8125rem;
  color: rgba(244, 239, 232, 0.65);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   Footer
   ============================================================ */
.soulsize-foot {
  background: #15110D;
  color: var(--soulsize-bg);
  padding-block: 0;
}

.soulsize-foot__inner {
  padding-block: 56px 24px;
}

.soulsize-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.soulsize-foot__heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.5);
  margin: 0 0 14px;
}

.soulsize-foot__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.soulsize-foot__list a {
  color: rgba(244, 239, 232, 0.85);
  font-size: 14px;
  text-decoration: none;
}

.soulsize-foot__list a:hover {
  color: var(--soulsize-accent);
}

.soulsize-foot__legal {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 20px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 232, 0.4);
}

@media (max-width: 640px) {
  .soulsize-foot__inner {
    padding-block: 40px 20px;
  }
  .soulsize-foot__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .soulsize-foot__legal {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; color: var(--ink); font-family: 'Inter', system-ui, sans-serif; overflow-x: hidden; }
body { background: var(--bg); }
h1, h2, h3, h4, h5, h6 { font-family: 'Fraunces', serif; font-weight: 400; margin: 0; text-wrap: balance; }
/* DEACTIVATED v2: Bootstrap-Row braucht negative-margin für Col-Padding-Kompensation.
   Statt .row als generisches Flex-Layout zu nutzen, in v2 .d-flex etc. verwenden.
.row { margin-right: 0; margin-left: 0; } */

/* Global design primitives */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.pill {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--bg);
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: .14em;
}
.logo-tile {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--ink-2);
  opacity: .72;
  transition: opacity .2s;
  text-decoration: none;
}
.logo-tile:hover { opacity: 1; }
.page-hero {
  max-width: 820px;
  margin-bottom: 36px;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.page-hero h1 em {
  font-style: italic;
  color: var(--accent-ink);
}
.page-hero .lede {
  max-width: 640px;
  margin: 0;
}
.page-hero--search {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  padding: 48px 32px 0;
  text-align: center;
}
.search-form {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
#search-input {
  height: 100%;
  min-height: 44px;
  border-color: var(--line-soft);
  border-radius: 0;
  box-shadow: none;
  transition: border-color .15s ease;
}
#search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,107,83,.15);
  outline: none;
}
.search-results-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 24px;
}
.search-results-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.page-hero--search .lede {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
.page-hero--magazin {
  max-width: none;
  margin-bottom: 0;
  padding: 28px 0;
}
.page-hero--magazin h1 {
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
}
.page-hero--magazin .lede {
  max-width: 600px;
  font-size: 16px;
}

/* Tabs bar (to switch between article + product pages) */
.tabs {
  position: sticky; top: 0; z-index: 100;
  background: #0f0c09; color: #EDE6DC;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 24px;
  display: flex; align-items: center; gap: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
}
.tabs .brand { font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #F4EFE8; }
.tabs .sep { width: 1px; height: 20px; background: rgba(255,255,255,.15); }
.tabs .group { display: inline-flex; background: rgba(255,255,255,.06); border-radius: 999px; padding: 3px; }
.tabs button, .tabs a.tab {
  font-family: inherit; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  background: transparent; color: #C7BFB3; border: 0; padding: 8px 14px;
  border-radius: 999px; cursor: pointer; transition: all .15s; text-decoration: none;
}
.tabs button.active, .tabs a.tab.active { background: #F4EFE8; color: #1F1B17; }
.tabs button:hover:not(.active), .tabs a.tab:hover:not(.active) { color: #F4EFE8; }
.tabs .spacer { flex: 1; }
.tabs .note { color: #8a8075; font-size: 11px; }

/* Nav */
.nav { display: block; border-bottom: 1px solid var(--line-soft); background: var(--bg); position: sticky; top: 0; z-index: 300; }
.nav-top {
  display: flex; align-items: center;
  padding: 14px clamp(16px, 3vw, 48px); gap: 20px;
  max-width: 1600px; margin: 0 auto; position: relative;
}
.nav-top > .nav-burger { order: 0; }
.nav-top > .logo    { flex-shrink: 0; order: 1; }
.nav-top > .nav-cats { flex: 1; order: 2; justify-content: center; }
.nav-top > .nav-right { flex-shrink: 0; order: 3; margin-left: auto; }

/* Burger — versteckt auf Desktop */
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 6px; line-height: 1;
}
.nav-burger .material-symbols-rounded { font-size: 28px; display: block; }

.nav-cats { display: flex; gap: 22px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.nav-cats a { display: inline-flex; align-items: center; gap: 4px; color: inherit; text-decoration: none; font-weight: 500; transition: color .15s; }
.nav-cats a:hover { color: var(--accent); }
.nav-cats a .chev { font-family: 'Material Symbols Rounded'; font-size: 18px; opacity: .7; }

.logo { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; letter-spacing: 0.16em; color: var(--ink); text-decoration: none; }
.logo i { font-style: normal; color: var(--accent); }

.nav-right { display: flex; gap: 14px; align-items: center; justify-content: flex-end; font-size: 13px; }
.nav-right a { color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.nav-right .ic { font-family: 'Material Symbols Rounded'; font-size: 20px; font-feature-settings: 'liga' 1, 'rlig' 1; }

/* Such-Toggle im Nav */
.nav-search-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--ink); display: inline-flex; align-items: center; padding: 6px;
}
.nav-search-toggle .ic { font-family: 'Material Symbols Rounded'; font-size: 20px; font-feature-settings: 'liga' 1, 'rlig' 1; }
.nav-search-toggle[aria-expanded="true"] .ic::after { content: 'close'; }
.nav-search-toggle[aria-expanded="true"] .ic { display: none; }

/* Collapsible Suchleiste */
.nav-search-inner {
  padding: 10px clamp(16px, 3vw, 48px);
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}
.nav-search-form {
  display: flex; align-items: center; gap: 10px;
  max-width: 640px; margin: 0 auto;
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  padding: 8px 14px;
}
.nav-search-form .ic { font-family: 'Material Symbols Rounded'; font-size: 20px; color: var(--muted); flex-shrink: 0; }
.nav-search-form input {
  flex: 1; border: none; background: transparent; font-size: 15px;
  color: var(--ink); outline: none; font-family: inherit;
}
.nav-search-form input::placeholder { color: var(--muted); }
.nav-search-form button {
  background: none; border: none; cursor: pointer; color: var(--accent);
  display: flex; align-items: center; padding: 0;
}
.nav-search-form button .material-symbols-rounded { font-size: 22px; }

.nav-trust { border-bottom: 1px solid var(--line-soft); background: var(--paper); }
.nav-trust-inner {
  display: flex; gap: 28px; padding: 9px clamp(16px, 3vw, 48px);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  justify-content: center; flex-wrap: wrap;
}
.nav-trust-inner span { display: inline-flex; align-items: center; gap: 6px; }
.nav-trust-inner .ic { font-family: 'Material Symbols Rounded'; font-size: 15px; color: var(--accent); }

/* Bootstrap Collapse (bootstrap-grid.min.css enthält diese Regeln nicht) */
.collapse { display: none; }
.collapse.is-open { display: block; }

/* Overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(31,27,23,.45); z-index: 250;
  backdrop-filter: blur(2px);
}
.nav-overlay.is-open { display: block; }

/* Desktop Mega-Menu */
.nav-item { position: static; }
.nav-item .mega {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); z-index: 90;
  width: min(1600px, 100vw - 32px);
  padding: 24px 28px;
  background: var(--paper); border: 1px solid var(--line-soft);
  box-shadow: 0 12px 32px rgba(31,27,23,.10); border-radius: 8px;
  grid-template-columns: repeat(6, 1fr); gap: 20px 32px;
  text-transform: none; letter-spacing: 0;
}
.nav-item.is-hover .mega { display: grid; }
.nav-item:focus-within .mega { display: grid; }
.mega-col { display: flex; flex-direction: column; gap: 6px; }
.mega-head {
  font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px; padding-bottom: 6px; border-bottom: 1px solid var(--line-soft);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.mega-head:hover { color: var(--accent); }
.mega-head-icon { color: var(--accent); flex-shrink: 0; display: block; }
.mega-link { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-2); text-decoration: none; padding: 2px 0; }
.mega-link:hover { color: var(--accent); }

/* Mobile Nav — Breakpoint 900px */
@media (max-width: 900px) {
  .nav-burger { display: flex; align-items: center; }
  .nav-trust { display: none; }
  .nav-top { padding: 12px 20px; }
  .nav-top > .nav-right { margin-left: auto; }
  .nav-newsletter-label { display: none; }

  /* Menü als Fullscreen-Drawer */
  .nav-cats {
    display: none;
    position: fixed; top: 0; left: 0;
    height: 100vh; height: 100dvh;
    width: min(320px, 85vw);
    background: var(--bg); z-index: 280;
    flex-direction: column; gap: 0;
    padding: 72px 0 32px;
    padding-bottom: max(32px, env(safe-area-inset-bottom, 0px));
    overflow-y: scroll;
    overscroll-behavior: contain;
    box-shadow: 4px 0 24px rgba(31,27,23,.15);
  }
  .nav-cats.is-open { display: flex; }
  /* Items nicht schrumpfen lassen — sonst greift overflow-y nie */
  .nav-cats > .nav-item { flex-shrink: 0; }

  .nav-item { border-bottom: 1px solid var(--line-soft); }
  .nav-item > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 24px; font-size: 15px; width: 100%;
    color: var(--ink); text-decoration: none; font-weight: 500;
  }
  .nav-item > a .chev { transition: transform .2s; }
  .nav-item.is-open > a .chev { transform: rotate(180deg); }

  .nav-item .mega {
    display: none;
    flex-direction: column; padding: 0 0 8px;
    position: static; top: auto; left: auto; transform: none;
    width: 100%; min-width: 0; max-width: none;
    box-shadow: none; border: none; border-radius: 0;
    background: var(--bg);
    z-index: auto;
  }
  .nav-item.is-open .mega { display: flex; }
  .nav-item:hover .mega { display: none; }
  .nav-item:focus-within .mega { display: none; }
  .nav-item.is-open:hover .mega { display: flex; }
  .nav-item.is-open:focus-within .mega { display: flex; }
  .mega-col { padding: 4px 0; }
  .mega-head { padding: 6px 24px 2px 36px; font-size: 11px; opacity: .6; border-bottom: none; margin-bottom: 0; }
  .mega-link { padding: 9px 24px 9px 36px; font-size: 14px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; border-radius: 2px; text-decoration: none; border: 0; cursor: pointer;
  transition: all .2s; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-ink); }
.btn .ic { font-family: 'Material Symbols Rounded'; font-size: 18px; }

/* Marquee */
.marquee {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: var(--paper); overflow: hidden; padding: 14px 0;
  font-family: 'Fraunces', serif; font-size: 20px; letter-spacing: 0.02em; color: var(--ink);
}
.marquee .track { display: flex; gap: 36px; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 36px; }
.marquee span em { font-style: italic; color: var(--accent); font-weight: 500; }
.marquee b { font-weight: 400; color: var(--muted); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/* Partners */
.partners { border-top: 1px solid var(--line-soft); padding: 48px 0; background: var(--paper); }
.partners .inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.partners h4 { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); text-align: center; margin: 0 0 28px; font-weight: 500; }
.partners .row { display: flex; justify-content: space-around; gap: 32px; flex-wrap: wrap; align-items: center; }

/* Newsletter */
.newsletter { background: var(--ink); color: var(--bg); padding: 72px 32px; }
.newsletter .inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.newsletter .eyebrow { font-size: 12px; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 14px; }
.newsletter h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(32px, 3.5vw, 44px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 12px; }
.newsletter p { font-size: 14px; color: rgba(244,239,232,.72); line-height: 1.55; margin: 0; max-width: 420px; }
.newsletter .form { display: flex; flex-direction: column; gap: 10px; }
.newsletter .input-row { display: flex; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 2px; }
.newsletter input { flex: 1; background: transparent; border: 0; padding: 16px 18px; color: var(--bg); font-family: 'Inter', sans-serif; font-size: 14px; outline: none; }
.newsletter input::placeholder { color: rgba(244,239,232,.5); }
.newsletter .sub-btn { background: var(--bg); color: var(--ink); border: 0; padding: 0 26px; font-family: inherit; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; }
.newsletter .fine { font-size: 11px; color: rgba(244,239,232,.5); line-height: 1.5; }

/* Footer */
.foot { background: #15110d; color: var(--bg); padding: 56px 32px 24px; }
.foot .inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.foot .brand-col .logo { color: var(--bg); font-size: 22px; }
.foot p { font-size: 13px; line-height: 1.55; color: rgba(244,239,232,.65); margin: 14px 0 0; max-width: 280px; }
.foot h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,239,232,.5); margin: 0 0 14px; font-weight: 500; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot ul a,
.foot ul span { color: rgba(244,239,232,.85); text-decoration: none; font-size: 14px; }
.foot ul a:hover { color: var(--accent); }
.foot .legal { max-width: 1280px; margin: 48px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; font-size: 11px; color: rgba(244,239,232,.4); letter-spacing: 0.04em; }

/* Newsletter Tablet */
@media (max-width: 1000px) {
  .newsletter .inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Footer */
  .foot { padding: 40px 20px 20px; }
  .foot .inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .foot .legal { flex-direction: column; gap: 6px; text-align: center; }
  /* Newsletter */
  .newsletter { padding: 48px 20px; }
  .newsletter .input-row { flex-direction: column; }
  .newsletter .sub-btn { width: 100%; padding: 14px 20px; }
  /* Nav-Trust */
  .nav-trust { display: none; }
}

/* Focus-Stile für Tastaturnavigation */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Image placeholders */
.img-ph { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
.ph-label {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,.7); letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(0,0,0,.4); padding: 4px 8px; border-radius: 2px;
}
/* ======================================================================
   SoulSize v2 — Komponenten-Styles
   Aus startseite.html + blog-und-produkt-templates.html extrahiert
   ====================================================================== */

/* Material Symbols fix */
.material-symbols-rounded, .material-symbols-rounded * {
  font-family: 'Material Symbols Rounded' !important;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  text-transform: none !important;
  letter-spacing: normal !important;
  word-wrap: normal;
  direction: ltr;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}
.ic { font-family: 'Material Symbols Rounded'; font-size: 20px; font-feature-settings: 'liga' 1, 'rlig' 1; }

/* SR-only */
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border-radius: 0; overflow: hidden;
  z-index: 0;
}
.hero .bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
.hero .bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 30%, transparent 60%);
}
.hero .inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 64px 32px 80px;
}
.hero .content { position: relative; z-index: 1; }
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(48px, 6vw, 88px); line-height: 0.98;
  letter-spacing: -0.02em; margin: 0 0 20px;
  color: var(--ink);
  max-width: 900px;
}
.hero h1 em { font-style: italic; color: var(--accent-ink); font-weight: 400; }
.hero .lede {
  line-height: 1.55;
  max-width: 560px; margin: 0 0 28px;
}
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero .fine { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }


/* ---- Category split cards ---- */
.splits {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.cat {
  position: relative; overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
  color: var(--bg);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; text-decoration: none;
  background: #3A332C;
  transition: transform .4s;
}
.cat:hover { transform: translateY(-4px); }
.cat .cat-img {
  position: absolute; inset: 0; z-index: 0;
}
.cat .cat-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(20,16,12,.75) 100%); }
.cat .eyebrow { position: relative; z-index: 1; letter-spacing: 0.22em; color: rgba(244,239,232,.85); margin-bottom: 10px; }
.cat h3 { position: relative; z-index: 1; font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(32px, 3.2vw, 44px); line-height: 1; letter-spacing: -0.01em; margin: 0 0 12px; }
.cat p { position: relative; z-index: 1; font-size: 15px; line-height: 1.5; color: rgba(244,239,232,.82); margin: 0 0 20px; max-width: 380px; }
.cat .more { position: relative; z-index: 1; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bg); display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.cat .more::after { content: '→'; transition: transform .3s; }
.cat:hover .more::after { transform: translateX(4px); }

/* ---- Section header ---- */
.sect-head {
  max-width: 1280px; margin: 0 auto;
  padding: 48px 32px 24px;
  display: flex; align-items: end; justify-content: space-between; gap: 24px;
  border-top: 1px solid var(--line-soft);
}
.sect-head .left .eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.sect-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px); line-height: 1; letter-spacing: -0.02em; margin: 0;
  color: var(--ink); max-width: 680px;
}
.sect-head h2 em { font-style: italic; color: var(--accent-ink); }
.sect-head .right { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.5; text-align: right; }
.sect-head .right a { color: var(--ink); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--ink); }

/* ---- Evergreen tiles ---- */
.tiles {
  max-width: 1280px; margin: 0 auto;
  padding: 8px 32px 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.tile { background: var(--bg); padding: 32px 28px 28px; display: flex; flex-direction: column; min-height: 260px; color: inherit; text-decoration: none; transition: background .2s; }
.tile:hover { background: var(--paper); }
.tile .num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.16em; margin-bottom: 20px; }
.tile h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 26px; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--ink); }
.tile p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0 0 auto; }
.tile .more { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 500; }
.tile .more::after { content: '→'; }

/* ---- Recent articles ---- */
.articles {
  max-width: 1280px; margin: 0 auto;
  padding: 8px 32px 72px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.card { background: var(--bg); color: inherit; text-decoration: none; display: flex; flex-direction: column; border: none; border-radius: 0; }
.card .thumb { aspect-ratio: 4/5; background: var(--line-soft); border-radius: 3px; overflow: hidden; position: relative; }
.card .meta { display: flex; gap: 10px; align-items: center; margin-top: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.card .meta .pill { padding: 3px 8px; }
.card h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; margin: 10px 0 6px; color: var(--ink); }
.card p { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.card:hover h3 { color: var(--accent-ink); }

/* ---- Article styles ---- */
.page-section {
  position: relative;
}
.section-inner {
  width: min(100%, var(--section-max, 1280px));
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}
.section-inner--narrow { --section-max: 900px; }
.section-inner--content { --section-max: 720px; }
.section-inner--wide { --section-max: 1280px; }
.section-inner--full {
  --section-max: none;
  padding-inline: 0;
}
.magazin-section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.page-section--article-hero {
  padding-block: clamp(34px, 5vw, 56px) 24px;
}
.page-section--article-hero .article-hero {
  /* Align hero content with the left edge of wide sections, but keep readable measure. */
  max-width: 1200px;
}
.page-section--feature-media {
  padding-block: 0 48px;
}
.page-section--article-content {
  padding-block: 0 56px;
}
.page-section--related {
  padding-block: 56px;
  border-top: 1px solid var(--line-soft);
}
.article-hero {
  padding: 0;
}
.breadcrumb {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 28px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--ink); }

.article-eyebrow {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.article-eyebrow .pill { padding: 4px 10px; letter-spacing: 0.16em; }
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-ink);
  text-decoration: none;
}
.article-back-link:hover { color: var(--ink); }
.article-back-link .ic { font-size: 15px; }

.article-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(34px, 5vw, 64px); line-height: 1.04;
  letter-spacing: 0; margin: 0 0 20px; color: var(--ink);
  overflow-wrap: break-word; hyphens: auto;
}
.article-hero h1 em { font-style: italic; color: var(--accent-ink); font-weight: 400; }
.article-hero .stand {
  font-family: 'Fraunces', serif; font-weight: 300; font-style: italic;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.45; color: var(--ink-2);
  margin: 0 0 28px;
}
.byline {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  margin-bottom: 32px;
}
.byline .avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #c8a27d, #7d5a3f); flex: 0 0 auto;
}
.byline .avatar::after {
  content: ''; position: absolute; left: 50%; top: 55%; transform: translate(-50%, -50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(30,20,12,0.6);
  box-shadow: 0 14px 0 -2px rgba(30,20,12,0.6);
}
.byline .avatar:has(img)::after { display: none; }
.byline .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.byline .who { font-size: 14px; font-weight: 500; color: var(--ink); }
.byline .who small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; margin-top: 2px; }
.byline .meta {
  margin-left: auto; display: flex; gap: 18px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}
.byline .meta span { display: inline-flex; align-items: center; gap: 6px; }
.byline .meta .ic { font-family: 'Material Symbols Rounded'; font-size: 15px; opacity: .7; }

.feature-img {
  margin: 0;
}
.feature-img .frame-img {
  border-radius: 4px; overflow: hidden; background: #3a2a1e; max-height: 800px;
}
.feature-img .frame-img .img-ph {
  position: relative; display: block; width: 100%; height: auto;
}
.feature-img figcaption {
  font-size: 12px; color: var(--muted); margin-top: 10px;
  font-style: italic; max-width: 720px; font-family: 'Fraunces', serif;
}

.article-body {
  max-width: 720px; margin: 0 auto; padding: 0 32px 56px;
  font-size: 18px; line-height: 1.7; color: var(--ink-2);
}
.article-body > * + * { margin-top: 1.1em; }
.article-body p { margin: 0 0 1.1em; }
.article-body h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink); margin: 56px 0 16px;
  scroll-margin-top: 80px;
}
.article-body h2 em { font-style: italic; color: var(--accent-ink); }
.article-body h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; line-height: 1.2; color: var(--ink);
  margin: 36px 0 10px;
}
.article-body a { color: var(--accent-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body a:hover { color: var(--ink); }
.article-body ul { padding-left: 0; list-style: none; margin: 1.1em 0; }
.article-body ul li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 14px; height: 1px; background: var(--accent);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
}
.article-body thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(185, 153, 106, 0.08);
  border-bottom: 1px solid var(--line-soft);
}
.article-body th,
.article-body td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}
.article-body tbody tr:nth-child(even) {
  background: rgba(251, 247, 240, 0.6);
}
.article-body table code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.article-body blockquote {
  margin: 40px 0; padding: 28px 32px; border-left: 3px solid var(--accent); background: var(--paper);
  font-family: 'Fraunces', serif; font-style: italic; font-size: 22px; line-height: 1.4; color: var(--ink);
}
.article-body blockquote cite {
  display: block; margin-top: 12px; font-family: 'JetBrains Mono', monospace;
  font-style: normal; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.article-body figure { margin: 40px -60px; }
.article-body figure .fig {
  position: relative; aspect-ratio: 16/9; border-radius: 3px; overflow: hidden; background: #3a2a1e;
}
.article-body figure figcaption {
  font-size: 12px; color: var(--muted); margin-top: 8px; font-style: italic; font-family: 'Fraunces', serif;
}

/* Takeaway callout */
.takeaway {
  background: var(--ink); color: var(--bg); padding: 32px; border-radius: 4px; margin: 40px 0;
}
.takeaway .eb { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.takeaway h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 26px; line-height: 1.15; margin: 0 0 16px; color: var(--bg); }
.takeaway ul { margin: 0; padding: 0; list-style: none; }
.takeaway ul li { padding-left: 28px; position: relative; margin-bottom: 10px; color: rgba(244,239,232,.88); font-size: 15px; line-height: 1.5; }
.takeaway ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 14px; height: 1px; background: var(--accent); }

/* Inline shop card */
.shop-inline {
  margin: 40px -60px; padding: 28px;
  display: grid; grid-template-columns: 180px 1fr auto; gap: 24px; align-items: center;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 4px;
}
.shop-inline .ph { position: relative; aspect-ratio: 3/4; border-radius: 3px; overflow: hidden; background: #3a2a1e; }
.shop-inline .body { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.shop-inline .body .eb { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px; }
.shop-inline .body h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; line-height: 1.15; margin: 0 0 6px; color: var(--ink); }
.shop-inline .body .brand { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.shop-inline .price { font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink); margin-right: 6px; }

/* TOC */
.article-wrap {
  position: relative;
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
}
.toc {
  position: sticky; top: 72px; align-self: start;
  font-size: 13px; line-height: 1.5;
  border-top: 1px solid var(--line-soft); padding-top: 18px;
}
.toc .eb { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.toc a { color: var(--ink-2); text-decoration: none; border-left: 2px solid transparent; padding-left: 10px; display: block; transition: all .15s; }
.toc a:hover { color: var(--ink); border-color: var(--accent); }
.article-wrap .article-body { max-width: none; padding: 0; margin: 0; }
.article-wrap .article-body figure,
.article-wrap .article-body .shop-inline { margin-left: 0; margin-right: 0; }

/* Related */
.related-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.related-head .eb { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.related-head h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.related-head h2 em { font-style: italic; color: var(--accent-ink); }
.related .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---- Category / Product page ---- */
.prod-hero {
  max-width: 1280px; margin: 0 auto; padding: 48px 32px 32px;
}
.prod-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(40px, 5vw, 68px); line-height: 1; letter-spacing: -0.02em;
  margin: 16px 0 16px; color: var(--ink);
  max-width: 900px;
}
.prod-hero h1 em { font-style: italic; color: var(--accent-ink); }
.prod-hero .lede { line-height: 1.55; max-width: 680px; margin: 0 0 24px; }
.prod-hero .lede b { color: var(--ink); font-weight: 500; }
.prod-hero .stats { display: flex; gap: 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 16px 0; margin-top: 20px; }
.prod-hero .stats .stat { flex: 1; border-right: 1px solid var(--line-soft); padding: 0 20px; }
.prod-hero .stats .stat:first-child { padding-left: 0; }
.prod-hero .stats .stat:last-child { border-right: 0; padding-right: 0; }
.prod-hero .stats .n { font-family: 'Fraunces', serif; font-size: 28px; color: var(--ink); line-height: 1; }
.prod-hero .stats .l { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.stat-link { color: inherit; text-decoration: none; }
.category-section-head {
  padding-block: 18px 0;
}
.category-section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.category-section-head h2 em {
  font-style: italic;
  color: var(--accent-ink);
}

/* Product grid */
.prod-grid {
  max-width: 1280px; margin: 0 auto; padding: 32px 32px 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 24px;
}
.prod {
  position: relative; color: inherit; text-decoration: none; display: flex; flex-direction: column;
}
.prod .img-wrap {
  position: relative; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; background: var(--line-soft);
}
.prod .brand { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
.prod h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 18px; line-height: 1.25; margin: 6px 0 6px; color: var(--ink); letter-spacing: -0.005em; }
.prod .row { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
.prod .price { font-family: 'Fraunces', serif; font-size: 20px; color: var(--ink); }
.prod .old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.prod .sz-range { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-left: auto; }
.prod .cta {
  margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.prod .cta .go {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; display: inline-flex; gap: 6px; align-items: center;
}
.prod:hover .cta .go { color: var(--accent-ink); border-color: var(--accent-ink); }
.prod .partner { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }

/* Responsive */
@media (max-width: 1100px) {
  .splits { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .article-wrap { grid-template-columns: 1fr; }
  .toc { display: none; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .related .grid { grid-template-columns: repeat(2, 1fr); }
  .shop-inline { grid-template-columns: 120px 1fr; }
  .shop-inline .btn { grid-column: 1 / -1; }
  .article-body figure, .shop-inline { margin-left: 0; margin-right: 0; }
  .byline { flex-wrap: wrap; }
  .byline .meta { margin-left: 0; width: 100%; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .articles { grid-template-columns: repeat(2, 1fr); }
  .newsletter .inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .prod-grid { grid-template-columns: 1fr; }
  .related .grid { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .articles { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .hero .bg { display: none; }
  .hero { min-height: auto; }
  .page-section--article-hero { padding-top: 28px; padding-bottom: 18px; }
  .article-hero h1 { font-size: clamp(32px, 10vw, 44px); line-height: 1.08; }
  .article-hero .stand { font-size: 18px; line-height: 1.5; }
  .breadcrumb { font-size: 10px; letter-spacing: 0.12em; margin-bottom: 22px; }
  .article-eyebrow { font-size: 10px; letter-spacing: 0.12em; align-items: flex-start; }
  .article-eyebrow .pill { letter-spacing: 0.12em; }
  .byline { align-items: flex-start; margin-bottom: 22px; }
  .byline .meta { flex-direction: column; gap: 8px; }
  .page-section--feature-media { padding-bottom: 34px; }
  .article-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article-body th,
  .article-body td {
    white-space: nowrap;
  }
}

/* Pagination */
.ss-pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(185,153,106,.18);
}
.ss-pagination-note {
  margin: 0;
  max-width: 540px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
  color: var(--ink-2);
}
.ss-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(185,153,106,.2);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31,27,23,.06);
}
.ss-page-link,
.ss-page-status {
  min-width: 48px;
  min-height: 38px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-decoration: none;
}
.ss-page-link .ic { font-size: 18px; }
.ss-page-link:hover {
  background: rgba(183,85,60,.08);
  color: var(--accent-ink);
}
.ss-page-link.is-disabled {
  color: rgba(107,96,84,.5);
  pointer-events: none;
}
.ss-page-status {
  gap: 8px;
  padding-left: 14px;
  padding-right: 14px;
  background: rgba(31,27,23,.06);
  color: var(--muted);
}
.ss-page-current {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(31,27,23,.16);
}
.ss-page-divider { color: rgba(107,96,84,.6); }
.search-results .ss-pagination-wrap { margin-top: 40px; }
@media (max-width: 600px) {
  .ss-pagination-note { font-size: 16px; }
  .ss-pagination { width: 100%; justify-content: center; flex-wrap: wrap; }
}

/* Search Autocomplete */
.search-input-wrap { position: relative; }
.search-suggest {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-top: none; border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(31,27,23,.12);
}
.suggest-item {
  display: block; padding: 12px 18px;
  font-size: 14px; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
  transition: background .15s;
}
.suggest-item:last-child { border-bottom: none; }
.suggest-item:hover, .suggest-item:focus { background: var(--bg); color: var(--accent); }

/* ---- Legal + Contact pages ---- */
.legal-page,
.contact-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 88px;
}
.legal-page__body {
  padding: 32px 36px;
  background: linear-gradient(180deg, rgba(251,247,240,.82) 0%, rgba(237,230,220,.5) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}
.legal-page__body > *:first-child { margin-top: 0; }
.legal-page__body > *:last-child { margin-bottom: 0; }
.legal-page__body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 36px 0 12px;
}
.legal-page__body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-page__body p,
.legal-page__body li { font-size: 16px; line-height: 1.72; color: var(--ink-2); }
.legal-page__body p { margin: 0 0 16px; }
.legal-page__body ul { margin: 16px 0; padding: 0; list-style: none; }
.legal-page__body li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.legal-page__body li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 1px;
  background: var(--accent);
}
.legal-page__body a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.contact-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(251,247,240,.88) 0%, rgba(237,230,220,.62) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  position: sticky;
  top: 24px;
}
.contact-card__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.contact-card h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.contact-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
.contact-form {
  padding: 32px;
  background: linear-gradient(180deg, rgba(251,247,240,.82) 0%, rgba(237,230,220,.5) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}
.contact-alert {
  max-width: 820px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.55;
}
.contact-alert--success {
  background: rgba(86,125,84,.12);
  border: 1px solid rgba(86,125,84,.28);
  color: #38553a;
}
.contact-submit {
  width: 100%;
  justify-content: center;
}
/* Bootstrap form-control overrides scoped to contact form */
.contact-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--ink-2);
}
.contact-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,.65);
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-size: 15px;
  outline: none;
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.contact-form textarea.form-control {
  min-height: 168px;
  resize: vertical;
}
.contact-form .form-control::placeholder {
  color: var(--muted);
  opacity: 1;
}
.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(183,85,60,.12);
  background: rgba(255,255,255,.88);
  outline: none;
}
.contact-form .form-control.is-invalid {
  border-color: #c86453;
  background-image: none;
}
.contact-form .invalid-feedback {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #a54638;
}
.contact-form .mb-3 { margin-bottom: 20px; }

/* Bootstrap .row > * setzt width:100% — für Flex-Reihen zurücksetzen */
.partners .row > * { width: auto; max-width: none; padding-left: 0; padding-right: 0; margin-top: 0; }
@media (width<=640px) {
  .contact-page { padding-left: 16px; padding-right: 16px; }
  .contact-form { padding: 24px 20px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; padding: 24px 20px; }
}

/* ── Über uns ───────────────────────────────────────────────────────────────── */
.ueber-uns-page { padding: 48px 0 80px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.team-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}

.team-card .photo {
  aspect-ratio: 4/5;
  background: var(--line-soft);
  position: relative;
  overflow: hidden;
}

.team-card .info {
  padding: 24px;
}

.team-card .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.team-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--ink);
}

.team-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

.ueber-uns-mission {
  padding: 48px 0 0;
  margin: 0 auto;
}

.ueber-uns-mission h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--ink);
  margin: 12px 0 24px;
}

.ueber-uns-mission p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .ueber-uns-page { padding: 32px 0 60px; }
}

/* DEACTIVATED v2: .container-xxl ist Standard (max-width via tokens.css).
.container { max-width: 1600px; } */

.ueber-uns-werte { padding: 48px 0 0; }
.ueber-uns-werte h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 400; color: var(--ink); margin: 12px 0 32px; }
.werte-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.wert-item { background: var(--paper); border: 1px solid var(--line-soft); padding: 28px 32px; }
.wert-item h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 400; color: var(--ink); margin: 0 0 10px; }
.wert-item p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0; }
@media (max-width: 640px) { .werte-grid { grid-template-columns: 1fr; } }

@media (max-width: 640px) {
  .article-body {
    padding: 0 16px 40px;
    font-size: 16px;
  }
  .article-wrap .article-body {
    padding: 0 0 40px;
    font-size: 16px;
  }
  .article-wrap { padding: 0 4px; }
  .article-body h2 { margin: 40px 0 12px; }
  .article-body blockquote { padding: 20px 16px; margin: 28px 0; font-size: 19px; }
  .article-body figure { margin-left: 0; margin-right: 0; }
}
