/* =========================================================
   BERNSTEINMOBIL — Warm Theatrical Mockup System (v4)
   Rich warm-sand stage with dramatic dark sections.
   Sans-serif throughout, wider reading column, amber-glow signature.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Warm sand paper — the main stage */
  --paper:        #ECDDBD;
  --paper-light:  #F2E6C9;
  --paper-deep:   #E0CFA8;
  --paper-darker: #D4C193;

  /* Warm dark — for ink and dark sections */
  --ink:          #1F1810;
  --ink-soft:    #3E3225;
  --ink-mute:    #6F5E47;
  --ink-faint:   #9B886A;

  /* Stage for dark sections */
  --stage:        #16110A;
  --stage-deep:   #0B0805;
  --stage-soft:   #211910;
  --on-stage:     #F2E6C9;
  --on-stage-mute:#B8A684;

  /* Amber */
  --amber:        #C97F1F;
  --amber-bright: #E5A547;
  --amber-glow:   #FFB347;
  --amber-deep:   #8B5A12;
  --amber-darkest:#4A2E06;

  /* Gold */
  --gold:         #B89348;
  --gold-pale:    #D9B57C;

  /* Rules */
  --rule:         rgba(31, 24, 16, 0.18);
  --rule-strong:  rgba(31, 24, 16, 0.42);
  --rule-amber:   rgba(201, 127, 31, 0.5);
  --rule-on-dark: rgba(242, 230, 201, 0.12);
  --rule-on-dark-strong: rgba(242, 230, 201, 0.28);

  /* Type */
  --display:      'Bricolage Grotesque', system-ui, sans-serif;
  --body:         'Manrope', system-ui, sans-serif;
  --mono:         'JetBrains Mono', ui-monospace, monospace;

  /* Space — wider reading on large screens */
  --gutter:       clamp(1.5rem, 4vw, 3rem);
  --col-max:      1440px;
  --reading-max:  82ch;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--amber); color: var(--paper-light); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-feature-settings: 'cv11' on, 'ss01' on;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 1400px 900px at 90% 0%, rgba(201, 127, 31, 0.1), transparent 60%),
    radial-gradient(ellipse 900px 700px at 0% 60%, rgba(184, 147, 72, 0.06), transparent 70%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.5  0 0 0 0 0.38  0 0 0 0 0.22  0 0 0 0.055 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-attachment: fixed, fixed, fixed;
}

/* ───────────────── Typography ───────────────── */

.display, h1, h2, h3 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 96, 'wght' 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 8.4vw, 7.4rem); font-variation-settings: 'opsz' 96, 'wght' 520; line-height: 0.98; }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); font-variation-settings: 'opsz' 72, 'wght' 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); font-variation-settings: 'opsz' 32, 'wght' 620; line-height: 1.18; letter-spacing: -0.018em; }

h4 { font-family: var(--body); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.005em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--amber);
}
.eyebrow.no-line::before { display: none; }

/* On dark backgrounds */
.dark .eyebrow { color: var(--amber-bright); }
.dark .eyebrow::before { background: var(--amber-bright); }

