/* ═══════════════════════════════════════════════════════════════
   Naturheilpraxis Design System
   praxis.life-change-management.de
   Version 1.0.0
═══════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
    --primary:          #15779b;
    --primary-dark:     #11607d;
    --primary-light:    #ddeef5;
    --primary-ultra:    #f0f7fa;
    --warm-white:       #faf7f2;
    --white:            #ffffff;
    --text:             #2b2b2b;
    --text-muted:       #6b6b6b;
    --border:           rgba(21,119,155,.13);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', system-ui, sans-serif;

    --radius:    4px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 16px rgba(21,119,155,.08);
    --shadow-md: 0 8px 36px rgba(21,119,155,.13);
    --shadow-lg: 0 20px 64px rgba(21,119,155,.16);

    --max-width:  1160px;
    --section-py: 96px;
}

/* ── Base ───────────────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; }
h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; }
h4 { font-family: var(--font-body); font-weight: 500; font-size: 1.1rem; }
p  { font-size: 1.05rem; line-height: 1.85; }
strong { font-weight: 500; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}
.section       { padding: var(--section-py) 0; }
.section-white { background: var(--white); }
.section-warm  { background: var(--warm-white); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,119,155,.28); color: #fff; }
.btn-outline  { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-ultra); transform: translateY(-2px); }
.btn-white    { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-ultra); transform: translateY(-2px); }
.btn-ghost-white { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-white:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

/* ── Section Helpers ────────────────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}
.section-eyebrow::before,
.section-eyebrow::after { content: ''; display: block; width: 22px; height: 1px; background: var(--primary); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; }

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
nav#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 0 40px;
    background: rgba(250,247,242,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
nav#nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 24px;
}

.nav-brand { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; text-decoration: none; }
.nav-brand-main { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--primary); white-space: nowrap; }
.nav-brand-sub  { font-size: .62rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }

/* WordPress nav_menu output */
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links li a {
    font-size: .82rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
    color: var(--text); text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li.current-menu-item > a { color: var(--primary); }

/* Dropdown sub-menu */
.nav-links li { position: relative; }
.nav-links li .sub-menu {
    display: none;
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: #fff; border-radius: 12px; padding: 12px 0 8px;
    min-width: 240px; list-style: none; gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,.10); border: 1px solid var(--border);
    z-index: 200;
}
.nav-links li:hover > .sub-menu { display: flex; flex-direction: column; }
.nav-links li .sub-menu li a {
    display: block; padding: 10px 20px; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .05em;
    white-space: nowrap; color: var(--text);
}
.nav-links li .sub-menu li a:hover { color: var(--primary); background: var(--warm-white); }
/* Arrow indicator */
.nav-links li:has(.sub-menu) > a::after { content: " ▾"; font-size: .65rem; opacity: .6; }

/* CTA-Link: add class "nav-cta" to menu item via Appearance > Menus > CSS Classes */
.nav-links li.nav-cta > a {
    font-size: .82rem !important; font-weight: 500 !important;
    background: var(--primary); color: #fff !important;
    padding: 10px 24px; border-radius: 100px;
    white-space: nowrap; display: inline-block;
    transition: background .2s, transform .2s !important;
}
.nav-links li.nav-cta > a:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

/* Mobile hamburger */
#nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text);
}
#nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; transition: all .3s; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    background: var(--warm-white);
}
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-1 {
    top: -160px; right: -220px; width: 680px; height: 680px;
    background: radial-gradient(ellipse at 40% 40%, rgba(21,119,155,.13) 0%, rgba(21,119,155,.03) 55%, transparent 70%);
}
.blob-2 {
    bottom: -120px; left: -120px; width: 460px; height: 460px;
    background: radial-gradient(ellipse at 60% 60%, rgba(196,149,106,.07) 0%, transparent 65%);
}
.hero-grid {
    display: grid; grid-template-columns: 1.08fr 1fr; gap: 64px;
    align-items: center; width: 100%;
    max-width: var(--max-width); margin: 0 auto;
    padding: 80px 40px; position: relative; z-index: 1;
}
.hero-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .72rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 24px;
}
.hero-label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--primary); }
.hero-content h1 { color: var(--text); margin-bottom: 22px; }
.hero-content h1 em { color: var(--primary); font-style: italic; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); font-weight: 300; margin-bottom: 24px; line-height: 1.65; }
.hero-body { font-size: .98rem; color: var(--text); margin-bottom: 40px; line-height: 1.9; }
.hero-body strong { color: var(--primary); font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 28px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trust-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 100px; padding: 6px 14px;
    font-size: .75rem; color: var(--text-muted);
}
.trust-pill::before { content: '✓'; color: var(--primary); font-weight: 600; font-size: .8rem; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-wrap { position: relative; width: 380px; height: 480px; }
.hero-shape-bg { position: absolute; inset: 0; background: var(--primary-light); border-radius: 62% 38% 52% 48% / 50% 54% 46% 50%; }
.hero-photo-inner {
    position: absolute; inset: 22px;
    border-radius: 60% 40% 50% 50% / 48% 52% 48% 52%;
    background: linear-gradient(150deg, rgba(21,119,155,.1) 0%, rgba(21,119,155,.03) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    overflow: hidden;
}
.hero-photo-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.photo-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--primary); opacity: .18; }
.photo-hint { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); opacity: .5; font-weight: 500; }

