/* ============================================================
   RUNKNAGEL CONTROLLING — Designsystem
   Farben: Smaragdgrün / Gold / Creme
   ============================================================ */

/* --- Schriften ---------------------------------------------
   DSGVO-sicher: keine extern geladenen Fonts.
   Standard: hochwertige System-Stacks.
   Optional (empfohlen): Fonts lokal hosten und die beiden
   @font-face-Blöcke unten aktivieren (Dateien in /fonts ablegen).

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-SemiBold.woff2") format("woff2");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
------------------------------------------------------------- */

:root {
  --green-950: #0b201a;   /* tiefster Hintergrund */
  --green-900: #0e2b22;   /* Haupt-Smaragd */
  --green-800: #14382d;   /* Karten auf Dunkel */
  --green-700: #1c4a3b;   /* Hover / Linien */
  --gold:      #c9a24b;   /* Primär-Gold */
  --gold-soft: #dcbe7d;   /* helles Gold für Text auf Dunkel */
  --cream:     #f4efe3;   /* Creme-Hintergrund */
  --cream-2:   #ece5d3;   /* Creme abgesetzt */
  --ink:       #1d2b26;   /* Text auf Hell */
  --ink-soft:  #4a5a53;   /* Sekundärtext auf Hell */
  --paper-line: rgba(201,162,75,.28);

  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1120px;
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* --- Typografie --- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: .01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .9rem;
}

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 44rem; }

/* Gold-Hairline — das wiederkehrende „Kontenlinien“-Motiv */
.rule {
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 1.4rem 0;
  position: relative;
}
.rule::after {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 28px; height: 1px; background: var(--paper-line);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .85rem 1.7rem;
  font-family: var(--sans);
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--green-950); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-outline { background: transparent; color: var(--gold-soft); border-color: var(--gold); }
.btn-outline:hover { background: rgba(201,162,75,.12); }
.btn-outline-dark { background: transparent; color: var(--green-900); border-color: var(--green-900); }
.btn-outline-dark:hover { background: var(--green-900); color: var(--cream); }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- Header / Navigation --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,43,34,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--paper-line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--cream); }
.brand svg { height: 40px; width: auto; }
.brand-name { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .16em; text-transform: uppercase; }
.brand-name small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .34em; color: var(--gold-soft); }

.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a { color: var(--cream); text-decoration: none; font-size: .88rem; letter-spacing: .05em; }
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta { border: 1px solid var(--gold); color: var(--gold-soft) !important; padding: .45rem 1rem; border-radius: var(--radius); }
.nav-cta:hover { background: rgba(201,162,75,.14); }

.nav-toggle { display: none; background: none; border: 1px solid var(--gold); color: var(--gold-soft); padding: .4rem .7rem; border-radius: var(--radius); font-size: 1rem; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-950); flex-direction: column; gap: 0;
    padding: .6rem 0; border-bottom: 1px solid var(--paper-line);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: .8rem; }
  .nav-cta { border: none; }
}

/* --- Hero --- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(201,162,75,.10), transparent 60%),
    linear-gradient(180deg, var(--green-900), var(--green-950));
  color: var(--cream);
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before { /* dezente Papier-/Lederstruktur */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image: radial-gradient(rgba(244,239,227,.5) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center;
  position: relative;
}
.hero h1 { color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lead { color: rgba(244,239,227,.82); margin-top: 1.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-note { margin-top: 2.4rem; font-size: .82rem; color: rgba(244,239,227,.55); max-width: 40rem; }

.hero-portrait { position: relative; justify-self: center; }
.hero-portrait img {
  width: min(360px, 80vw);
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.hero-portrait::after { /* Gold-Rahmenversatz */
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--paper-line); border-radius: var(--radius); z-index: -1;
}
.portrait-caption {
  margin-top: 1rem; text-align: center; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; }
}

/* --- Sektionen --- */
section { padding: 5rem 0; }
.section-dark { background: linear-gradient(180deg, var(--green-950), var(--green-900)); color: var(--cream); }
.section-dark h2 { color: var(--cream); }
.section-dark .lead { color: rgba(244,239,227,.8); }
.section-cream2 { background: var(--cream-2); }
.section-head { max-width: 46rem; margin-bottom: 3rem; }

/* --- Über mich --- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.5rem; align-items: start; }
.about-figure img { border-radius: var(--radius); border: 1px solid var(--paper-line); }
.about-quote {
  font-family: var(--serif); font-size: 1.35rem; line-height: 1.4;
  color: var(--green-900); border-left: 2px solid var(--gold);
  padding-left: 1.2rem; margin: 1.8rem 0;
}
.about-facts { list-style: none; margin-top: 1.6rem; }
.about-facts li { padding: .55rem 0; border-bottom: 1px solid rgba(29,43,38,.12); font-size: .95rem; color: var(--ink-soft); }
.about-facts li strong { color: var(--ink); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* --- Leistungen --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.4rem; }
.service-card {
  background: var(--green-800);
  border: 1px solid rgba(201,162,75,.22);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: border-color .2s ease, transform .2s ease;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-card h3 { color: var(--gold-soft); margin-bottom: .5rem; }
.service-problem { font-size: .86rem; color: rgba(244,239,227,.6); font-style: italic; margin-bottom: .8rem; }
.service-card ul { list-style: none; }
.service-card li { font-size: .9rem; color: rgba(244,239,227,.85); padding: .28rem 0 .28rem 1.1rem; position: relative; }
.service-card li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* --- Für wen --- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.audience-tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.audience-tags span {
  border: 1px solid var(--green-900); color: var(--green-900);
  padding: .4rem .95rem; border-radius: 999px; font-size: .88rem;
}
.audience-questions { list-style: none; }
.audience-questions li {
  font-family: var(--serif); font-size: 1.15rem; color: var(--green-900);
  padding: .7rem 0; border-bottom: 1px solid rgba(29,43,38,.14);
}
.audience-close { margin-top: 1.4rem; font-weight: 600; color: var(--green-900); }
@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }

/* --- Praxis / Projekte --- */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.4rem; }
.case-card {
  background: var(--cream); border: 1px solid rgba(29,43,38,.14);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
}
.case-tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.case-card h3 { color: var(--green-900); margin-bottom: .7rem; }
.case-card p { font-size: .94rem; color: var(--ink-soft); }
.case-learning {
  margin-top: auto; padding-top: 1.1rem; font-size: .9rem;
  font-family: var(--serif); font-style: italic; color: var(--green-900);
  border-top: 1px solid var(--paper-line);
}