.mono, .numeral {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.lede {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.85vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

p { font-family: var(--body); font-size: 1.07rem; line-height: 1.72; color: var(--ink-soft); }

.body-prose p { font-size: 1.12rem; line-height: 1.78; margin-bottom: 1.15em; color: var(--ink-soft); }
.body-prose p strong { color: var(--ink); font-weight: 600; }
.body-prose p em { color: var(--amber-deep); font-style: italic; }

/* ───────────────── Layout primitives ───────────────── */

.wrap         { max-width: var(--col-max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow  { max-width: 960px;          margin: 0 auto; padding: 0 var(--gutter); }
.wrap-reading { max-width: var(--reading-max); margin: 0 auto; padding: 0 var(--gutter); }

.rule { height: 1px; background: var(--rule); border: 0; }
.rule-amber { height: 1px; background: linear-gradient(to right, transparent, var(--amber) 30%, var(--amber) 70%, transparent); border: 0; }

/* ───────────────── Top Bar ───────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 221, 189, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem var(--gutter);
  max-width: var(--col-max);
  margin: 0 auto;
}
.topbar-inner > .brand { flex: 0 0 auto; }
.topbar-inner > .mainnav { flex: 1 1 auto; justify-content: center; }
.topbar-inner > .btn { flex: 0 0 auto; }
.brand {
  font-family: var(--display);
  font-variation-settings: 'opsz' 48, 'wght' 620;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.brand .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  transform: translateY(-0.6em);
  box-shadow: 0 0 12px var(--amber-glow), 0 0 24px rgba(229, 165, 71, 0.45);
}
.brand-mark {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(229, 165, 71, 0.4)) drop-shadow(0 0 2px rgba(0,0,0,.2));
  margin-right: 0.55em;
  flex-shrink: 0;
}
.brand { font-size: 1.7rem; }
footer .brand { font-size: 1.9rem; }
footer .brand-mark {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 0 14px rgba(229, 165, 71, 0.55)) drop-shadow(0 0 2px rgba(0,0,0,.3));
}
.topbar-inner { padding-top: 0.85rem; padding-bottom: 0.85rem; }
@media (max-width: 1100px) {
  .brand { font-size: 1.4rem; }
  .brand-mark { width: 52px; height: 52px; margin-right: 0.55em; }
  footer .brand-mark { width: 48px; height: 48px; }
}
@media (max-width: 760px) {
  footer .brand { font-size: 1.4rem; }
  footer .brand-mark { width: 44px; height: 44px; }
}
.brand small {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 0.3em;
}

/* Mobile nav toggle (checkbox-hack, JS-free) */
.nav-toggle-input { display: none; }
.nav-toggle {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  justify-self: end;
  color: var(--ink);
}
.nav-toggle::before, .nav-toggle::after, .nav-toggle span {
  content: '';
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: currentColor;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  border-radius: 2px;
}
.nav-toggle::before { top: 9px; }
.nav-toggle span    { top: 15px; }
.nav-toggle::after  { top: 21px; }
.nav-toggle-input:checked + .nav-toggle::before { transform: rotate(45deg); top: 15px; }
.nav-toggle-input:checked + .nav-toggle::after  { transform: rotate(-45deg); top: 15px; }
.nav-toggle-input:checked + .nav-toggle span    { opacity: 0; }

.mainnav { display: flex; gap: 1.4rem; justify-self: center; flex-wrap: wrap; }
.mainnav a {
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s ease;
  position: relative;
}
.mainnav a:hover { color: var(--amber-deep); }
.mainnav a::after {
  content: '';
  position: absolute;
  left: 50%; right: 50%; bottom: -6px;
  height: 1px;
  background: var(--amber);
  transition: all .3s cubic-bezier(.2,.7,.2,1);
}
.mainnav a:hover::after, .mainnav a.active::after { left: 0; right: 0; }
.mainnav a.active { color: var(--amber-deep); }

/* ───────────────── Mobile Drawer (sibling-of-body, off-canvas) ───────────────── */

.mobile-drawer { display: none; }
.mobile-backdrop { display: none; }

@media (max-width: 1100px) {
  .topbar { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: var(--paper) !important; }
  .topbar-inner { gap: 1rem; }
  .topbar-inner > .mainnav { display: none !important; }
  .topbar-inner > .btn { display: none !important; }
  .nav-toggle { display: block !important; }

  /* Drawer panel */
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 400px);
    background: var(--stage);
    color: var(--on-stage);
    padding: 0;
    z-index: 80;
    box-shadow: -30px 0 80px -20px rgba(0,0,0,.6);
    background-image:
      radial-gradient(ellipse 500px 380px at 100% 0%, rgba(229,165,71,.22), transparent 60%),
      linear-gradient(180deg, transparent 0%, rgba(229,165,71,.04) 50%, transparent 100%);
    overflow-y: auto;
    transform: translate3d(105%, 0, 0);
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
    -webkit-overflow-scrolling: touch;
  }

  /* Drawer header with eyebrow */
  .drawer-head {
    padding: 1.5rem 2rem 1.4rem;
    border-bottom: 1px solid var(--rule-on-dark);
    display: flex;
    align-items: center;
    gap: 0.8em;
    margin-bottom: 0.4rem;
  }
  .drawer-head::before {
    content: '';
    width: 1.6rem;
    height: 1px;
    background: var(--amber);
  }
  .drawer-head span {
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--amber-bright);
  }

  /* Section labels within drawer */
  .drawer-section {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--on-stage-mute);
    padding: 1.4rem 2rem 0.4rem;
    display: block;
    opacity: 0.7;
  }

  /* Drawer link items — refined, with numeral + arrow */
  .mobile-drawer a {
    position: relative;
    display: grid;
    grid-template-columns: 2.2rem 1fr auto;
    align-items: baseline;
    gap: 0.5rem;
    width: 100%;
    font-family: var(--display);
    font-variation-settings: 'opsz' 36, 'wght' 460;
    font-size: 1.22rem;
    color: var(--on-stage);
    text-decoration: none;
    padding: 0.85rem 2rem;
    letter-spacing: -0.018em;
    line-height: 1.15;
    transition: color .2s ease, background .2s ease, padding-left .25s ease;
  }
  .mobile-drawer a::before {
    /* mono numeral */
    content: attr(data-no);
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--amber-bright);
    align-self: center;
    opacity: 0.7;
    transform: translateY(-0.05em);
  }
  .mobile-drawer a::after {
    /* arrow */
    content: '→';
    font-family: var(--display);
    font-size: 0.9rem;
    color: var(--on-stage-mute);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .25s ease, transform .25s ease, color .25s ease;
    align-self: center;
  }
  .mobile-drawer a:hover, .mobile-drawer a:active {
    color: var(--amber-bright);
    background: rgba(229, 165, 71, 0.06);
    padding-left: 2.3rem;
  }
  .mobile-drawer a:hover::after, .mobile-drawer a:active::after, .mobile-drawer a.active::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--amber-bright);
  }
  .mobile-drawer a.active {
    color: var(--amber-bright);
    background: linear-gradient(90deg, rgba(229,165,71,.1), transparent 80%);
  }
  .mobile-drawer a.active::before { opacity: 1; }

  /* Hairlines only between consecutive items, not after section labels */
  .mobile-drawer a + a {
    border-top: 1px solid var(--rule-on-dark);
  }
  /* Decorative amber dot at section-label start */
  .drawer-section::before {
    content: '◆';
    color: var(--amber);
    font-size: 0.5em;
    margin-right: 0.8em;
    transform: translateY(-0.2em);
    display: inline-block;
    opacity: 0.6;
  }

  /* Decorative vertical amber line on the left edge */
  .mobile-drawer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4.5rem;
    bottom: 4.5rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--amber) 15%, var(--amber-deep) 50%, var(--amber) 85%, transparent);
    opacity: 0.45;
  }

  /* Footer with WhatsApp CTA */
  .mobile-drawer .drawer-foot {
    margin-top: auto;
    padding: 1.6rem 2rem 2rem;
    border-top: 1px solid var(--rule-on-dark);
    background: linear-gradient(180deg, transparent, rgba(229,165,71,.05) 100%);
  }
  .mobile-drawer .drawer-foot small {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber-bright);
    margin-bottom: 0.8rem;
  }
  .mobile-drawer .drawer-foot small::before {
    content: '';
    width: 1.4rem;
    height: 1px;
    background: var(--amber);
  }
  .mobile-drawer .drawer-foot strong {
    font-family: var(--display);
    font-variation-settings: 'opsz' 36, 'wght' 540;
    font-size: 1.3rem;
    color: var(--on-stage);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 0.3rem;
  }
  .mobile-drawer .drawer-foot strong a {
    color: inherit;
    text-decoration: none;
    padding: 0 !important;
    display: inline !important;
    background: none !important;
  }
  .mobile-drawer .drawer-foot strong a::before, .mobile-drawer .drawer-foot strong a::after { display: none !important; }
  .mobile-drawer .drawer-foot span {
    color: var(--on-stage-mute);
    font-size: 0.92rem;
    font-family: var(--body);
  }

  /* Backdrop */
  .mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 8, 5, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }

  /* Open state */
  .nav-toggle-input:checked ~ .mobile-drawer { transform: translate3d(0, 0, 0); }
  .nav-toggle-input:checked ~ .mobile-backdrop { opacity: 1; pointer-events: auto; }

  /* Hamburger turns into X — note: label is inside topbar so use descendant selector */
  .nav-toggle-input:checked ~ .topbar .nav-toggle::before { transform: rotate(45deg); top: 15px; }
  .nav-toggle-input:checked ~ .topbar .nav-toggle::after  { transform: rotate(-45deg); top: 15px; }
  .nav-toggle-input:checked ~ .topbar .nav-toggle span    { opacity: 0; }

  body:has(.nav-toggle-input:checked) { overflow: hidden; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.5em;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  background: var(--ink);
  color: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.btn:hover { background: var(--amber-deep); border-color: var(--amber-deep); transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(139, 90, 18, 0.55); }
.btn::after { content: '→'; font-size: 1.05em; transition: transform .3s ease; }
.btn:hover::after { transform: translateX(3px); }

.btn-amber {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--stage);
}
.btn-amber:hover { background: var(--amber-bright); border-color: var(--amber-bright); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-ghost:hover { background: var(--ink); color: var(--paper-light); border-color: var(--ink); transform: translateY(-1px); box-shadow: none; }

/* ───────────────── Hero (warm with dark amber-glow stone-side) ───────────────── */

.hero {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(5rem, 11vw, 9rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -8vw;
  top: 6vw;
  width: 58vw;
  height: 58vw;
  max-width: 820px;
  max-height: 820px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.32), rgba(201, 127, 31, 0.12) 35%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero > .wrap { position: relative; z-index: 1; }

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "head stone"
    "body stone";
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-headline { grid-area: head; align-self: end; }
.hero-body     { grid-area: body; align-self: start; }
.stone-frame   { grid-area: stone; }
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "stone" "body";
    gap: 1.6rem;
    text-align: center;
  }
  .hero-headline { align-self: auto; }
  .hero-body { align-self: auto; }
  .hero-body .lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
}

