/* ============================================================
   Coachdrei – Roland Schäfer
   Gemeinsames Stylesheet (stil.css)
   Farbwelt: ruhiges Blau + warmes Papier + zurückhaltendes Gold
   ============================================================ */

/* --- Lokale Schriften (kein Google-CDN, DSGVO-freundlich) --- */
@font-face{ font-family:"Mulish"; font-style:normal; font-weight:400; font-display:swap; src:url("schriften/mulish-400.woff2") format("woff2"); }
@font-face{ font-family:"Mulish"; font-style:normal; font-weight:600; font-display:swap; src:url("schriften/mulish-600.woff2") format("woff2"); }
@font-face{ font-family:"Mulish"; font-style:normal; font-weight:700; font-display:swap; src:url("schriften/mulish-700.woff2") format("woff2"); }
@font-face{ font-family:"Mulish"; font-style:normal; font-weight:800; font-display:swap; src:url("schriften/mulish-800.woff2") format("woff2"); }
@font-face{ font-family:"Spectral"; font-style:normal; font-weight:500; font-display:swap; src:url("schriften/spectral-500.woff2") format("woff2"); }
@font-face{ font-family:"Spectral"; font-style:normal; font-weight:600; font-display:swap; src:url("schriften/spectral-600.woff2") format("woff2"); }

:root{
  /* Farben */
  --paper:      #FAF8F4;   /* warmer, heller Hintergrund */
  --paper-tint: #EEF3F8;   /* zarter Blauton für Abschnitte */
  --card:       #FFFFFF;

  --ink:        #1E2530;   /* Haupttext, warmes Fast-Schwarz */
  --ink-soft:   #57616F;   /* gedämpfter Text */

  --blue-900:   #16344C;   /* tiefes, ruhiges Blau */
  --blue-700:   #24567D;   /* interaktives Blau */
  --blue-500:   #3E7CB1;   /* helleres Blau */
  --blue-050:   #E7F0F7;   /* Blau-Tint für Flächen */

  --gold:       #B4893C;   /* warmer Akzent, sehr sparsam */
  --gold-soft:  #E6D6B8;

  --line:       #E6DFD3;   /* warme Haarlinie */
  --line-blue:  #D5E1EC;

  /* Typo */
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --radius: 14px;
  --shadow: 0 18px 40px -24px rgba(22,52,76,.35);
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:18px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

a{ color:var(--blue-700); text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{ width:100%; 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; color:var(--blue-900); margin:0 0 .4em; }
h1{ font-size:clamp(2.1rem, 5vw, 3.4rem); letter-spacing:-.01em; }
h2{ font-size:clamp(1.6rem, 3.5vw, 2.3rem); }
h3{ font-size:1.25rem; }
p{ margin:0 0 1.1em; }

.eyebrow{
  font-family:var(--sans);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  margin:0 0 1rem;
  display:flex; align-items:center; gap:.7rem;
}
.eyebrow::before{
  content:""; width:26px; height:2px; background:var(--gold); display:inline-block;
}

.lead{ font-size:1.18rem; color:var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--sans); font-weight:700; font-size:1rem;
  padding:.85rem 1.6rem; border-radius:999px;
  border:1.5px solid transparent; cursor:pointer;
  transition:transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-decoration:none;
}
.btn:hover{ text-decoration:none; transform:translateY(-2px); }
.btn-primary{ background:var(--blue-700); color:#fff; box-shadow:0 12px 24px -12px rgba(36,86,125,.7); }
.btn-primary:hover{ background:var(--blue-900); }
.btn-ghost{ background:transparent; color:var(--blue-900); border-color:var(--line-blue); }
.btn-ghost:hover{ border-color:var(--blue-700); background:#fff; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:var(--paper);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; height:72px; }
.brand{ display:flex; align-items:center; gap:.7rem; }
.brand img{ height:44px; width:auto; }
.brand-name{ font-family:var(--serif); font-weight:600; color:var(--blue-900); font-size:1.15rem; line-height:1; }
.brand-name small{ display:block; font-family:var(--sans); font-weight:600; font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); margin-top:3px; }

.nav{ display:flex; align-items:center; gap:1.6rem; }
.nav a{
  font-family:var(--sans); font-weight:600; font-size:.98rem; color:var(--ink);
  padding:.3rem 0; position:relative;
}
.nav a:hover{ text-decoration:none; color:var(--blue-700); }
.nav a.active{ color:var(--blue-700); }
.nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--gold);
}
.nav .btn{ padding:.55rem 1.15rem; font-size:.95rem; }

