/* =========================================================
   Scriptum Antiquum  -  zentrales Stylesheet
   ========================================================= */

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

:root {
    --bg-main: #faf8f4;
    --bg-light: #ffffff;
    --bg-warm: #f5f2eb;
    --bg-accent: #1a1a1f;
    --text-primary: #2a2a2f;
    --text-secondary: #4a4a52;
    --text-muted: #6a6a72;
    --gold-primary: #b8943f;
    --gold-dark: #96782f;
    --gold-light: #d4b460;
    --border-light: #e5e0d5;
    --border-gold: rgba(184, 148, 63, 0.3);
}

::selection { background: var(--gold-primary); color: white; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.texture-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015; pointer-events: none; z-index: 1000;
}

.gold-text { color: var(--gold-dark); }

/* ===================== Navigation ===================== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 60px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}
nav.scrolled { padding: 16px 60px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); }

.logo { display: flex; align-items: center; gap: 18px; text-decoration: none; }
.logo-icon {
    width: 52px; height: 52px;
    border: 2px solid var(--gold-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-family: 'Cinzel', serif;
    color: var(--gold-dark); font-weight: 600;
}
.logo-text {
    font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 2px;
    font-weight: 600; color: var(--text-primary);
}
.logo-subtitle {
    font-family: 'Source Sans 3', sans-serif; font-size: 11px;
    letter-spacing: 1px; color: var(--text-muted);
    margin-top: 3px; text-transform: uppercase;
}

.nav-links {
    display: flex; gap: 22px; align-items: center;
    list-style: none; margin: 0; padding: 0;
}
.nav-links > li { position: relative; }

.nav-link {
    color: var(--text-secondary); text-decoration: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 4px;
    background: none; border: none; cursor: pointer;
}
.nav-link:hover, .nav-link.active, .nav-link[aria-expanded="true"] {
    color: var(--gold-dark);
}

/* Dropdown */
.has-dropdown > .nav-link::after {
    content: ' \25BE';
    font-size: 10px;
    margin-left: 4px;
}
.dropdown {
    position: absolute; top: 100%; left: -16px;
    min-width: 290px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold-primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    list-style: none; margin: 0; padding: 8px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    z-index: 110;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.dropdown.open {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}
.dropdown li { list-style: none; }
.dropdown a {
    display: block;
    padding: 10px 22px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; letter-spacing: 0.5px;
    color: var(--text-secondary); text-decoration: none;
    text-transform: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.dropdown a:hover, .dropdown a.active {
    background: var(--bg-warm); color: var(--gold-dark);
}

/* Hamburger (Mobile) */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; padding: 8px; position: relative;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary); margin: 5px auto;
    transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Buttons ===================== */
.cta-button {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: white; border: none;
    padding: 18px 36px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; display: inline-block;
    border-radius: 2px;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184, 148, 63, 0.35); }
.cta-button.small { padding: 14px 28px; font-size: 13px; }

.secondary-button {
    background: transparent; color: var(--gold-dark);
    border: 2px solid var(--gold-primary);
    padding: 16px 36px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; display: inline-block;
    border-radius: 2px;
}
.secondary-button:hover { background: var(--gold-primary); color: white; }
.secondary-button.spaced { margin-top: 20px; }