.hero h1 { margin: 1.4rem 0 1.8rem; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--amber-deep); font-variation-settings: 'opsz' 96, 'wght' 400; }
.hero .lede { max-width: 40ch; margin-bottom: 2.8rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Amber stone — real specimen floating in glowing spotlight (Jurassic Park DNA) */
.stone-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  isolation: isolate;
}
/* Outer atmospheric halo — far/soft glow */
.stone-frame::before {
  content: '';
  position: absolute;
  inset: -5%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 179, 71, 0.45), rgba(229, 165, 71, 0.18) 30%, transparent 60%);
  filter: blur(48px);
  z-index: 0;
  animation: pulse-halo 5s ease-in-out infinite;
}
/* Crisp outer amber glow — circular box-shadow ring matching the video circle.
   Centering via inset:0+margin:auto keeps transform free for amber-float (same as video),
   so the glow stays locked to the video at every frame of the float. */
.stone-frame::after {
  content: '';
  position: absolute;
  width: clamp(280px, 40vw, 480px);
  height: clamp(280px, 40vw, 480px);
  inset: 0;
  margin: auto;
  border-radius: 50%;
  z-index: 0;
  box-shadow:
    0 0 60px 4px rgba(255, 179, 71, 0.7),
    0 0 28px 0 rgba(255, 200, 110, 0.65),
    0 30px 50px -10px rgba(40, 20, 5, 0.55);
  animation:
    amber-float 6.5s ease-in-out infinite,
    glow-pulse-opacity 5s ease-in-out infinite;
}
@keyframes pulse-halo {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.04); }
}
@keyframes pulse-core {
  0%, 100% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.96); }
  50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

/* The amber specimen itself — floating. Works for both <img> and <video> tags.
   Glow lives on .stone-frame::after so it isn't cut by clip-path here.
   pointer-events:none keeps iOS Safari from hijacking the video on pinch/long-press. */