/* --- Vorgehensweise --- */
.steps { list-style: none; counter-reset: step; max-width: 46rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 64px 1fr; gap: 1.4rem; padding: 1.6rem 0; border-bottom: 1px solid var(--paper-line); }
.steps li::before {
  content: "0" counter(step);
  font-family: var(--serif); font-size: 1.9rem; color: var(--gold);
  line-height: 1;
}
.steps h3 { color: var(--gold-soft); margin-bottom: .3rem; }
.steps p { color: rgba(244,239,227,.8); font-size: .96rem; }

/* --- Pakete --- */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.package-card {
  background: #fff; border: 1px solid rgba(29,43,38,.12); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column;
}
.package-card.featured { border: 1px solid var(--gold); box-shadow: 0 14px 34px rgba(14,43,34,.10); }
.package-for { font-size: .85rem; color: var(--ink-soft); font-style: italic; margin: .4rem 0 1rem; }
.package-card ul { list-style: none; margin-bottom: 1.4rem; }
.package-card li { font-size: .92rem; padding: .3rem 0 .3rem 1.2rem; position: relative; color: var(--ink-soft); }
.package-card li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.package-price { font-size: .82rem; color: var(--ink-soft); margin-bottom: 1rem; }
.package-card .btn { margin-top: auto; text-align: center; }

/* --- Kontakt --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-list { list-style: none; margin-top: 1.6rem; }
.contact-list li { padding: .7rem 0; border-bottom: 1px solid var(--paper-line); font-size: .96rem; }
.contact-list a { color: var(--gold-soft); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-label { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,239,227,.55); }

.contact-form { display: grid; gap: 1rem; }
.contact-form label { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .8rem .9rem; border-radius: var(--radius);
  border: 1px solid rgba(201,162,75,.35); background: rgba(244,239,227,.05);
  color: var(--cream); font-family: var(--sans); font-size: .95rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-note { font-size: .78rem; color: rgba(244,239,227,.55); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* --- Footer --- */
.site-footer { background: var(--green-950); color: rgba(244,239,227,.75); padding: 3.5rem 0 2rem; border-top: 1px solid var(--paper-line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-grid h4 { font-family: var(--sans); font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: .25rem 0; font-size: .9rem; }
.footer-grid a { color: rgba(244,239,227,.75); text-decoration: none; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-disclaimer { font-size: .78rem; color: rgba(244,239,227,.5); border-top: 1px solid rgba(201,162,75,.18); padding-top: 1.5rem; max-width: 60rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem; font-size: .8rem; color: rgba(244,239,227,.5); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Rechtsseiten --- */
.legal-page { padding: 4rem 0 5rem; max-width: 46rem; margin: 0 auto; }
.legal-page h1 { color: var(--green-900); margin-bottom: 2rem; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-page h2 { font-size: 1.3rem; color: var(--green-900); margin: 2.2rem 0 .7rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: .96rem; }
.legal-page ul { padding-left: 1.3rem; margin: .6rem 0; }
.legal-page address { font-style: normal; }
.back-link { display: inline-block; margin-bottom: 2rem; color: var(--gold); text-decoration: none; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.back-link:hover { text-decoration: underline; }

/* WhatsApp Floating Button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: var(--green-950);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.3); text-decoration: none;
}
.wa-float:hover { background: var(--gold-soft); }
.wa-float svg { width: 26px; height: 26px; }

/* Scroll-Reveal (dezent) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
