:root {
    --forest-deep: #2d4a3e;
    --forest-moss: #5a7965;
    --earth-clay: #c4997e;
    --earth-sand: #e8d5c4;
    --background-light: #f0f0e9;
    --text-dark: #1a2f2a;
    --text-light: #f5f5f0;
    --text-cream: #f5f5f0de;
    --accent-warm: #d4a574;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* ─── Lokale Fonts ──────────────────────────────────────── */

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Baskerville';
    src: url('../fonts/LibreBaskerville-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Libre Baskerville';
    src: url('../fonts/LibreBaskerville-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

/* ─── Page transitions ─────────────────────────────────── */

.page {
    display: none;
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ─── CTA Button ────────────────────────────────────────── */

.cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 3rem;
    background: var(--accent-warm);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
    background: var(--earth-clay);
}

/* ─── Content layout ────────────────────────────────────── */

.content-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header p {
    max-width:700px;
    margin:0 auto;
    font-size:1.15rem; 
    line-height:1.9; 
    color:var(--text-dark); 
    opacity:0.85;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--forest-deep);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.section-header .divider {
    width: 100px;
    height: 3px;
    background: var(--accent-warm);
    margin: 2rem auto;
}

/* ─── Cards ─────────────────────────────────────────────── */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 74, 62, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(45, 74, 62, 0.15);
}

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 2.5rem;
}

.card-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-warm);
    margin-bottom: 0.75rem;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--forest-deep);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.card-divider {
    width: 40px;
    height: 2px;
    background: var(--accent-warm);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.85;
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--forest-moss);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--accent-warm);
    transform: translateX(5px);
}

/* ─── Feature grid (Coaching / Supervision Angebote) ────── */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(45, 74, 62, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(45, 74, 62, 0.12);
}

.feature-item h3 {
    font-size: 1.8rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.8;
}

/* ─── Feature-Liste (Pfeil-Aufzählung in Feature-Items) ─── */

.feature-label {
    color: var(--forest-moss);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.2rem;
}

.feature-list li {
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-warm);
    font-weight: 700;
}

/* ─── Info box (allgemeine Infobox mit hellem Hintergrund) ── */

.info-box {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.info-box h3 {
    font-size: 2rem;
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
}

.info-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.info-box strong {
    color: var(--forest-moss);
}

.info-box ul {
    list-style: square;
    margin-top: 1rem;
    padding-left: 2rem;
}

.info-box li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* ─── Detail pages (Unterseiten mit Hero + Content) ─────── */

.detail-hero {
    padding: 12rem 2rem 6rem;
    background: linear-gradient(135deg, var(--forest-moss) 0%, var(--forest-deep) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 121, 101, 0.75) 0%, rgba(45, 74, 62, 0.85) 100%);
    z-index: 0;
}

.detail-hero h1 {
    color: var(--text-cream);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.detail-content {
    margin: 0 auto;
    padding: 5rem 2rem;
}

.detail-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.detail-content ul {
    margin-top: 1rem;
    padding-left: 2rem;
}

.detail-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* ─── About page ────────────────────────────────────────── */

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: top;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(45, 74, 62, 0.2);
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.qualification-list {
    margin-top: 3rem;
}

.qualification-list h4 {
    font-size: 1.5rem;
    color: var(--forest-moss);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.qualification-list ul {
    list-style: none;
    padding-left: 0;
}

.qualification-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.qualification-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-warm);
    font-weight: 600;
}

/* ─── Contact page ──────────────────────────────────────── */

.contact-info {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--earth-sand);
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--forest-deep);
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ─── Footer ────────────────────────────────────────────── */

footer {
    background: var(--forest-deep);
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-legal-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: var(--earth-clay);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-warm);
}

/* ─── Modals ────────────────────────────────────────────── */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-content {
    background: var(--text-light);
    max-width: 700px;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
}

.modal-content h2 {
    font-size: 2.2rem;
    color: var(--forest-deep);
    margin-bottom: 2rem;
}

.modal-content h3 {
    font-size: 1.2rem;
    color: var(--forest-moss);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--forest-moss);
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--forest-deep);
}

.modal-date {
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ─── Prozess-Schritte ──────────────────────────────────── */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.process-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest-deep);
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1.05rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* ─── Abschnitts-Überschrift mit Goldstrich ─────────────── */

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--forest-deep);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-warm);
    margin: 0 auto 2rem;
}

/* ─── Honorar-Tabelle ───────────────────────────────────── */

.honorar-table-wrapper {
    overflow-x: auto;
    margin-bottom: 0.5rem;
}

.honorar-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 74, 62, 0.08);
    table-layout: fixed;
}

.honorar-table thead tr {
    background: var(--forest-deep);
    color: var(--text-light);
}

.honorar-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.honorar-table th:nth-child(1) { width: 70%; }
.honorar-table th:nth-child(2) { width: 30%; }

.honorar-table tbody tr:nth-child(even) {
    background: var(--background-light);
}

.honorar-table tbody tr {
    border-bottom: 1px solid var(--earth-sand);
}

.honorar-table tbody tr:last-child {
    border-bottom: none;
}

.honorar-table td {
    padding: 1.1rem 1.5rem;
    vertical-align: middle;
}

.honorar-table td:first-child {
    font-weight: 500;
    color: var(--forest-deep);
}

.honorar-table td:last-child {
    font-weight: 600;
    color: var(--forest-moss);
}

.honorar-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dark);
    opacity: 0.5;
    margin-top: 2px;
}

.honorar-table-note {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.92rem;
    color: var(--text-dark);
    opacity: 0.6;
}

/* ─── Honorar-Karten (Mobile) ───────────────────────────── */

.honorar-cards {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.honorar-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 12px;
    border: 0.5px solid var(--earth-sand);
    box-shadow: 0 4px 16px rgba(45, 74, 62, 0.06);
}

.honorar-card:nth-child(even) {
    background: white;
}

.honorar-card:last-child {
    border-bottom: 0.5px solid var(--earth-sand);
}

.honorar-card-left h4 {
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 2px;
}

.honorar-card-left span {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.5;
}

.honorar-card-right {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest-moss);
    white-space: nowrap;
}

.honorar-card--free .honorar-card-right {
    color: var(--accent-warm);
}

/* ─── Desktop/Mobile Sichtbarkeit ───────────────────────── */

.honorar-mobile { display: none; }
.honorar-desktop { display: block; }

/* ─── CTA-Block ─────────────────────────────────────────── */

.cta-block {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--earth-sand);
    border-radius: 12px;
}

.cta-block h3 {
    font-size: 2rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.cta-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Trennlinie ────────────────────────────────────────── */

.section-divider {
    border: none;
    border-top: 2px solid var(--earth-sand);
    margin: 3rem 0;
}

/* ─── Abgrenzungs-Karten (z.B. "Coaching ist / ist nicht") ─ */

.contrast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contrast-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(45, 74, 62, 0.08);
}

.contrast-card--positive {
    border-top: 4px solid var(--forest-moss);
}

.contrast-card--negative {
    border-top: 4px solid var(--accent-warm);
}

.contrast-card h4 {
    font-size: 1.3rem;
    color: var(--forest-deep);
    margin-bottom: 0.8rem;
}

.contrast-card p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-dark);
    opacity: 0.85;
}

/* ─── Impressions-Bilder (Landing Page) ─────────────────── */

.impression-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.impression-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    max-height: 350px;
}

.impression-img:nth-child(1),
.impression-img:nth-child(3) {
    aspect-ratio: 4 / 3;
}

.impression-img:nth-child(2) {
    aspect-ratio: 3 / 4;
}