.amber-stone {
  --size: clamp(280px, 40vw, 480px);
  width: var(--size);
  height: var(--size);
  position: relative;
  z-index: 2;
  object-fit: cover;
  clip-path: circle(50% at 50% 50%);
  animation: amber-float 6.5s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
@keyframes amber-float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-14px) rotate(1.2deg); }
}
@keyframes glow-pulse-opacity {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* ───────────────── Press strip ───────────────── */

.press-strip {
  padding: 2.4rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-light);
}
.press-strip-inner {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  flex-wrap: wrap;
  justify-content: center;
}
.press-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.press-label::after { content: ''; width: 1.4rem; height: 1px; background: var(--ink-mute); }
.press-list { display: flex; align-items: baseline; gap: clamp(1rem, 2.4vw, 2.4rem); flex-wrap: wrap; list-style: none; }
.press-list li {
  font-family: var(--display);
  font-variation-settings: 'opsz' 24, 'wght' 580;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.press-list li + li { position: relative; padding-left: 1.4em; }
.press-list li + li::before { content: '·'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }

/* ───────────── Filled images replacing .photo-ph stubs ───────────── */
.hero-image {
  display: block;
  margin: 3rem auto;
  max-width: 960px;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(40, 25, 5, 0.45), 0 8px 16px -6px rgba(40, 25, 5, 0.22);
  background: #16110A;
}
.hero-image picture, .hero-image img { display: block; width: 100%; height: auto; }

.content-image {
  display: block;
  margin: 2.2rem auto;
  max-width: 760px;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 30px -14px rgba(40, 25, 5, 0.35), 0 4px 10px -3px rgba(40, 25, 5, 0.18);
  background: #16110A;
}
.content-image picture, .content-image img { display: block; width: 100%; height: auto; }
.content-image figcaption,
.hero-image figcaption {
  font-family: var(--mono, monospace);
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--ink-mute, #6B5A48);
  padding: 0.9rem 1.1rem 1.1rem;
  background: #F4EFE6;
  border-top: 1px solid var(--rule, rgba(40,25,5,0.08));
}
.content-image figcaption em,
.hero-image figcaption em { font-style: italic; color: var(--amber, #B5731A); }
.content-image figcaption strong,
.hero-image figcaption strong { color: var(--ink, #1F1610); font-weight: 600; }

/* ───────── Eozän-Wash — sehr subtiler warmer Hintergrund-Hauch ─────────
   Wirkt wie ein leichter Bernstein-Schimmer der die ganze Seite umspielt.
   3-5% Opacity, fixed background (scrollt nicht mit). Mobile entsprechend reduziert. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 12% 18%, rgba(181, 115, 26, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 92% 78%, rgba(229, 165, 71, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(110, 65, 18, 0.025) 0%, transparent 70%);
}
@media (max-width: 720px) {
  body::before {
    background:
      radial-gradient(ellipse 100% 40% at 50% 0%, rgba(181, 115, 26, 0.04) 0%, transparent 60%),
      radial-gradient(ellipse 100% 50% at 50% 100%, rgba(110, 65, 18, 0.03) 0%, transparent 70%);
  }
}

/* ───────── Manifest-Vignette (vor Footer, nur auf Hub-Seiten) ───────── */
.manifest {
  margin: 5rem auto 2rem;
  padding: 2rem 1.4rem 2.5rem;
  max-width: 640px;
  text-align: center;
  border-top: 1px solid rgba(181, 115, 26, 0.18);
  border-bottom: 1px solid rgba(181, 115, 26, 0.18);
  position: relative;
}
.manifest-vignette {
  display: block;
  margin: 0 auto 1.4rem;
  width: clamp(180px, 28vw, 280px);
  height: auto;
  opacity: 0.78;
}
.manifest-words {
  font-family: var(--mono, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber, #B5731A);
  margin: 0 0 1rem;
}
.manifest-quote {
  font-family: var(--serif, serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-soft, #3D2C18);
  margin: 0 auto;
  max-width: 38ch;
}
@media (max-width: 720px) {
  .manifest { margin: 3rem auto 1.5rem; padding: 1.5rem 1rem 2rem; }
}

/* ───────── Eozän-Hairline-Divider zwischen H2 (botanische Vignette) ───────── */
.eo-divider {
  display: block;
  margin: 3.5rem auto 2.5rem;
  width: clamp(140px, 22vw, 220px);
  height: auto;
  opacity: 0.55;
}
@media (max-width: 720px) {
  .eo-divider { margin: 2.4rem auto 1.6rem; }
}

/* ───────── Pillar-Card Icons (handgezeichnete line-art SVGs) ───────── */
.pillar-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 1rem;
  opacity: 0.85;
  /* dunkle Linien on hellem Card-Hintergrund — color: currentColor wäre ideal, aber img kommt mit eigenem stroke */
  filter: invert(78%) sepia(28%) saturate(450%) hue-rotate(355deg) brightness(95%);
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.pillar:hover .pillar-icon {
  opacity: 1;
  transform: rotate(-2deg);
}
@media (max-width: 720px) {
  .pillar-icon { width: 36px; height: 36px; margin-bottom: 0.7rem; }
}

@media (max-width: 720px) {
  .hero-image, .content-image { margin: 1.6rem auto; border-radius: 3px; }
}

/* Mobile: kompakter, Label oben, keine Separator-Punkte (würden am Wrap-Anfang stehen) */
@media (max-width: 720px) {
  .press-strip { padding: 1rem 0; }
  .press-strip-inner {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .press-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .press-label::after { display: none; }
  .press-list {
    gap: 0.5rem 1.2rem;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  .press-list li {
    font-size: 0.92rem;
    font-variation-settings: 'opsz' 18, 'wght' 540;
    padding-left: 0 !important;
  }
  .press-list li + li::before { display: none; }
}

/* ───────────────── Pillar Grid (dark cards on warm paper — inverse of V3) ───────────────── */

.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--rule);
}
.section-head .lede { max-width: 38ch; }
.section-head h2 { margin: 0.6rem 0 0; max-width: 16ch; }
.section-head h2 em { font-style: normal; color: var(--amber-deep); font-variation-settings: 'opsz' 72, 'wght' 400; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.pillar {
  grid-column: span 4;
  padding: 1.8rem 1.6rem 1.8rem;
  background: var(--stage);
  color: var(--on-stage);
  border: 1px solid var(--stage);
  position: relative;
  transition: all .4s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 240px;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(229, 165, 71, 0.28), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.pillar:hover { transform: translateY(-3px); box-shadow: 0 30px 50px -20px rgba(31, 24, 16, 0.45), 0 0 60px -15px rgba(229, 165, 71, 0.35); }
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; z-index: 1; }

.pillar .lot { color: var(--amber-bright); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.pillar h3 { color: var(--on-stage); letter-spacing: -0.02em; line-height: 1.15; }
.pillar p { font-size: 0.94rem; color: var(--on-stage-mute); margin-top: auto; line-height: 1.55; }
.pillar .arrow {
  position: absolute;
  top: 1.8rem;
  right: 1.6rem;
  font-size: 1.3rem;
  color: var(--amber-bright);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.pillar:hover .arrow { transform: translate(4px, -4px); }

/* Featured pillar — even more dramatic */
.pillar:nth-child(1) {
  grid-column: span 5; min-height: 280px;
  background: linear-gradient(135deg, var(--stage-soft) 0%, var(--stage) 60%);
  border-color: var(--stage-soft);
}
.pillar:nth-child(1)::after {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.45), transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}
.pillar:nth-child(2) { grid-column: span 4; }
.pillar:nth-child(3) { grid-column: span 3; }
.pillar:nth-child(4) { grid-column: span 3; }
.pillar:nth-child(5) { grid-column: span 5; }
.pillar:nth-child(6) { grid-column: span 4; }
.pillar:nth-child(7) { grid-column: span 4; }
.pillar:nth-child(8) { grid-column: span 4; }
.pillar:nth-child(9) { grid-column: span 4; }
@media (max-width: 900px) { .pillar, .pillar:nth-child(n) { grid-column: span 6; } }
@media (max-width: 560px) { .pillar, .pillar:nth-child(n) { grid-column: span 12; min-height: 0; } }

/* ───────────────── Marcel Spotlight (warm side) ───────────────── */

.spotlight {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.spotlight::before {
  content: '';
  position: absolute;
  left: -10vw;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  height: 40vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(201, 127, 31, 0.14), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.spotlight > * { position: relative; z-index: 1; }
@media (max-width: 880px) { .spotlight { grid-template-columns: 1fr; } }

.portrait {
  aspect-ratio: 4/5;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(180, 110, 40, 0.7), transparent 60%),
    linear-gradient(180deg, #3A220A 0%, #120A02 100%);
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(201, 127, 31, 0.25),
    0 30px 60px -20px rgba(31, 24, 16, 0.45),
    0 0 0 1px var(--rule-strong);
}
.portrait::before {
  content: '';
  position: absolute;
  inset: 55% 22% 5% 22%;
  background: linear-gradient(180deg, rgba(120, 70, 20, 0.85), rgba(15, 8, 0, 0.98));
  border-radius: 50% 50% 4px 4px;
  filter: blur(2px);
}
.portrait::after {
  content: 'MARCEL QUERL · NDR NORDSTORY · ARCHIV';
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(242, 230, 201, 0.8);
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 30%;
  z-index: 1;
}
.portrait::before { z-index: 1; }

.spotlight-text h2 { max-width: 18ch; }
.spotlight-text h2 em { font-style: normal; color: var(--amber-deep); font-variation-settings: 'opsz' 72, 'wght' 400; }
.spotlight-text p { margin-top: 1.4rem; color: var(--ink-soft); }

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid var(--rule);
}
@media (max-width: 560px) { .credentials { grid-template-columns: 1fr; } }
.cred {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 1.4rem 1.2rem 0;
  border-bottom: 1px solid var(--rule);
}
.cred:nth-child(odd) { padding-right: 1.4rem; }
.cred:nth-child(even) { padding-left: 1.4rem; border-left: 1px solid var(--rule); }
@media (max-width: 560px) { .cred:nth-child(even) { padding-left: 0; border-left: 0; } }
.cred .lbl { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-deep); }
.cred .val { font-family: var(--display); font-variation-settings: 'opsz' 24, 'wght' 580; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.01em; }
.cred .sub { font-size: 0.84rem; color: var(--ink-mute); }

/* ───────────────── Process (dark, dramatic) ───────────────── */

.process {
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
  background: var(--stage);
  color: var(--on-stage);
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber) 30%, var(--amber) 70%, transparent);
  opacity: 0.7;
}
.process::after {
  content: '';
  position: absolute;
  right: -20vw; bottom: -20vw;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(229, 165, 71, 0.13), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.process > .wrap { position: relative; z-index: 1; }
.process .section-head { border-color: var(--rule-on-dark); }
.process h2 { color: var(--on-stage); }
.process h2 em { color: var(--amber-bright); }
.process .lede { color: var(--on-stage-mute); }
.process .eyebrow { color: var(--amber-bright); }
.process .eyebrow::before { background: var(--amber-bright); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--rule-on-dark);
  border-left: 1px solid var(--rule-on-dark);
}
.steps.three-steps { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps, .steps.three-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps, .steps.three-steps { grid-template-columns: 1fr; border-left: 0; } }

.step {
  padding: 2.4rem 1.6rem 1.8rem;
  border-right: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
  position: relative;
  transition: background .3s ease;
}
.step:hover { background: var(--stage-soft); }
.step .num {
  font-family: var(--display);
  font-variation-settings: 'opsz' 96, 'wght' 400;
  font-size: 3.4rem;
  line-height: 0.9;
  color: var(--amber-bright);
  margin-bottom: 1.2rem;
  letter-spacing: -0.04em;
}
.step h4 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 24, 'wght' 620;
  font-size: 1.15rem;
  color: var(--on-stage);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.step p { font-size: 0.92rem; color: var(--on-stage-mute); line-height: 1.55; }

/* ───────────────── Footer ───────────────── */

footer {
  background: var(--stage-deep);
  color: var(--on-stage);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  border-top: 1px solid var(--rule-on-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-on-dark);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-col, .footer-brand { min-width: 0; }
  .footer-col a, .footer-col li { overflow-wrap: anywhere; word-break: break-word; }
  .footer-bottom { grid-template-columns: 1fr; gap: 1rem; text-align: left; }
}
footer { overflow: hidden; }

.footer-brand .brand { font-size: 1.7rem; color: var(--on-stage); }
.footer-brand .brand small { color: var(--on-stage-mute); }
.footer-brand p { margin-top: 1.2rem; color: var(--on-stage-mute); max-width: 32ch; font-size: 0.96rem; }

.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber-bright);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--on-stage); text-decoration: none; font-size: 0.96rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--amber-bright); }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--on-stage-mute);
  letter-spacing: 0.02em;
}
.footer-bottom a { color: var(--on-stage); text-decoration: none; border-bottom: 1px solid var(--rule-on-dark-strong); padding-bottom: 1px; }
.footer-bottom a:hover { color: var(--amber-bright); border-color: var(--amber-bright); }
.footer-bottom .kron { color: var(--amber-bright); border-color: var(--amber-bright); }

/* ───────────────── Conversion ───────────────── */

.conv-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.conv-hero::before {
  content: '';
  position: absolute;
  right: -10vw; top: 30%;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(201, 127, 31, 0.22), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.conv-hero > .wrap { position: relative; z-index: 1; }
.conv-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .conv-grid { grid-template-columns: 1fr; } }

.conv-card {
  background: var(--stage);
  color: var(--on-stage);
  border: 1px solid var(--stage);
  padding: 2.6rem;
  position: relative;
  box-shadow: 0 50px 100px -30px rgba(31, 24, 16, 0.4), 0 0 80px -20px rgba(229, 165, 71, 0.3);
}
.conv-card::before {
  content: 'KOSTENFREI · UNVERBINDLICH';
  position: absolute;
  top: -10px;
  left: 1.8rem;
  background: var(--amber);
  color: var(--stage);
  padding: 0.42em 0.95em;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.conv-card h3 { color: var(--on-stage); margin-bottom: 1rem; }
.conv-card > .deck-sm { font-size: 1rem; color: var(--on-stage-mute); margin-bottom: 1.6rem; }

.input-row { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.input-row label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-stage-mute);
}
.conv-card input, .conv-card textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.85em 1em;
  background: var(--stage-deep);
  border: 1px solid var(--rule-on-dark-strong);
  border-radius: 6px;
  color: var(--on-stage);
  transition: border-color .2s ease;
}
.conv-card input::placeholder, .conv-card textarea::placeholder { color: var(--ink-faint); }
.conv-card input:focus, .conv-card textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(229, 165, 71, 0.18); }

