/* ==========================================================================
   WeitblickMedia — Stylesheet
   Aufbau:  1 Reset · 2 Basis · 3 Layout · 4 Komponenten · 5 Sektionen · 6 Utilities
   Farben/Größen kommen aus css/tokens.css.
   ========================================================================== */

/* 1 — Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* 2 — Basis ---------------------------------------------------------------- */
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--c-text); text-decoration: none; transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast); }
a:hover { color: var(--c-accent); }

:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 4px; }

h1, h2 { letter-spacing: -0.03em; font-weight: 800; text-wrap: balance; }
h1 { font-size: var(--fs-display); line-height: 1.0; letter-spacing: -0.035em; }
h2 { font-size: var(--fs-h2); line-height: 1.1; }
p  { text-wrap: pretty; }

/* Kursiver Serif-Akzent in Headlines: <span class="accent-serif">sehen</span> */
.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent);
}

/* 3 — Layout --------------------------------------------------------------- */
.wrap        { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.wrap--narrow{ max-width: var(--wrap-narrow); }

.section       { padding-block: var(--pad-y); }
.section--alt  { background: var(--c-bg-alt); }
.section--rule { border-top: 1px solid var(--c-line); }
.section--rules{ border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }

.stack       { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 48px); }
.stack--tight{ gap: 16px; }

.grid-2   { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(30px, 4vw, 64px); }
.grid-auto{ display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }

/* 4 — Komponenten ---------------------------------------------------------- */

/* Mono-Label über jeder Sektion, z. B. "01 — Das Problem" */
.label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.label--accent { color: var(--c-accent); }
.label--inline { display: flex; align-items: center; gap: 10px; }
.label--inline::before { content: ""; width: 22px; height: 1px; background: var(--c-accent); }

/* Goldpunkt (Logo-Marke / Aufzählung) */
.dot { width: 11px; height: 11px; border-radius: var(--r-pill); background: var(--c-accent); flex-shrink: 0; }
.dot--sm { width: 7px; height: 7px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 19px 30px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary { background: var(--c-accent); color: var(--c-bg); }
.btn--primary:hover { background: var(--c-accent-hover); color: var(--c-bg); }
.btn--ghost { border-color: var(--c-line-input); color: var(--c-text); font-weight: 600; }
.btn--ghost:hover { border-color: var(--c-text); color: var(--c-text); }
.btn--sm { padding: 14px 20px; font-size: 15px; }

.btn-group { display: flex; flex-direction: column; gap: 11px; padding-top: 4px; }
.btn-note { font-size: 14px; color: var(--c-text-faint); text-align: center; }

/* Pill-Badge mit Goldrand */
.badge {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  border: 1px solid var(--c-line-accent);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-accent);
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: var(--r-pill); background: var(--c-accent); }

/* Card */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-card);
  padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--t-base);
}
.card:hover { border-color: rgba(233, 180, 94, 0.45); }
.card__num   { font-family: var(--font-mono); font-size: 11px; color: var(--c-accent); }
.card__title { font-weight: 700; font-size: var(--fs-h3); letter-spacing: -0.01em; }
.card__text  { color: var(--c-text-soft); }

/* Nummerierte Liste mit Trennlinien */
.rule-list { display: flex; flex-direction: column; gap: 12px; }
.rule-list li {
  display: flex; gap: 14px; align-items: baseline;
  border-top: 1px solid var(--c-line); padding-top: 12px;
}
.rule-list__num { font-family: var(--font-mono); font-size: 12px; color: var(--c-accent); }
.rule-list__text { color: var(--c-text-soft); }

/* Check-Liste (Leistungsumfang) */
.check-list { display: flex; flex-direction: column; }
.check-list li {
  display: flex; gap: 14px; align-items: center;
  border-top: 1px solid var(--c-line-strong); padding: 14px 0;
}
.check-list li:last-child { border-bottom: 1px solid var(--c-line-strong); }
.check-list li::before { content: "✓"; color: var(--c-accent); font-size: 13px; }