/* Mobile Menü */
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span{ display:block; width:26px; height:2px; background:var(--blue-900); margin:5px 0; transition:.25s; }

@media (max-width:980px){
  .nav-toggle{ display:block; }
  .nav{
    position:absolute; top:72px; left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:var(--paper); border-bottom:1px solid var(--line);
    padding:12px 24px 20px; max-height:0; overflow:hidden; visibility:hidden;
    transition:max-height .3s ease, visibility .3s ease; }
  .nav.open{ max-height:440px; visibility:visible; }
  .nav a{ width:100%; padding:.8rem 0; border-bottom:1px solid var(--line); }
  .nav a.active::after{ display:none; }
  .nav .btn{ margin-top:12px; width:100%; justify-content:center; }
}

/* ---------- Hero ---------- */
.hero{ padding:72px 0 40px; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.hero h1{ margin-bottom:.5rem; }
.hero .quote-mark{ color:var(--gold); font-family:var(--serif); font-size:1.2em; }
.hero-sub{ font-size:1.15rem; color:var(--ink-soft); max-width:34ch; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }

.portrait{ position:relative; }
.portrait::before{
  content:""; position:absolute; inset:-18px -18px 22px 22px;
  background:var(--blue-050); border-radius:var(--radius);
}
.portrait::after{
  content:""; position:absolute; right:-10px; bottom:8px; width:70px; height:70px;
  border:2px solid var(--gold-soft); border-radius:50%;
}
.portrait img{
  position:relative; border-radius:var(--radius); box-shadow:var(--shadow);
  width:100%; object-fit:cover;
}

@media (max-width:860px){
  .hero{ padding:44px 0 24px; }
  .hero-grid{ grid-template-columns:1fr; gap:36px; }
  .portrait{ max-width:420px; margin:0 auto; }
}

/* ---------- Sektionen ---------- */
section{ padding:64px 0; }
.section-tint{ background:var(--paper-tint); border-top:1px solid var(--line-blue); border-bottom:1px solid var(--line-blue); }
.section-blue{ background:var(--blue-900); color:#dfe9f1; }
.section-blue h2, .section-blue h3{ color:#fff; }
.section-narrow{ max-width:760px; margin:0 auto; }

.divider{ display:flex; align-items:center; gap:16px; margin:0 0 40px; }
.divider .dot{ width:9px; height:9px; border-radius:50%; background:var(--gold); flex:0 0 auto; }
.divider .rule{ height:1px; background:var(--line); flex:1; }

/* ---------- Karten ---------- */
.cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; }
.card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px 26px; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--line-blue); }
.card h3{ color:var(--blue-900); margin-bottom:.4rem; }
.card p{ color:var(--ink-soft); font-size:1rem; margin-bottom:0; }
.card .tag{ font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:.6rem; }

/* Liste mit Häkchen */
.check-list{ list-style:none; padding:0; margin:0; }
.check-list li{ position:relative; padding:.5rem 0 .5rem 34px; border-bottom:1px solid var(--line); }
.check-list li:last-child{ border-bottom:0; }
.check-list li::before{
  content:""; position:absolute; left:0; top:.9rem;
  width:16px; height:9px; border-left:2.5px solid var(--gold); border-bottom:2.5px solid var(--gold);
  transform:rotate(-45deg);
}