.upload-zone {
  border: 1px dashed var(--rule-on-dark-strong);
  padding: 1.6rem;
  border-radius: 6px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--on-stage-mute);
  background: rgba(11, 8, 5, 0.4);
  margin-bottom: 1.4rem;
  cursor: pointer;
  transition: all .25s ease;
}
.upload-zone:hover { border-color: var(--amber); color: var(--on-stage); background: rgba(229, 165, 71, 0.08); }
.upload-zone strong { color: var(--amber-bright); font-weight: 600; }

.conv-card .btn-amber { width: 100%; justify-content: center; padding-top: 1em; padding-bottom: 1em; font-size: 0.96rem; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 3rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 700px) { .trust-row { grid-template-columns: 1fr; } }
.trust-item {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--rule);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.trust-item:last-child { border-right: none; }
.trust-item .icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--amber-deep);
  border: 1px solid var(--amber);
  border-radius: 50%;
  font-size: 1.1rem;
  box-shadow: 0 0 20px -5px rgba(229, 165, 71, 0.4);
}
.trust-item h4 { font-weight: 600; font-size: 1.06rem; margin-bottom: 0.3rem; }
.trust-item p { font-size: 0.92rem; color: var(--ink-mute); }

/* Buy table */
.kauf-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 2.6rem 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 700px) { .kauf-list { grid-template-columns: 1fr; } }
.kauf-list .col {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-light);
}
.kauf-list .col.yes { background: linear-gradient(135deg, var(--paper-light) 0%, rgba(201, 127, 31, 0.08) 100%); }
.kauf-list h4 {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule);
}
.kauf-list .col.yes h4 { color: var(--amber-deep); }
.kauf-list .col.no h4 { color: var(--ink-mute); }
.kauf-list ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.kauf-list li {
  font-size: 0.99rem;
  color: var(--ink-soft);
  padding-left: 1.5em;
  position: relative;
  line-height: 1.55;
}
.kauf-list .yes li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.kauf-list .no li::before  { content: '×'; position: absolute; left: 0; color: var(--ink-faint); font-weight: 700; }

/* Epigraph */
.epigraph {
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-light);
}
.epigraph blockquote {
  font-family: var(--display);
  font-variation-settings: 'opsz' 96, 'wght' 400;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.3;
  max-width: 34ch;
  margin: 0 auto;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.epigraph blockquote em { color: var(--amber-deep); font-style: normal; }
.epigraph cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 1.8rem;
}