/* 9:16-Videoplatzhalter — hier später <video> einsetzen (siehe README) */
.reel {
  aspect-ratio: 9 / 16;
  border-radius: var(--r-media);
  border: 1px solid var(--c-line-strong);
  background: repeating-linear-gradient(135deg, rgba(245,242,236,.06) 0 9px, transparent 9px 18px);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 11px; overflow: hidden;
}
.reel--accent {
  border-color: rgba(233, 180, 94, .38);
  background: repeating-linear-gradient(135deg, rgba(233,180,94,.12) 0 9px, transparent 9px 18px);
}
.reel--offset { transform: translateY(18px); }
.reel__tag {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-bg); background: var(--c-accent);
  padding: 4px 8px; border-radius: var(--r-badge); align-self: flex-start;
}
.reel__meta {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-text-faintest); margin-top: auto;
}
.reel__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-text-faint); margin-top: auto;
}

/* FAQ — natives <details>, kein JS nötig */
.faq details { border-top: 1px solid rgba(245,242,236,.11); }
.faq details:last-child { border-bottom: 1px solid rgba(245,242,236,.11); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-weight: 600; font-size: clamp(17px, 2vw, 19px);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--c-accent); font-size: 20px; flex-shrink: 0; transition: transform var(--t-base); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding-bottom: 22px; max-width: 62ch; color: var(--c-text-soft); }

/* 5 — Sektionen ------------------------------------------------------------ */

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 10, 9, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.nav__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 12px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; font-weight: 800; letter-spacing: -.02em; font-size: 17px; }
.nav__logo:hover { color: var(--c-text); }

/* Hero */
.hero {
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(40px, 7vw, 104px) var(--pad-x) clamp(52px, 7vw, 116px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(38px, 5vw, 72px); align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 28px); }
.hero__lead { max-width: 44ch; font-size: var(--fs-lead); color: var(--c-text-soft); }
.hero__note { display: flex; align-items: center; gap: 11px; font-size: var(--fs-small); color: var(--c-text-soft); padding-top: 4px; }
.hero__reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1.2vw, 14px); align-items: center; }
.hero__reels-caption {
  grid-column: 1 / -1; text-align: center; padding-top: 24px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-text-faintest);
}

/* Problem */
.problem__text { display: flex; flex-direction: column; gap: 22px; padding-top: clamp(0px, 2vw, 34px); }
.problem__text > p { font-size: clamp(17px, 1.8vw, 19px); line-height: 1.65; color: var(--c-text-muted); }

/* Portfolio */
.portfolio__head { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; }
.portfolio__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: clamp(10px, 1.3vw, 16px); }
.portfolio__item { display: flex; flex-direction: column; gap: 10px; }
.portfolio__caption { font-weight: 600; font-size: var(--fs-body); }
.portfolio__disclaimer { font-size: var(--fs-small); color: var(--c-text-faint); max-width: 64ch; }

/* Angebot */
.offer {
  border: 1px solid rgba(233, 180, 94, .3);
  border-radius: var(--r-panel);
  background: linear-gradient(180deg, var(--c-surface-2) 0%, var(--c-surface-3) 100%);
  padding: clamp(26px, 4vw, 58px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(30px, 4vw, 58px);
}
.offer__copy { display: flex; flex-direction: column; gap: 20px; }
.offer__title { font-size: clamp(30px, 4.6vw, 50px); line-height: 1.02; letter-spacing: -.035em; }
.offer__price-row { display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap; }
.offer__price { font-size: clamp(54px, 8vw, 86px); line-height: .9; font-weight: 800; letter-spacing: -.045em; color: var(--c-accent); }
.offer__price-note { font-size: var(--fs-small); color: var(--c-text-soft); padding-bottom: 8px; }
.offer__text { max-width: 42ch; line-height: 1.65; color: var(--c-text-soft); }
.offer__included-label { padding-bottom: 14px; }

/* Ablauf */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: clamp(14px, 2vw, 24px); }
.steps__item { display: flex; flex-direction: column; gap: 11px; border-top: 1px solid var(--c-line-strong); padding-top: 18px; }
.steps__item:first-child { border-top-color: rgba(233, 180, 94, .5); }
.steps__num   { font-family: var(--font-mono); font-size: 13px; color: var(--c-accent); }
.steps__title { font-weight: 700; font-size: var(--fs-h3); letter-spacing: -.01em; }
.steps__text  { color: var(--c-text-soft); }