/* ===================== Hero / Page header ===================== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative;
    padding: 160px 60px 120px;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-warm) 100%);
}
.hero-decoration {
    position: absolute;
    font-family: 'Cinzel', serif;
    color: rgba(184, 148, 63, 0.06);
    user-select: none;
}
.hero-decoration.alpha { top: 15%; left: 5%; font-size: 180px; }
.hero-decoration.omega { bottom: 10%; right: 6%; font-size: 150px; }
.hero-decoration.left, .hero-decoration.right { font-size: 120px; }
.hero-decoration.left { top: 30%; left: 5%; }
.hero-decoration.right { top: 30%; right: 5%; }

.hero-content { max-width: 900px; text-align: center; position: relative; z-index: 2; }
.hero-tagline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; letter-spacing: 4px;
    color: var(--gold-dark);
    margin-bottom: 28px; text-transform: uppercase; font-weight: 600;
}
.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 500; line-height: 1.25;
    margin-bottom: 32px; color: var(--text-primary);
}
.hero h1 .gold-text { display: block; margin-top: 8px; }
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; line-height: 1.9;
    color: var(--text-secondary);
    max-width: 750px; margin: 0 auto 24px;
}
.hero-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-style: italic;
    color: var(--gold-dark);
    margin-bottom: 44px;
    padding: 20px 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.page-header {
    padding: 160px 60px 80px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-warm) 100%);
    border-bottom: 1px solid var(--border-light);
}
.page-header-content { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500; line-height: 1.25;
    margin-bottom: 24px; color: var(--text-primary);
}

/* ===================== Trust strip ===================== */
.trust-strip { padding: 28px 60px; background: var(--bg-accent); color: white; }
.trust-strip-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: center; align-items: center;
    gap: 50px; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 14px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px; font-weight: 500;
}
.trust-icon { color: var(--gold-light); font-size: 22px; }

/* ===================== Stats ===================== */
.stats { padding: 80px 60px; background: var(--bg-light); border-bottom: 1px solid var(--border-light); }
.stats-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat-item { text-align: center; padding: 24px; }
.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 52px; font-weight: 500;
    color: var(--gold-dark); margin-bottom: 10px;
}
.stat-suffix { font-size: 36px; }
.stat-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; letter-spacing: 2px;
    color: var(--text-muted); text-transform: uppercase; font-weight: 500;
}

/* ===================== Section helpers ===================== */
.section-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; letter-spacing: 4px;
    color: var(--gold-dark);
    margin-bottom: 16px; text-transform: uppercase; font-weight: 600;
}
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 38px; font-weight: 500;
    color: var(--text-primary); margin-bottom: 20px;
}
.section-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--text-secondary);
    max-width: 700px; line-height: 1.9;
}
.center { text-align: center; }
.center-block { margin: 0 auto; }

/* ===================== About ===================== */
.about { padding: 100px 60px; background: var(--bg-light); border-bottom: 1px solid var(--border-light); }
.about-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.about-content h2 {
    font-family: 'Cinzel', serif; font-size: 36px; font-weight: 500;
    color: var(--text-primary); line-height: 1.3; margin-bottom: 24px;
}
.about-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; line-height: 1.9;
    color: var(--text-secondary); margin-bottom: 20px;
}
.about-highlight {
    background: var(--bg-warm);
    border-left: 4px solid var(--gold-primary);
    padding: 24px 28px; margin: 28px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-style: italic;
    color: var(--text-primary); line-height: 1.8;
}
.about-visual { display: flex; flex-direction: column; gap: 24px; }
.about-stat-card {
    background: var(--bg-warm); border: 1px solid var(--border-light);
    padding: 32px; border-radius: 4px; text-align: center;
    transition: all 0.3s ease;
}
.about-stat-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.about-stat-number {
    font-family: 'Cinzel', serif;
    font-size: 56px; font-weight: 500;
    color: var(--gold-dark); margin-bottom: 8px;
}
.about-stat-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; letter-spacing: 2px;
    color: var(--text-muted); text-transform: uppercase;
    font-weight: 500; margin-bottom: 12px;
}
.about-stat-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; color: var(--text-secondary); line-height: 1.7;
}
.about-expertise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.expertise-item {
    background: var(--bg-light); border: 1px solid var(--border-light);
    padding: 20px 16px; border-radius: 4px; text-align: center;
    transition: all 0.3s ease;
}
.expertise-item:hover { border-color: var(--border-gold); }
.expertise-icon { font-size: 28px; margin-bottom: 10px; }
.expertise-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; letter-spacing: 1px;
    color: var(--text-secondary); text-transform: uppercase; font-weight: 600;
}