/* Cluster links */
.cluster-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.cluster-links a {
  padding: 1.6rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  background: var(--paper-light);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 140px;
}
.cluster-links a:hover { background: var(--paper); }
.cluster-links a .mono { color: var(--amber-deep); }
.cluster-links a h4 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 24, 'wght' 620;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  margin: 0.2rem 0 0;
  color: var(--ink);
}
.cluster-links a p { font-size: 0.88rem; color: var(--ink-mute); margin-top: auto; line-height: 1.5; }

/* ───────────────── Article (wider reading column!) ───────────────── */

.article-hero { padding: 3rem 0 1rem; position: relative; }
.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule);
}
.article-meta .crumbs a { color: var(--ink-mute); text-decoration: none; border-bottom: 1px solid transparent; }
.article-meta .crumbs a:hover { color: var(--amber-deep); border-color: var(--amber); }
.article-meta .crumbs .sep { color: var(--amber); padding: 0 0.6em; }

.article-title { margin: 1.6rem 0 1.4rem; max-width: 22ch; }
.article-title em { font-style: normal; color: var(--amber-deep); font-variation-settings: 'opsz' 96, 'wght' 420; }

.article-deck {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 2rem;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.article-byline strong { color: var(--ink); font-weight: 600; }
.article-byline .dot { color: var(--amber); }

.article-hero-image {
  margin: 3rem auto;
  aspect-ratio: 21/9;
  max-height: 480px;
  max-width: 960px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 220, 150, 0.85), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(80, 40, 5, 0.7), transparent 60%),
    linear-gradient(135deg, #E0A340 0%, #B5731A 35%, #6B4310 100%);
  position: relative;
  box-shadow: 0 50px 100px -30px rgba(31, 24, 16, 0.4), 0 0 80px -20px rgba(229, 165, 71, 0.35);
}
.article-hero-image::after {
  content: 'ABB. 01 · BUTTERSCOTCH-BERNSTEIN, MILCHIG-OPAK · BERNSTEINMOBIL ARCHIV';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%, 100%);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-body { padding: 4rem 0; }
.article-body h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 3rem 0 1.4rem;
  max-width: 24ch;
}
.article-body h2 em { font-style: normal; color: var(--amber-deep); font-variation-settings: 'opsz' 72, 'wght' 400; }
.article-body h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  margin: 2.4rem 0 0.8rem;
}

.body-prose p a {
  color: var(--amber-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-amber);
  transition: color .2s, border-color .2s;
}
.body-prose p a:hover { color: var(--amber); border-color: var(--amber); }

.fact-card {
  background: var(--paper-light);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--amber);
  padding: 2rem 2rem 1.8rem;
  margin: 2.6rem 0;
  position: relative;
}
.fact-card .label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber-deep);
  margin-bottom: 0.7rem;
}
.fact-card h4 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 32, 'wght' 620;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.fact-card p { font-size: 1rem; color: var(--ink-soft); }

/* Responsive table wrapper — ALWAYS wrap <table> in <div class="table-wrap"> */
.table-wrap {
  margin: 2.4rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--paper-light);
  border: 1px solid var(--rule);
  position: relative;
  /* Subtle fade indicating horizontal scroll */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}
.table-wrap .spec-table { margin: 0; border: 0; min-width: 540px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.4rem 0;
  font-family: var(--body);
  font-size: 0.98rem;
  background: var(--paper-light);
  border: 1px solid var(--rule);
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--rule);
}
.spec-table th {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  background: var(--paper-deep);
}
.spec-table td { color: var(--ink-soft); }
.spec-table tr:hover td { background: var(--paper-deep); }

/* Author box (warm) */
.author-box {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.8rem;
  align-items: start;
  padding: 2.4rem;
  background: var(--paper-light);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--amber);
  margin: 3.5rem 0;
  position: relative;
}
@media (max-width: 700px) { .author-box { grid-template-columns: auto 1fr; } .author-box .author-link { grid-column: 1/-1; margin-top: 1rem; } }

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(180, 110, 40, 0.7), transparent 60%),
    linear-gradient(180deg, #3A220A 0%, #120A02 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px -5px rgba(229, 165, 71, 0.35), 0 0 0 1px var(--rule-amber);
}
.author-avatar::before {
  content: '';
  position: absolute;
  inset: 55% 22% 5% 22%;
  background: linear-gradient(180deg, rgba(120, 70, 20, 0.85), rgba(15, 8, 0, 0.98));
  border-radius: 50% 50% 4px 4px;
}
.author-text .role {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: block;
  margin-bottom: 0.4rem;
}
.author-text .name {
  font-family: var(--display);
  font-variation-settings: 'opsz' 32, 'wght' 660;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  margin-bottom: 0.9rem;
}
.author-text p { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.6; max-width: 60ch; }
.author-text .badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.author-text .badge {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4em 0.85em;
  background: var(--ink);
  color: var(--amber-bright);
  border-radius: 999px;
}
.author-link {
  align-self: center;
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--amber-deep);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 3px;
  white-space: nowrap;
}
.author-link:hover { color: var(--amber); border-color: var(--amber); }

/* Related */
.related-section { border-top: 1px solid var(--rule); padding-top: 3rem; margin-top: 3rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  padding: 1.6rem 1.5rem;
  background: var(--paper-light);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 180px;
}
.related-card:hover { background: var(--paper-deep); border-color: var(--rule-amber); transform: translateY(-2px); }
.related-card .mono { color: var(--amber-deep); margin-bottom: 0.4rem; }
.related-card h4 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 24, 'wght' 620;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.related-card p { font-size: 0.88rem; color: var(--ink-mute); margin-top: auto; line-height: 1.5; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--stage-soft) 0%, var(--stage) 100%);
  color: var(--on-stage);
  border: 1px solid var(--stage);
  padding: 3rem 2.4rem;
  margin: 4rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(229, 165, 71, 0.35), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
