/* ===== Schriften =====
   Alle Schriften werden lokal gehostet (DSGVO: keine Anfragen an Google).
   League Spartan & Great Vibes: SIL Open Font License (kommerziell frei). */
@font-face {
  font-family: 'League Spartan';
  src: url('assets/fonts/LeagueSpartan-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'League Spartan';
  src: url('assets/fonts/LeagueSpartan-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Great Vibes';
  src: url('assets/fonts/GreatVibes-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Great Vibes';
  src: url('assets/fonts/GreatVibes-latin-ext.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ===== Basis (gleiche Design-Sprache wie hiebl-wolfgang.com) ===== */
:root {
  --bg: #010101;
  --bg-soft: #0c0c0e;
  --text: #eceaea;
  --text-soft: #a3a1a5;
  --line: rgba(236, 234, 234, 0.12);
  --name-gradient: linear-gradient(180deg, #d4d4d4 0%, #535353 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 1.35em;
  line-height: 1;
  /* Script-Schwünge ragen über die Buchstabenbox hinaus */
  display: inline-block;
  padding: 0.08em 0.22em 0.12em 0.06em;
  margin: -0.08em -0.04em -0.12em 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 110px 0; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.section-sub {
  color: var(--text-soft);
  max-width: 640px;
  font-size: 18px;
  margin-bottom: 52px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--text);
  color: #0a0a0a;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 17px 38px 15px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(236, 234, 234, 0.18);
  background: #ffffff;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: rgba(236, 234, 234, 0.06);
  box-shadow: none;
}
.btn-note {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-soft);
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Scroll-Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Sichtbarer Tastatur-Fokus auf dunklem Grund */
a:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(1,1,1,0.9) 0%, rgba(1,1,1,0) 100%);
}
.nav-inner {
  padding: 22px max(28px, 3vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo em { font-style: normal; color: var(--text-soft); }
.nav-cta {
  font-size: 14px;
  padding: 12px 26px 10px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 70px;
  position: relative;
}
.hero::after {
  /* dezenter Licht-Schein hinter dem Hero, Premium-Look wie beim Vorbild */
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100vw);
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(236, 234, 234, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero h1 {
  font-size: clamp(36px, 5.8vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 900px;
  margin: 0 auto 26px;
  text-wrap: balance;
}
.hero h1 .muted {
  background: var(--name-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 20px);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 80px);
  margin-top: 78px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-stat span {
  font-size: 14px;
  color: var(--text-soft);
}

/* ===== Problem ===== */
.problem { background: var(--bg-soft); }
.problem-body {
  color: var(--text-soft);
  font-size: 18px;
  max-width: 640px;
}
.problem-body p { margin-bottom: 18px; }
.problem blockquote {
  margin: 44px 0 0;
  padding-left: 26px;
  border-left: 2px solid var(--text);
  font-size: clamp(21px, 2.6vw, 27px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  max-width: 700px;
}
.problem blockquote footer {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-soft);
}

/* ===== Karten-Raster (Lösung / Ergebnisse) ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px 30px;
}
.results .card { background: var(--bg); }
.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.card p {
  color: var(--text-soft);
  font-size: 16px;
}

/* ===== Ablauf ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.step-num {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.step h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--text-soft); font-size: 16px; }

/* ===== Ergebnisse ===== */
.results { background: var(--bg-soft); }
.result-num {
  display: block;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #8a8a8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.result-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.result-quote p {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.disclaimer {
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-soft);
  max-width: 640px;
}

/* ===== Über Wolfgang ===== */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(18%);
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.about-body p {
  color: var(--text-soft);
  margin-bottom: 16px;
}
.about-body p strong { color: var(--text); font-weight: 600; }

/* ===== Für wen ===== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fit-col {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
}
.fit-col h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.fit-col ul { list-style: none; }
.fit-col li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 16px;
}
.fit-col li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 700;
}
.fit-yes li::before { content: '✓'; color: var(--text); }
.fit-no li::before { content: '✕'; color: var(--text-soft); }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--text-soft);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 0 26px;
  color: var(--text-soft);
  max-width: 660px;
}

/* ===== Bewerbung / Formular ===== */
.apply { background: var(--bg-soft); }
.apply-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  padding: 16px 18px 14px;
  transition: border-color 0.2s ease;
}
.apply-form select { appearance: none; }
.apply-form select:invalid { color: var(--text-soft); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--text-soft);
  border-bottom: 1.6px solid var(--text-soft);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: rgba(236, 234, 234, 0.45);
  box-shadow: 0 0 0 2px rgba(236, 234, 234, 0.18);
}
.apply-form ::placeholder { color: var(--text-soft); opacity: 1; }
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
.form-consent input { margin-top: 3px; accent-color: var(--text); }
.form-consent a { color: var(--text); }
.apply-form .btn { align-self: flex-start; margin-top: 6px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-soft);
}
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  section { padding: 84px 0; }
  .cards, .steps { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 340px; }
  .fit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 26px; }
  .nav-cta { display: none; }
}