/* ===================== Audience tiles (Privatpersonen / Institutionen) ===================== */
.audience { padding: 100px 60px; background: var(--bg-warm); }
.audience-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.audience-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold-primary);
    padding: 40px 36px; border-radius: 4px;
    transition: all 0.3s ease;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); }
.audience-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px; font-weight: 500;
    color: var(--text-primary); margin-bottom: 16px;
}
.audience-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; line-height: 1.8;
    color: var(--text-secondary); margin-bottom: 18px;
}
.audience-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.audience-card li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; color: var(--text-secondary);
    padding: 8px 0 8px 24px; position: relative;
}
.audience-card li::before {
    content: '\25C6'; position: absolute; left: 0;
    color: var(--gold-dark); font-size: 12px; top: 12px;
}

/* ===================== Services ===================== */
.services { padding: 100px 60px; background: var(--bg-warm); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-intro { margin: 0 auto; }
.services-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.service-card {
    background: var(--bg-light); border: 1px solid var(--border-light);
    padding: 44px 36px; border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); border-color: var(--border-gold); }
.service-icon { font-size: 40px; margin-bottom: 24px; }
.service-title {
    font-family: 'Cinzel', serif;
    font-size: 22px; font-weight: 500;
    color: var(--text-primary); margin-bottom: 10px;
}
.service-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; letter-spacing: 2px;
    color: var(--gold-dark); margin-bottom: 18px;
    text-transform: uppercase; font-weight: 600;
}
.service-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; line-height: 1.9; color: var(--text-secondary);
}

/* ===================== Spectrum ===================== */
.spectrum { padding: 100px 60px; background: var(--bg-light); }
.spectrum-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center;
}
.spectrum-content h2 {
    font-family: 'Cinzel', serif; font-size: 36px; font-weight: 500;
    color: var(--text-primary); line-height: 1.3; margin-bottom: 24px;
}
.spectrum-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; line-height: 1.9;
    color: var(--text-secondary); margin-bottom: 32px;
}
.spectrum-list { list-style: none; padding: 0; margin: 0; }
.spectrum-list li {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 18px 0; border-bottom: 1px solid var(--border-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; color: var(--text-secondary);
}
.spectrum-list li:last-child { border-bottom: none; }
.spectrum-list .icon { color: var(--gold-dark); font-size: 16px; margin-top: 6px; flex-shrink: 0; }
.spectrum-list a { color: var(--gold-dark); text-decoration: none; }
.spectrum-list a:hover { text-decoration: underline; }
.spectrum-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.spectrum-card {
    background: var(--bg-warm); border: 1px solid var(--border-light);
    padding: 32px 24px; text-align: center;
    transition: all 0.3s ease; border-radius: 4px;
    text-decoration: none; color: inherit; display: block;
}
.spectrum-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.spectrum-card-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.spectrum-card-title {
    font-family: 'Cinzel', serif; font-size: 17px;
    color: var(--text-primary); margin-bottom: 6px; font-weight: 500;
}
.spectrum-card-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; color: var(--text-muted);
    letter-spacing: 1px; font-weight: 500;
}