@media (max-width: 700px) { .cta-strip { grid-template-columns: 1fr; } }
.cta-strip > div { position: relative; z-index: 1; }
.cta-strip .eyebrow { color: var(--amber-bright); margin-bottom: 0.5rem; }
.cta-strip .eyebrow::before { background: var(--amber-bright); }
.cta-strip h3 { font-size: 1.8rem; margin-bottom: 0.3rem; color: var(--on-stage); }
.cta-strip p { color: var(--on-stage-mute); }
.cta-strip .btn-amber { position: relative; z-index: 1; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); animation: reveal .9s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal:nth-child(2) { animation-delay: .1s; }
.reveal:nth-child(3) { animation-delay: .2s; }
.reveal:nth-child(4) { animation-delay: .3s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* Sticky mobile CTA bar — DEPRECATED, kept but hidden */
.mobile-cta { display: none !important; }

/* ═══════════════════════ Photo Placeholder System ═══════════════════════ */

.photo-ph {
  position: relative;
  width: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 220, 150, 0.42), transparent 55%),
    radial-gradient(ellipse at 70% 75%, rgba(80, 40, 5, 0.28), transparent 60%),
    linear-gradient(135deg, #E5A547 0%, #B5731A 45%, #6B4310 100%);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(31, 24, 16, 0.4), 0 0 60px -20px rgba(229, 165, 71, 0.25);
}
.photo-ph::before {
  /* Noise overlay */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.7  0 0 0 0 0.5  0 0 0 0 0.2  0 0 0 0.16 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo-ph::after {
  /* Caption label */
  content: attr(data-label);
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  right: 1.2rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 242, 235, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.photo-ph .photo-ph-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}
.photo-ph .photo-ph-inner::before {
  /* Bernstein drop SVG */
  content: '';
  width: 38%;
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><radialGradient id='g' cx='35%25' cy='30%25' r='70%25'><stop offset='0%25' stop-color='%23FFE39C' stop-opacity='0.85'/><stop offset='50%25' stop-color='%23FFB347' stop-opacity='0.55'/><stop offset='100%25' stop-color='%236B4310' stop-opacity='0.0'/></radialGradient></defs><circle cx='50' cy='50' r='42' fill='url(%23g)'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(1px);
  animation: ph-pulse 4s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes ph-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.05); opacity: 0.85; }
}

/* Common aspect-ratio variants */
.photo-ph.ar-square   { aspect-ratio: 1; }
.photo-ph.ar-43       { aspect-ratio: 4/3; }
.photo-ph.ar-169      { aspect-ratio: 16/9; }
.photo-ph.ar-219      { aspect-ratio: 21/9; }
.photo-ph.ar-45       { aspect-ratio: 4/5; }
.photo-ph.ar-32       { aspect-ratio: 3/2; }

/* ═══════════════════════ Extra Polish — Hover & Focus Effects ═══════════════════════ */

/* Amber-glow on link hover within body text */
.body-prose a {
  color: var(--amber-deep);
  text-decoration: none;
  background-image: linear-gradient(to right, var(--amber), var(--amber));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .3s cubic-bezier(.2,.7,.2,1), color .2s ease;
  padding-bottom: 1px;
}
.body-prose a:hover {
  background-size: 100% 1px;
  color: var(--amber);
}

/* Subtle pulse-glow on important data points (price highlights) */
.data-highlight {
  color: var(--amber-deep);
  font-weight: 700;
  position: relative;
}
.data-highlight::after {
  content: '';
  position: absolute;
  inset: -2px -4px;
  background: radial-gradient(ellipse, rgba(229, 165, 71, 0.18), transparent 70%);
  z-index: -1;
  filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
}
.data-highlight:hover::after { opacity: 1; }

/* ═══════════════════════ Lexikon Grid ═══════════════════════ */

.lex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 2rem;
}
@media (max-width: 760px) { .lex-grid { grid-template-columns: 1fr; } }
.lex-entry {
  padding: 1.6rem 1.8rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.9rem;
  background: var(--paper-light);
  transition: background .3s ease, padding-left .3s ease;
}
.lex-entry:hover { background: var(--paper); padding-left: 2.1rem; }
.lex-entry .lex-letter {
  font-family: var(--display);
  font-variation-settings: 'opsz' 96, 'wght' 380;
  font-size: 2.4rem;
  line-height: 0.9;
  color: var(--amber-deep);
  text-align: center;
  align-self: start;
}
.lex-entry h3 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 36, 'wght' 560;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.lex-entry h3 a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .25s ease; }
.lex-entry h3 a:hover { border-color: var(--amber); }
.lex-entry p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.lex-entry p em { color: var(--amber-deep); font-style: italic; }
.lex-entry .lex-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-top: 0.4rem;
  padding: 0.25em 0.6em;
  border: 1px solid var(--rule-amber);
  border-radius: 999px;
}
.lex-entry .lex-tag.exclude { color: var(--ink-mute); border-color: var(--rule-strong); }

/* Anchor letter heads */
.lex-anchor {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 380;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--amber-deep);
  letter-spacing: -0.04em;
  padding: 2.4rem 0 0.6rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
  grid-column: 1 / -1;
  line-height: 1;
}

/* ═══════════════════════ Filter-Gate Page Components ═══════════════════════ */

/* Gate-Hero: photo + text side-by-side */
.gate-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
}
.gate-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .gate-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gate-hero-image { order: -1; }
}
.gate-hero h1 em { font-style: normal; color: var(--amber-deep); font-variation-settings: 'opsz' 96, 'wght' 400; }
.gate-hero .lede { margin-top: 1.5rem; max-width: 38ch; }
.gate-hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.gate-hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 60px 100px -40px rgba(31, 24, 16, 0.5),
    0 0 80px -30px rgba(229, 165, 71, 0.4),
    0 0 0 1px var(--rule-strong);
}
.gate-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gate-hero-image::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.6rem 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-light);
  background: linear-gradient(to top, rgba(11, 8, 5, 0.85), transparent);
}

/* "Was wir kaufen" — photo gallery cards */
.buy-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 700px) { .buy-gallery { grid-template-columns: 1fr; } }
.buy-card {
  background: var(--paper-light);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.buy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(31, 24, 16, 0.3), 0 0 40px -10px rgba(229, 165, 71, 0.25);
  border-color: var(--rule-amber);
}
.buy-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.buy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.buy-card:hover .buy-card-img img { transform: scale(1.04); }
.buy-card-body { padding: 1.4rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.buy-card .lot {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.buy-card h3 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 36, 'wght' 540;
  font-size: 1.35rem;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin-top: 0.2rem;
}
.buy-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; margin-top: auto; }
.buy-card .price-note {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--amber-deep);
  border-top: 1px solid var(--rule);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
}

/* Self-Service-Routing-Box — prominent off-ramp to price/lexicon pages */
.routing-box {
  background: linear-gradient(135deg, var(--stage) 0%, var(--stage-soft) 100%);
  color: var(--on-stage);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  margin: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule-amber);
}
.routing-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(229, 165, 71, 0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.routing-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201, 127, 31, 0.25), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.routing-box > * { position: relative; z-index: 1; }
.routing-box .eyebrow { color: var(--amber-bright); }
.routing-box .eyebrow::before { background: var(--amber-bright); }
.routing-box h2 { color: var(--on-stage); max-width: 22ch; margin-top: 0.8rem; }
.routing-box h2 em { color: var(--amber-bright); font-style: normal; font-variation-settings: 'opsz' 72, 'wght' 400; }
.routing-box .deck {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--on-stage-mute);
  max-width: 56ch;
  margin: 1rem 0 2.5rem;
}
.routing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-on-dark);
  border-left: 1px solid var(--rule-on-dark);
}
@media (max-width: 760px) { .routing-options { grid-template-columns: 1fr; } }
.routing-option {
  padding: 1.8rem 1.6rem;
  border-right: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
  text-decoration: none;
  color: var(--on-stage);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background .25s ease, padding-left .25s ease;
}
.routing-option:hover { background: rgba(229, 165, 71, 0.08); padding-left: 1.9rem; }
.routing-option .num {
  font-family: var(--display);
  font-variation-settings: 'opsz' 60, 'wght' 380;
  font-size: 2.6rem;
  line-height: 0.9;
  color: var(--amber-bright);
  margin-bottom: 0.4rem;
}
.routing-option h4 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 36, 'wght' 560;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--on-stage);
}
.routing-option p {
  font-size: 0.9rem;
  color: var(--on-stage-mute);
  line-height: 1.5;
  margin-top: auto;
}
.routing-option .arrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: gap .25s ease;
}
.routing-option:hover .arrow { gap: 0.7em; }

