/* ==========================================================================
   sm2608 – starsMEETING "Stromberg verstehen"
   Design-System Leben Führen
   ========================================================================== */

:root {
  --bg:        #111111;
  --fg:        #f3f3f3;

  --burgundy:  #A81A40;
  --grey:      #58595b;
  --gold:      #FBAD18;
  --avocado:   #009055;
  --ocean:     #24387F;
  --orange:    #F58025;

  /* === Akzentfarbe DIESER Seite – hier umstellen (max. eine, zusätzlich zu Orange) === */
  --accent:    var(--burgundy);

  --maxw:      1080px;
  --gutter:    clamp(1.25rem, 5vw, 4rem);
  --radius-btn: 50px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Funnel Sans", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .display {
  font-family: "Funnel Display", "Funnel Sans", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

p { max-width: 62ch; }

a { color: inherit; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

section { padding-block: clamp(3.5rem, 8vw, 7rem); }

.eyebrow {
  font-family: "Funnel Sans", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* Reversed / highlighted sections */
.reverse { background: var(--fg); color: var(--bg); }
.reverse .eyebrow { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #111111;
  font-family: "Funnel Sans", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--orange);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { background: transparent; color: var(--orange); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.reverse .btn { color: #111111; }
.reverse .btn:hover { color: var(--orange); }

.btn-row { margin-top: 2rem; }
.btn-note { margin-top: 1rem; font-size: 0.85rem; color: var(--grey); }
.reverse .btn-note { color: var(--grey); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(4.5rem, 12vw, 9rem); position: relative; overflow: hidden; }
.hero .wrap { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .hero .wrap { grid-template-columns: 1.35fr 1fr; gap: 4rem; }
}
.hero-copy { min-width: 0; }
.hero-portrait {
  display: block; width: 100%; max-width: 340px; height: auto;
  margin-inline: auto; margin-top: 1rem;
}
@media (min-width: 900px) {
  .hero-portrait { max-width: 674px; margin: 0; }
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw + 1rem, 5.4rem);
  max-width: 16ch;
}
.hero .lede {
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  color: #cfcfcf;
  margin-top: 1.75rem;
  max-width: 46ch;
}
.hero-meta {
  margin-top: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--grey);
}
.hero-meta strong { color: var(--fg); font-weight: 600; }

/* thin accent bar under hero */
.accent-rule {
  height: 6px;
  width: 100%;
  background: var(--accent);
}

/* ---------- Generic prose section ---------- */
.lead-q { font-size: clamp(1.4rem, 1.1rem + 1vw, 2.1rem); font-family:"Funnel Display",sans-serif; font-weight:600; line-height:1.2; max-width: 22ch; }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { font-size: clamp(1.8rem, 1.3rem + 1.6vw, 3rem); margin-bottom: 0.5rem; }
.muted { color: #bdbdbd; }
.reverse .muted { color: #3a3a3a; }

/* ---------- The three moves (signature) ---------- */
.moves { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 820px) { .moves { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.move {
  border-top: 4px solid var(--accent, var(--grey));
  padding-top: 1.5rem;
}
.move .num {
  font-family: "Funnel Display", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--accent, var(--grey));
  line-height: 1;
}
.move h3 { font-size: 1.5rem; margin-top: 0.5rem; }
.move p { margin-top: 0.75rem; color: #c8c8c8; font-size: 0.98rem; }

/* Alle Züge tragen die eine Akzentfarbe der Seite (siehe :root --accent) */

/* ---------- Filter (für wen / nicht) ---------- */
.filter-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 760px) { .filter-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.filter-col { padding: 2rem; border-radius: 14px; }
.filter-col h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.filter-col.yes { background: var(--fg); color: var(--bg); }
.filter-col.yes h3 { color: var(--avocado); }
.filter-col.yes p { color: #333; }
.filter-col.no { border: 1px solid #3a3a3a; }
.filter-col.no h3 { color: var(--burgundy); }
.filter-col.no p { color: #c8c8c8; }

/* ---------- Facts ---------- */
.facts { display: grid; gap: 1.25rem 3rem; margin-top: 2rem; }
@media (min-width: 640px) { .facts { grid-template-columns: auto 1fr; } }
.facts dt { font-weight: 600; color: var(--accent); }
.facts dd { color: var(--fg); }
.price { font-family: "Funnel Display", sans-serif; font-weight: 700; font-size: 1.4rem; }

/* ---------- About ---------- */
.about { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 760px) { .about { grid-template-columns: 300px 1fr; gap: 3rem; } }
.about img {
  width: 100%; max-width: 300px; height: auto; display: block;
  align-self: start;
}
.bio { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.25rem; }
.bio li {
  position: relative; padding-left: 1.4rem; color: #333; max-width: 60ch;
  font-size: 0.98rem; line-height: 1.5;
}
.bio li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* ---------- Closing ---------- */
.closing { text-align: center; }
.closing .lead-q { margin-inline: auto; max-width: 26ch; }
.closing .btn-row { display: flex; justify-content: center; }

/* ---------- Footer ---------- */
footer { padding-block: 2.5rem; border-top: 1px solid #262626; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: space-between; align-items: flex-start; }
.foot-copy { font-size: 0.75rem; line-height: 1.5; color: var(--grey); max-width: none; }
.foot-copy a { color: #9a9a9a; text-decoration: underline; text-underline-offset: 2px; }
.foot-copy a:hover { color: var(--fg); }
.foot-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.75rem; }
.foot-links a { color: var(--grey); text-decoration: none; }
.foot-links a:hover { color: var(--fg); }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}