/* ===================== Pricing ===================== */
.pricing { padding: 100px 60px; background: var(--bg-warm); }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-intro { margin: 0 auto; }
.pricing-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
}
.price-card-main {
    background: var(--bg-light); border: 2px solid var(--gold-primary);
    padding: 48px 44px; border-radius: 4px;
    box-shadow: 0 8px 30px rgba(184, 148, 63, 0.12);
}
.price-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; letter-spacing: 3px;
    color: var(--gold-dark); text-transform: uppercase;
    margin-bottom: 12px; font-weight: 600;
}
.price-title {
    font-family: 'Cinzel', serif;
    font-size: 26px; color: var(--text-primary);
    margin-bottom: 24px; font-weight: 500;
}
.price-value { display: flex; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.price-chip {
    background: var(--bg-warm); border: 1px solid var(--border-light);
    padding: 16px 24px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px; color: var(--text-primary); border-radius: 4px;
}
.price-chip strong { color: var(--gold-dark); font-weight: 700; font-size: 20px; }
.price-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; color: var(--text-secondary); line-height: 1.8;
    padding-top: 24px; border-top: 1px solid var(--border-light);
}
.price-card-secondary {
    background: var(--bg-light); border: 1px solid var(--border-light);
    padding: 40px 36px; border-radius: 4px;
}
.price-card-secondary h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px; color: var(--text-primary);
    margin-bottom: 20px; font-weight: 500;
}
.price-card-secondary ul { list-style: none; padding: 0; margin: 0 0 24px; }
.price-card-secondary li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; color: var(--text-secondary);
    padding: 10px 0 10px 24px; position: relative;
}
.price-card-secondary li::before {
    content: '\2022'; position: absolute; left: 0;
    color: var(--gold-dark); font-size: 20px; font-weight: bold;
}

/* Beispielrechnung */
.calc-example {
    max-width: 800px; margin: 60px auto 0;
    background: var(--bg-light);
    border: 1px solid var(--border-light); border-left: 4px solid var(--gold-primary);
    padding: 36px 40px; border-radius: 4px;
}
.calc-example h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px; color: var(--text-primary);
    margin-bottom: 20px; font-weight: 500;
}
.calc-example dl { display: grid; grid-template-columns: max-content 1fr; gap: 10px 24px; }
.calc-example dt {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; letter-spacing: 1px;
    color: var(--text-muted); text-transform: uppercase; font-weight: 600;
    align-self: center;
}
.calc-example dd {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--text-primary);
}

/* ===================== Process ===================== */
.process { padding: 100px 60px; background: var(--bg-light); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-grid {
    max-width: 950px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
}
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
    content: ''; position: absolute; left: 12px; top: 10px; bottom: 10px;
    width: 2px; background: linear-gradient(180deg, var(--gold-primary), var(--gold-light));
}
.step { position: relative; padding-bottom: 40px; }
.step:last-child { padding-bottom: 0; }
.step-marker {
    position: absolute; left: -36px; top: 4px;
    width: 24px; height: 24px;
    border: 3px solid var(--gold-primary);
    background: var(--bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.step-marker::after {
    content: ''; width: 10px; height: 10px;
    background: var(--gold-primary); border-radius: 50%;
}
.step-title {
    font-family: 'Cinzel', serif;
    font-size: 21px; color: var(--text-primary);
    margin-bottom: 10px; font-weight: 500;
}
.step-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--text-secondary); line-height: 1.8;
}
.process-aside {
    background: var(--bg-warm); border: 1px solid var(--border-light);
    padding: 36px 32px; border-radius: 4px; align-self: start;
}
.process-aside h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px; color: var(--gold-dark);
    margin-bottom: 18px; font-weight: 500;
}
.process-aside p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--text-secondary); line-height: 1.9;
}

/* ===================== Example ===================== */
.example { padding: 100px 60px; background: var(--bg-warm); }
.example-header { text-align: center; margin-bottom: 60px; }
.example-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px;
}
.example-image {
    background: var(--bg-accent); border-radius: 4px; padding: 28px;
}
.example-image-title {
    font-family: 'Cinzel', serif;
    font-size: 17px; color: var(--gold-light);
    margin-bottom: 18px; font-weight: 500;
}
.example-image img {
    width: 100%; height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 2px;
}
.example-image-link {
    display: inline-block; margin-top: 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; color: var(--gold-light);
    text-decoration: none; letter-spacing: 1px;
}
.example-image-link:hover { text-decoration: underline; }
.example-transcript {
    background: var(--bg-light); border: 1px solid var(--border-light);
    padding: 28px; max-height: 600px; overflow-y: auto; border-radius: 4px;
}
.example-transcript pre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; color: var(--text-secondary);
    white-space: pre-wrap; line-height: 1.9; margin: 0;
}