/* "Wir kaufen NICHT" — single clear callout */
.no-buy {
  margin: 3rem 0;
  padding: 2.2rem 2rem;
  background: var(--paper-light);
  border-left: 3px solid var(--ink-faint);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 700px) { .no-buy { grid-template-columns: 1fr; } }
.no-buy h3 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 36, 'wght' 520;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.no-buy h3 em { font-style: italic; color: var(--ink-mute); }
.no-buy ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.no-buy li {
  font-size: 0.96rem;
  color: var(--ink-soft);
  padding-left: 1.4em;
  position: relative;
  line-height: 1.45;
}
.no-buy li::before { content: '×'; position: absolute; left: 0; color: var(--ink-faint); font-weight: 700; }
.no-buy .redirect {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.no-buy .redirect a {
  color: var(--amber-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
  text-decoration: none;
}
.no-buy .redirect a:hover { color: var(--amber); border-color: var(--amber); }

@media (max-width: 768px) {
  .style-switcher { display: none; }

  /* Tighter mobile typography & spacing */
  h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }
  .hero { padding: 1.4rem 0 1.8rem; }
  .hero-meta { display: none; }
  .hero-grid { gap: 1.2rem; }
  .hero h1 { margin: 0.6rem 0 0.9rem; }
  .hero .lede { margin-bottom: 1.3rem; font-size: 1rem; line-height: 1.45; max-width: 38ch; }
  .hero-actions { gap: 0.6rem; }
  .hero-actions .btn { padding: 0.78em 1.2em; font-size: 0.85rem; }
  .stone-frame { max-width: 240px; margin: 0.6rem auto 0; aspect-ratio: 1; }
  .amber-stone { --size: min(58vw, 240px); }
  .stone-frame::before { inset: -2%; filter: blur(36px); }
  .stone-frame::after {
    width: min(58vw, 240px); height: min(58vw, 240px);
    box-shadow:
      0 0 40px 3px rgba(255, 179, 71, 0.7),
      0 0 18px 0 rgba(255, 200, 110, 0.6),
      0 20px 35px -8px rgba(40, 20, 5, 0.55);
  }

  .section { padding: 4rem 0; }
  .section-head { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
  .pillar-grid { gap: 0.8rem; }
  .pillar { min-height: 180px; padding: 1.4rem 1.3rem; }
  .pillar h3 { font-size: 1.25rem; }

  .spotlight { padding: 3rem 0; gap: 2rem; }
  .portrait { aspect-ratio: 3/4; max-height: 50vh; }

  .conditions, .process { padding: 4rem 0; }
  .steps { gap: 0; }
  .step { padding: 1.8rem 1.3rem 1.5rem; }
  .step .num { font-size: 2.8rem; }

  .conv-card { padding: 1.8rem 1.4rem; }

  .epigraph { padding: 3rem 0; }
  .epigraph blockquote { font-size: clamp(1.4rem, 6vw, 1.9rem); }

  .article-hero { padding: 1.5rem 0 0.5rem; }
  .article-title { margin: 1rem 0; }
  .article-deck { font-size: 1.05rem; margin-bottom: 1.5rem; }
  .article-meta { font-size: 0.66rem; flex-wrap: wrap; gap: 0.5rem; }
  .article-hero-image { margin: 2rem -1rem; aspect-ratio: 3/2; }
  .article-hero-image::after { font-size: 0.55rem; bottom: -0.7rem; }
  .article-body { padding: 2.5rem 0; }
  .body-prose p { font-size: 1.04rem; line-height: 1.7; }
  /* Table on mobile — wrap allows horizontal slide, contents kept legible */
  .table-wrap { margin: 1.8rem -1rem; border-left: 0; border-right: 0; }
  .table-wrap .spec-table { min-width: 480px; }
  .spec-table th, .spec-table td {
    padding: 0.7em 0.85em;
    font-size: 0.88rem;
    white-space: nowrap;
  }
  .spec-table th { font-size: 0.66rem; letter-spacing: 0.12em; }
  .spec-table td:first-child {
    position: sticky;
    left: 0;
    background: var(--paper-light);
    font-weight: 600;
    box-shadow: 4px 0 8px -4px rgba(31,24,16,.15);
    white-space: normal;
  }
  .spec-table tr:hover td:first-child { background: var(--paper-deep); }
  .author-box { padding: 1.8rem 1.4rem; gap: 1.2rem; }
  .author-avatar { width: 72px; height: 72px; }
  .author-text .name { font-size: 1.2rem; }
  .cta-strip { padding: 2rem 1.5rem; gap: 1.2rem; }
  .cta-strip h3 { font-size: 1.4rem; }

  /* Bigger touch targets */
  .btn, .btn-amber, .btn-ghost { padding: 1em 1.6em; font-size: 0.92rem; }
  .pillar { min-height: 0; }
}

/* Switchers */
.style-switcher {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--stage-deep);
  padding: 0.4rem;
  display: flex;
  gap: 0.2rem;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.5);
  border-radius: 999px;
}
.style-switcher .label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-bright);
  padding: 0.7em 0.8em 0.7em 1em;
  align-self: center;
}
.style-switcher a {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.7em 1.1em;
  color: var(--on-stage-mute);
  text-decoration: none;
  border-radius: 999px;
  transition: all .2s ease;
}
.style-switcher a.active,
.style-switcher a:hover { background: var(--amber); color: var(--stage); }

.page-switcher {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  background: var(--paper-light);
  border: 1px solid var(--rule-strong);
  padding: 0.3rem;
  display: flex;
  gap: 0.2rem;
  border-radius: 999px;
}
.page-switcher a {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.6em 1em;
  color: var(--ink-mute);
  text-decoration: none;
  border-radius: 999px;
  transition: all .2s ease;
}
.page-switcher a.active,
.page-switcher a:hover { background: var(--ink); color: var(--paper-light); }