/* Über uns */
.about { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(30px, 4vw, 64px); align-items: center; }
.about__copy { display: flex; flex-direction: column; gap: 20px; }
.about__copy h2 { font-size: clamp(26px, 3.8vw, 40px); line-height: 1.12; }
.about__copy p { max-width: 46ch; font-size: 17px; line-height: 1.65; color: var(--c-text-muted); }
.about__copy p + p { color: var(--c-text-soft); }
.about__photo {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  border: 1px solid var(--c-line-strong);
  background: repeating-linear-gradient(135deg, rgba(245,242,236,.05) 0 10px, transparent 10px 20px);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  padding: 20px;
}
.about__photo-note { font-size: var(--fs-small); color: var(--c-text-soft); line-height: 1.5; max-width: 30ch; }

/* Kontakt */
.contact { display: flex; flex-direction: column; gap: clamp(24px, 3.5vw, 40px); align-items: flex-start; padding-block: clamp(58px, 8vw, 124px); }
.contact h2 { max-width: 24ch; font-size: clamp(32px, 6vw, 64px); line-height: 1.02; letter-spacing: -.035em; }
.contact__lead { max-width: 46ch; font-size: clamp(17px, 1.9vw, 19px); color: var(--c-text-soft); }
.contact__actions { display: flex; flex-direction: column; gap: 11px; align-self: stretch; max-width: 440px; }
.contact .btn { padding: 20px 32px; }

/* Footer */
.footer { border-top: 1px solid var(--c-line); }
.footer__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 26px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: var(--fs-small); }
.footer__brand .dot { width: 9px; height: 9px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; font-size: var(--fs-small); }
.footer__links a { color: var(--c-text-soft); }
.footer__links a:hover { color: var(--c-accent); }

/* 6 — Utilities ------------------------------------------------------------ */
.measure   { max-width: 56ch; }
.measure-sm{ max-width: 48ch; }
.measure-lg{ max-width: 62ch; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 7 — Rechtstexte (Impressum, Datenschutz) --------------------------------- */
.legal {
  max-width: 78ch;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 88px) var(--pad-x) clamp(56px, 7vw, 104px);
}
.legal__header { display: flex; flex-direction: column; gap: 16px; padding-bottom: clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--c-line-strong); }
.legal h1 { font-size: clamp(32px, 5vw, 52px); }
.legal h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-top: clamp(38px, 5vw, 56px);
  padding-bottom: 4px;
}
.legal h3 { font-size: 17px; font-weight: 700; margin-top: 28px; letter-spacing: -.01em; }
.legal p, .legal li { color: var(--c-text-muted); line-height: 1.7; }
.legal p { margin-top: 14px; }
.legal a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--c-accent-hover); }

.legal ul { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.legal ul li { position: relative; padding-left: 20px; }
.legal ul li::before { content: "—"; position: absolute; left: 0; color: var(--c-accent); }

/* Adressblock / hervorgehobene Angaben */
.legal address {
  font-style: normal;
  margin-top: 16px;
  padding: 20px 22px;
  background: var(--c-surface);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-card);
  line-height: 1.7;
  color: var(--c-text);
}

/* Gelber Kasten für offene Punkte, die vor dem Live-Gang zu klären sind */
.legal .todo {
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px dashed rgba(233, 180, 94, .5);
  border-radius: var(--r-card);
  background: rgba(233, 180, 94, .05);
}
.legal .todo p { margin-top: 8px; color: var(--c-text-soft); font-size: var(--fs-small); }
.legal .todo p:first-child { margin-top: 0; }
.legal .todo strong { color: var(--c-accent); font-weight: 700; }

.legal__meta { margin-top: clamp(40px, 5vw, 60px); padding-top: 22px; border-top: 1px solid var(--c-line); font-size: var(--fs-small); color: var(--c-text-faint); }
.legal__back { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; font-weight: 600; }