/* ===================== FAQ ===================== */
.faq { padding: 100px 60px; background: var(--bg-light); }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.faq-item {
    background: var(--bg-warm); border: 1px solid var(--border-light);
    padding: 32px 30px; border-radius: 4px;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-question {
    font-family: 'Cinzel', serif;
    font-size: 19px; color: var(--text-primary);
    margin-bottom: 14px; font-weight: 500;
}
.faq-answer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--text-secondary); line-height: 1.8;
}

/* ===================== Content sections (Text-Seiten) ===================== */
.content-section { padding: 80px 60px; background: var(--bg-light); }
.content-wrapper { max-width: 800px; margin: 0 auto; }
.content-wrapper h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px; font-weight: 500;
    color: var(--text-primary); margin: 50px 0 22px; line-height: 1.3;
}
.content-wrapper h2:first-child { margin-top: 0; }
.content-wrapper h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px; font-weight: 500;
    color: var(--gold-dark); margin: 32px 0 14px;
}
.content-wrapper p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; line-height: 1.9;
    color: var(--text-secondary); margin-bottom: 18px;
}
.content-wrapper ul, .content-wrapper ol { padding-left: 24px; margin-bottom: 22px; }
.content-wrapper li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; line-height: 1.8;
    color: var(--text-secondary); margin-bottom: 8px;
}
.content-wrapper a { color: var(--gold-dark); }
.content-wrapper a:hover { text-decoration: underline; }
.content-wrapper strong { color: var(--text-primary); }

.content-wrapper.wide { max-width: 1100px; }

.callout {
    background: var(--bg-warm); border-left: 4px solid var(--gold-primary);
    padding: 22px 26px; margin: 28px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--text-primary); line-height: 1.8; font-style: italic;
}

/* Bereich-Hero */
.area-hero {
    padding: 160px 60px 60px;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-warm) 100%);
}
.area-hero-content { max-width: 900px; margin: 0 auto; }
.area-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; letter-spacing: 3px;
    color: var(--gold-dark); text-transform: uppercase;
    margin-bottom: 14px; font-weight: 600;
}
.area-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500; line-height: 1.25;
    margin-bottom: 22px; color: var(--text-primary);
}
.area-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; line-height: 1.8;
    color: var(--text-secondary);
}

/* ===================== Forms ===================== */
.contact { padding: 80px 60px; background: var(--bg-light); }
.contact-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group label {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; letter-spacing: 1px;
    color: var(--text-secondary); text-transform: uppercase;
    margin-bottom: 10px; font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px 18px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    transition: border-color 0.3s ease;
    border-radius: 4px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold-primary);
}
.form-group textarea { min-height: 160px; resize: vertical; }
.form-checkbox {
    display: flex; align-items: flex-start; gap: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; color: var(--text-secondary);
}
.form-checkbox input { margin-top: 5px; width: 20px; height: 20px; accent-color: var(--gold-primary); cursor: pointer; }
.form-checkbox a { color: var(--gold-dark); }
.form-hint {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; color: var(--text-muted);
    margin-top: 6px; font-style: italic;
}
.form-hp { position: absolute; left: -10000px; top: -10000px; height: 0; width: 0; opacity: 0; }