.hero-badge {
    position: absolute; background: var(--white); border-radius: var(--radius-lg);
    padding: 14px 18px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
}
.badge-a { bottom: 48px; left: -28px; }
.badge-b { top: 48px;   right: -28px; }
.badge-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.badge-value { font-size: .92rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.badge-label { font-size: .7rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   KERNAUSSAGE
══════════════════════════════════════════════════════════════ */
.kern-inner { max-width: 780px; margin: 0 auto; padding: 0 40px; text-align: center; }
.kern-inner h2 { margin-bottom: 32px; }
.kern-inner p  { font-size: 1.07rem; color: var(--text-muted); margin-bottom: 22px; }
.kern-inner p strong { color: var(--primary); }
.kern-statement {
    margin-top: 52px; padding: 36px 44px;
    background: var(--primary-ultra); border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0; text-align: left;
}
.kern-statement p { font-family: var(--font-display); font-size: 1.5rem !important; font-style: italic; color: var(--primary-dark); margin-bottom: 0; line-height: 1.45; }

/* ══════════════════════════════════════════════════════════════
   METHODEN
══════════════════════════════════════════════════════════════ */
.methoden-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.methode-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 40px 32px; border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.methode-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.methode-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.methode-card:hover::after { transform: scaleX(1); }
.methode-num { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: var(--primary); opacity: .1; line-height: 1; margin-bottom: 8px; }
.methode-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.methode-card h3 { color: var(--text); margin-bottom: 6px; }
.methode-sub { font-size: .76rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.methode-card p { font-size: .93rem; color: var(--text-muted); }
.methoden-closing { text-align: center; margin-top: 56px; }
.methoden-closing p { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--text-muted); line-height: 1.5; }
.methoden-closing strong { color: var(--primary); font-style: normal; }

/* ══════════════════════════════════════════════════════════════
   SPEZIALISIERUNGEN
══════════════════════════════════════════════════════════════ */
.spez-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.spez-card {
    background: var(--warm-white); border-radius: var(--radius-lg);
    padding: 30px; border: 1px solid transparent;
    transition: all .3s; text-decoration: none; color: inherit; display: block;
}
.spez-card:hover { background: var(--white); border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.spez-card:hover .spez-arrow { color: var(--primary); }
.spez-emoji { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.spez-card h3 { color: var(--text); margin-bottom: 4px; }
.spez-tagline { font-size: .8rem; font-style: italic; color: var(--primary); margin-bottom: 13px; }
.spez-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 18px; }
.spez-arrow { font-size: .8rem; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; transition: all .2s; }

/* ══════════════════════════════════════════════════════════════
   ÜBER MICH
══════════════════════════════════════════════════════════════ */
.ueber-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: center; }
.ueber-frame {
    width: 100%; max-width: 380px; aspect-ratio: 4/5;
    background: var(--primary-light);
    border-radius: 42% 58% 48% 52% / 58% 44% 56% 42%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px; overflow: hidden;
}
.ueber-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.ueber-photo-circle { width: 68px; height: 68px; border-radius: 50%; background: var(--primary); opacity: .22; }
.ueber-photo-hint { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); opacity: .45; font-weight: 500; }
.ueber-cert {
    position: absolute; bottom: -20px; right: -10px;
    background: var(--white); border-radius: var(--radius-lg);
    padding: 14px 18px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
}
.cert-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.cert-label { font-size: .72rem; font-weight: 500; color: var(--text); line-height: 1.3; }
.cert-sub { font-size: .65rem; color: var(--text-muted); }
.ueber-content h2 { margin-bottom: 6px; }
.ueber-role { font-size: .76rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 32px; }
.ueber-content p { color: var(--text-muted); margin-bottom: 20px; }
.ueber-content p strong { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   ABLAUF
══════════════════════════════════════════════════════════════ */
.ablauf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.ablauf-grid::before {
    content: ''; position: absolute; top: 52px;
    left: calc(100%/6); right: calc(100%/6);
    height: 1px; background: var(--border);
}
.ablauf-step { text-align: center; padding: 0 36px; position: relative; }
.ablauf-circle {
    width: 104px; height: 104px; border-radius: 50%;
    border: 1.5px solid var(--primary); background: var(--primary-ultra);
    margin: 0 auto 28px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--primary);
    position: relative; z-index: 1;
}
.ablauf-step h3 { margin-bottom: 12px; color: var(--text); }
.ablauf-step p  { font-size: .9rem; color: var(--text-muted); }
.ablauf-quote { max-width: 700px; margin: 64px auto 0; padding: 0 40px; text-align: center; }
.ablauf-quote blockquote { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--text); line-height: 1.6; margin-bottom: 16px; }
.ablauf-quote blockquote strong { color: var(--primary); font-style: normal; }
.ablauf-quote cite { font-size: .8rem; color: var(--text-muted); font-style: normal; letter-spacing: .05em; }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    width: 100%; background: none; border: none; padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    cursor: pointer; text-align: left;
    font-family: var(--font-body); font-size: .98rem; font-weight: 500;
    color: var(--text); transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-toggle {
    width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: 1.1rem; color: var(--primary); transition: all .3s;
}
.faq-item.open .faq-toggle { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding-bottom: 24px; font-size: .93rem; color: var(--text-muted); line-height: 1.82; }
.faq-a-inner strong { color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════ */
#cta {
    background: var(--primary); padding: 104px 40px;
    text-align: center; position: relative; overflow: hidden;
}
.cta-blob-a { position: absolute; top: -120px; right: -120px; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-blob-b { position: absolute; bottom: -90px; left: -90px; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.04); }
#cta .container { position: relative; z-index: 1; }
#cta h2 { color: #fff; max-width: 680px; margin: 0 auto 24px; }
.cta-text { color: rgba(255,255,255,.78); max-width: 540px; margin: 0 auto 28px; font-size: 1.04rem; }
.cta-quote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: rgba(255,255,255,.88); max-width: 500px; margin: 0 auto 48px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-meta { margin-top: 32px; font-size: .78rem; color: rgba(255,255,255,.45); letter-spacing: .04em; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--primary-dark); padding: 44px 40px; }
.footer-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.05rem; color: rgba(255,255,255,.85); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: .77rem; color: rgba(255,255,255,.45); text-decoration: none; letter-spacing: .04em; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: .74rem; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (Unterseiten)
══════════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--warm-white); padding: 120px 40px 72px;
    border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(21,119,155,.1) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .section-eyebrow { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 640px; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   PAGE CONTENT (Unterseiten)
══════════════════════════════════════════════════════════════ */
.main-content { background: var(--white); }

.entry-content {
    max-width: 780px; margin: 0 auto;
    padding: 64px 40px;
    font-size: 1.05rem; line-height: 1.92; color: var(--text);
}
.entry-content h2 { color: var(--text); margin: 56px 0 20px; font-size: clamp(1.5rem, 2.5vw, 2.1rem); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.entry-content h3 { color: var(--text); margin: 40px 0 14px; font-size: 1.35rem; }
.entry-content p  { margin-bottom: 24px; }
.entry-content ul, .entry-content ol { margin: 0 0 24px 0; padding: 0; list-style: none; }
.entry-content ul li, .entry-content ol li { margin-bottom: 10px; line-height: 1.75; padding-left: 24px; position: relative; }
.entry-content ul li::before { content: "→"; position: absolute; left: 0; color: var(--primary); font-size: .85rem; top: 2px; }
.entry-content ol { counter-reset: ol-counter; }
.entry-content ol li::before { content: counter(ol-counter); counter-increment: ol-counter; position: absolute; left: 0; color: var(--primary); font-weight: 600; font-size: .85rem; }
.entry-content strong { color: var(--text); font-weight: 600; }
.entry-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
    border-left: 4px solid var(--primary); padding: 24px 32px;
    background: var(--primary-ultra); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 40px 0; color: var(--primary-dark); font-family: var(--font-display);
    font-size: 1.25rem; font-style: italic; line-height: 1.6;
}
.entry-content blockquote p { margin: 0; }
.entry-content img { border-radius: var(--radius-lg); margin: 32px 0; width: 100%; }

/* First paragraph lead text */
.single-content > p:first-of-type {
    font-size: 1.15rem; color: var(--text); font-weight: 400; line-height: 1.8;
}

/* Single post hero */
.single-hero .page-hero-inner { max-width: 820px; }
.single-hero-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.single-cat-badge { background: var(--primary); color: #fff; padding: 5px 14px; border-radius: 100px; font-size: .72rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; }
.single-meta-sep { color: var(--text-muted); opacity: .4; }
.single-hero-meta span { font-size: .8rem; color: var(--text-muted); }
.single-intro { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-top: 16px; line-height: 1.7; max-width: 680px; }

/* Featured image */
.single-feat-wrap { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.single-feat-img { aspect-ratio: 16/7; overflow: hidden; border-radius: var(--radius-lg); margin: -40px 0 0; box-shadow: var(--shadow-md); }
.single-feat-img img { width: 100%; height: 100%; object-fit: cover; }

/* Author box */
.author-box-wrap { max-width: 780px; margin: 0 auto; padding: 0 40px 64px; }
.author-box { display: flex; gap: 24px; align-items: flex-start; background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text); }
.author-role { font-size: .75rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--primary); margin: 4px 0 12px; }
.author-info p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Back to blog */
.back-to-blog { text-align: center; padding: 32px 0 48px; background: var(--warm-white); }

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGE (page-leistung.php)
══════════════════════════════════════════════════════════════ */
.service-cta-strip {
    background: var(--primary-ultra); border-top: 1px solid var(--border);
    padding: 56px 40px; text-align: center;
}
.service-cta-strip h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text); margin-bottom: 12px; }
.service-cta-strip p { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; }