/* Angebots-Blöcke (Dienstleistungen) */
.offer{ border-left:3px solid var(--line-blue); padding:6px 0 6px 24px; margin-bottom:30px; }
.offer:hover{ border-left-color:var(--gold); }
.offer h3{ margin-bottom:.35rem; }
.offer p{ color:var(--ink-soft); margin-bottom:0; }
.offer .new{ display:inline-block; font-size:.68rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#fff; background:var(--gold); padding:2px 9px; border-radius:999px; margin-left:8px; vertical-align:middle; }

/* Honorar-Tabelle */
.price-list{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.price-row{ display:flex; justify-content:space-between; align-items:baseline; gap:16px; padding:18px 26px; border-bottom:1px solid var(--line); }
.price-row:last-child{ border-bottom:0; }
.price-row .label{ font-weight:600; color:var(--blue-900); }
.price-row .sub{ display:block; font-size:.85rem; color:var(--ink-soft); font-weight:400; }
.price-row .val{ font-family:var(--serif); font-size:1.35rem; color:var(--blue-700); white-space:nowrap; }

.callout{ background:var(--blue-050); border:1px solid var(--line-blue); border-radius:var(--radius); padding:22px 26px; color:var(--blue-900); }
.callout strong{ color:var(--blue-900); }

/* ---------- Kontakt / Formular ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; gap:36px; } }

.info-line{ display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-bottom:1px solid var(--line); }
.info-line:last-child{ border-bottom:0; }
.info-line .ic{ width:38px; height:38px; flex:0 0 auto; border-radius:50%; background:var(--blue-050); display:flex; align-items:center; justify-content:center; color:var(--blue-700); }
.info-line .ic svg{ width:19px; height:19px; }
.info-line b{ display:block; color:var(--blue-900); font-family:var(--sans); }
.info-line span{ color:var(--ink-soft); }

form.contact{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:30px 28px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-weight:600; font-size:.95rem; margin-bottom:6px; color:var(--blue-900); }
.field input, .field select, .field textarea{
  width:100%; font-family:var(--sans); font-size:1rem; color:var(--ink);
  padding:12px 14px; border:1.5px solid var(--line-blue); border-radius:10px; background:#fff;
}
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--blue-500); box-shadow:0 0 0 3px var(--blue-050); }
.consent{ display:flex; gap:10px; align-items:flex-start; font-size:.9rem; color:var(--ink-soft); }
.consent input{ width:auto; margin-top:4px; }
.hp{ position:absolute; left:-9999px; }  /* Honeypot */

.form-msg{ padding:16px 18px; border-radius:10px; margin-bottom:22px; font-size:.98rem; }
.form-msg.ok{ background:#E7F3EA; border:1px solid #BEDDC6; color:#1F5130; }
.form-msg.err{ background:#FBEBE7; border:1px solid #F0C9BF; color:#8A3320; }

/* ---------- CTA-Band ---------- */
.cta-band{ text-align:center; }
.cta-band h2{ color:#fff; }
.cta-band p{ color:#cdddea; max-width:52ch; margin:0 auto 26px; }
.cta-band .btn-primary{ background:var(--gold); box-shadow:none; }
.cta-band .btn-primary:hover{ background:#a07731; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--blue-900); color:#b9c9d6; padding:52px 0 30px; }
.site-footer a{ color:#dbe6ef; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:36px; }
.site-footer h4{ font-family:var(--sans); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-soft); margin:0 0 14px; }
.site-footer ul{ list-style:none; padding:0; margin:0; }
.site-footer li{ padding:5px 0; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:34px; padding-top:20px; font-size:.85rem; color:#8fa6b6; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
@media (max-width:720px){ .footer-grid{ grid-template-columns:1fr; gap:26px; } }

/* Zertifikat-Logos */
.certs{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; margin-top:16px; }
.certs img{ height:96px; width:auto; opacity:.95; }

/* Reveal-Animation */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* Content-Fließtext */
.prose h2{ margin-top:1.4em; }
.prose h3{ color:var(--blue-700); margin-top:1.4em; }

/* ============================================================
   Handy-Feinschliff (kleine Displays)
   ============================================================ */
html, body{ overflow-x:hidden; max-width:100%; }

@media (max-width:560px){
  body{ font-size:16.5px; line-height:1.6; }
  .wrap{ padding:0 18px; }
  section{ padding:44px 0; }

  /* Header etwas kompakter */
  .site-header .wrap{ height:64px; }
  .brand img{ height:38px; }
  .brand-name{ font-size:1.02rem; }
  .nav{ top:64px; }

  /* Hero */
  .hero{ padding:30px 0 12px; }
  .hero-sub, .lead{ font-size:1.05rem; }
  .hero-cta .btn{ width:100%; justify-content:center; }
  .portrait::after{ display:none; }

  /* Abschnitte / Karten */
  .divider{ margin-bottom:28px; }
  .card{ padding:24px 22px; }
  .offer{ padding-left:18px; margin-bottom:24px; }

  /* Honorar-Zeilen sauber umbrechen */
  .price-row{ flex-wrap:wrap; gap:4px; padding:16px 20px; }
  .price-row .val{ font-size:1.2rem; }

  /* Kontakt / Formular */
  form.contact{ padding:24px 20px; }
  .callout{ padding:18px 20px; }

  /* CTA / Footer */
  .cta-band p{ font-size:1rem; }
  .certs img{ height:80px; }
}

/* ============================================================
   Korrekturen & Ergänzungen
   ============================================================ */
/* Kontakt-Button in der Navigation: Text immer weiß (bessere Lesbarkeit) */
.nav a.btn-primary,
.nav a.btn-primary:hover{ color:#fff !important; }
.nav a.btn-ghost,
.nav a.btn-ghost:hover{ color:var(--blue-900) !important; }

/* "weiterlesen"-Link mit den drei Punkten */
.more-link{ font-weight:700; color:var(--blue-700); white-space:nowrap; }
.more-link:hover{ text-decoration:underline; color:var(--blue-900); }

/* "Zurück zur Startseite"-Link */
.back-link{ display:inline-flex; align-items:center; gap:.5rem; font-weight:700;
  color:var(--blue-700); margin-bottom:22px; }
.back-link:hover{ text-decoration:none; color:var(--blue-900); }
.back-link .arrow{ font-size:1.15em; line-height:1; }

/* ============================================================
   Publikationen / Presse
   ============================================================ */
.pub{ display:grid; grid-template-columns:180px 1fr; gap:28px;
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px 30px; margin-bottom:22px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.pub:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--line-blue); }
.pub-meta{ border-right:1px solid var(--line); padding-right:20px; }
.pub-source{ display:block; font-family:var(--serif); font-size:1.3rem; color:var(--blue-900); line-height:1.1; }
.pub-date{ display:block; color:var(--gold); font-weight:700; font-size:.8rem; letter-spacing:.06em; text-transform:uppercase; margin-top:8px; }
.pub-body h3{ margin-top:0; margin-bottom:.5rem; }
.pub-body p{ color:var(--ink-soft); font-size:1rem; margin-bottom:1.1rem; }
.pub-body .btn{ font-size:.95rem; padding:.6rem 1.2rem; }
@media (max-width:640px){
  .pub{ grid-template-columns:1fr; gap:14px; padding:24px 22px; }
  .pub-meta{ border-right:0; border-bottom:1px solid var(--line); padding-right:0; padding-bottom:12px;
    display:flex; align-items:baseline; gap:12px; }
  .pub-source{ font-size:1.15rem; }
  .pub-date{ margin-top:0; }
}