.contact-aside {
    background: var(--bg-warm); border: 1px solid var(--border-light);
    padding: 36px 32px; border-radius: 4px; align-self: start;
}
.contact-aside h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px; color: var(--text-primary);
    margin-bottom: 18px; font-weight: 500;
}
.contact-aside ul { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-aside li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; color: var(--text-secondary);
    padding: 8px 0 8px 22px; position: relative;
}
.contact-aside li::before {
    content: '\25C6'; position: absolute; left: 0;
    color: var(--gold-dark); font-size: 11px; top: 14px;
}
.contact-info { padding-top: 22px; border-top: 1px solid var(--border-light); }
.contact-info-item { margin-bottom: 18px; }
.contact-info-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; letter-spacing: 2px;
    color: var(--text-muted); text-transform: uppercase;
    margin-bottom: 6px; font-weight: 600;
}
.contact-info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--text-primary);
}
.contact-info-value a { color: var(--gold-dark); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

/* ===================== CTA ===================== */
.cta-section { padding: 100px 60px; background: var(--bg-accent); text-align: center; }
.cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px; font-weight: 500;
    color: white; margin-bottom: 20px;
}
.cta-section h2 .gold-text { color: var(--gold-light); }
.cta-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px; color: rgba(255, 255, 255, 0.8);
    max-width: 600px; margin: 0 auto 40px; line-height: 1.8;
}

/* ===================== AGB / Datenschutz / Impressum ===================== */
.agb-content { max-width: 900px; margin: 0 auto; }
.agb-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 26px; font-weight: 500;
    color: var(--text-primary); margin: 40px 0 14px; line-height: 1.3;
}
.agb-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 19px; font-weight: 500;
    color: var(--gold-dark); margin: 22px 0 10px;
}
.agb-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; line-height: 1.8;
    color: var(--text-secondary); margin-bottom: 14px;
}
.agb-content ul { padding-left: 24px; margin-bottom: 16px; }
.agb-content li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; line-height: 1.7;
    color: var(--text-secondary); margin-bottom: 6px;
}
.agb-meta {
    margin-top: 56px; padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; color: var(--text-muted);
}
.agb-meta p { margin-bottom: 6px; }

/* ===================== Footer ===================== */
footer { padding: 60px 60px 40px; background: var(--bg-light); border-top: 1px solid var(--border-light); }
.footer-grid {
    max-width: 1200px; margin: 0 auto 36px;
    display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 14px; letter-spacing: 2px;
    color: var(--text-primary); margin-bottom: 16px;
    text-transform: uppercase; font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px; color: var(--text-muted);
    text-decoration: none; transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold-dark); }
.footer-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; color: var(--text-secondary);
    line-height: 1.7; margin-top: 14px;
}
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold-dark); }

/* ===================== Skip link / a11y ===================== */
.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--gold-primary); color: white;
    padding: 16px 24px; z-index: 1000;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px; text-decoration: none;
}
.skip-link:focus { top: 0; }
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid var(--gold-primary); outline-offset: 2px;
}

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
    html { font-size: 17px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; max-width: 550px; }
    .about-grid, .spectrum-grid, .pricing-grid, .process-grid, .example-grid,
    .audience-grid, .contact-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    html { font-size: 16px; }
    nav { padding: 14px 20px; }
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
        flex-direction: column; align-items: stretch;
        background: var(--bg-light);
        padding: 24px 20px; gap: 4px;
        border-top: 1px solid var(--border-light);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-link { padding: 14px 8px; font-size: 15px; }
    .has-dropdown > .nav-link::after { float: right; }
    .dropdown {
        position: static; visibility: visible; opacity: 1;
        transform: none; box-shadow: none;
        border: none; border-left: 2px solid var(--border-gold);
        margin-left: 14px; padding: 4px 0;
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .has-dropdown.open .dropdown { max-height: 600px; }
    .dropdown a { padding: 8px 14px; font-size: 14px; }

    .hero { padding: 130px 20px 90px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .page-header, .area-hero { padding: 130px 20px 50px; }
    .trust-strip { padding: 24px; }
    .trust-strip-inner { flex-direction: column; gap: 18px; }
    .stats, .about, .services, .spectrum, .pricing, .process, .example,
    .faq, .contact, .cta-section, .content-section, .audience { padding: 70px 20px; }
    .stats-grid { grid-template-columns: 1fr; }
    .spectrum-visual, .about-expertise { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-title { font-size: 30px; }
    footer { padding: 50px 20px 30px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