/* ══════════════════════════════════════════════════════════════
   ÜBER MICH PAGE
══════════════════════════════════════════════════════════════ */
.ueber-visual { position: relative; }

/* ══════════════════════════════════════════════════════════════
   KONTAKT / TERMIN PAGE
══════════════════════════════════════════════════════════════ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.kontakt-info h3 { margin-bottom: 20px; }
.kontakt-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.kontakt-info-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.kontakt-info-text { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.kontakt-info-text strong { color: var(--text); display: block; margin-bottom: 2px; }
.etermin-wrap { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.etermin-wrap iframe { display: block; }

/* ══════════════════════════════════════════════════════════════
   BLOG / ARCHIVE
══════════════════════════════════════════════════════════════ */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    text-decoration: none; color: inherit; display: block;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card-thumb { aspect-ratio: 16/9; background: var(--primary-light); overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-card-meta { font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.post-card-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.post-card-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.post-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 500; color: var(--primary); margin-top: 16px; text-decoration: none; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination a, .pagination span {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 500; text-decoration: none;
    border: 1px solid var(--border); color: var(--text); transition: all .2s;
}
.pagination a:hover, .pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   SINGLE POST
══════════════════════════════════════════════════════════════ */
.single-meta { display: flex; align-items: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.single-meta span { font-size: .8rem; color: var(--text-muted); }
.single-meta .category-link { background: var(--primary-light); color: var(--primary); padding: 4px 12px; border-radius: 100px; font-size: .75rem; font-weight: 500; text-decoration: none; }
.single-feat-img { aspect-ratio: 16/7; background: var(--primary-light); overflow: hidden; border-radius: var(--radius-lg); margin: 40px 0; }
.single-feat-img img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════════
   404
══════════════════════════════════════════════════════════════ */
.error-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 40px; }
.error-404 .error-num { font-family: var(--font-display); font-size: 8rem; font-weight: 700; color: var(--primary); opacity: .12; line-height: 1; }
.error-404 h1 { font-size: 2rem; margin-bottom: 16px; }
.error-404 p { color: var(--text-muted); max-width: 440px; margin: 0 auto 32px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    :root { --section-py: 64px; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 60px 24px; gap: 48px; }
    .hero-label  { justify-content: center; }
    .hero-ctas   { justify-content: center; }
    .hero-trust  { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-photo-wrap { width: 260px; height: 330px; }
    .badge-a, .badge-b { display: none; }

    .methoden-grid, .spez-grid, .ablauf-grid { grid-template-columns: 1fr; }
    .ablauf-grid::before { display: none; }
    .ablauf-step { padding: 0 16px; }

    .ueber-grid { grid-template-columns: 1fr; }
    .ueber-frame { max-width: 260px; margin: 0 auto; }
    .ueber-cert  { display: none; }

    .kontakt-grid { grid-template-columns: 1fr; }

    .posts-grid { grid-template-columns: repeat(2,1fr); }

    nav#nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(250,247,242,.97); padding: 24px 32px; gap: 16px; border-bottom: 1px solid var(--border); backdrop-filter: blur(14px); }
    .nav-links.open li .sub-menu { display: flex; flex-direction: column; position: static; transform: none; box-shadow: none; border: none; background: transparent; padding: 4px 0 4px 16px; border-left: 2px solid var(--border); }
    .nav-links li:has(.sub-menu) > a::after { content: " ▾"; }
    #nav-toggle { display: block; }
    .container { padding: 0 24px; }
    .page-hero { padding: 100px 24px 56px; }
    .entry-content { padding: 48px 24px; }
}

@media (max-width: 600px) {
    .spez-grid, .posts-grid { grid-template-columns: 1fr; }
    .kern-statement { padding: 28px 24px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
