/* ============================================================
   MAIN.CSS – Design-Token-System & Basis-Styles
   Alle CSS Custom Properties zentral definiert
   ============================================================ */

/* ============================================================
   DESIGN TOKENS – Custom Properties
   ============================================================ */
:root {
    /* --- Primärfarben --- */
    --color-primary:         #4A6741;   /* Gediegenes Grün – Hoffnung, Leben */
    --color-primary-hover:   #3d5736;
    --color-primary-light:   #6B8F62;
    --color-primary-subtle:  #EFF4EE;
    --color-primary-rgb:     74, 103, 65;

    /* --- Gold-Akzente (Hochzeit, Würde) --- */
    --color-gold:            #C4A265;
    --color-gold-light:      #DEC08A;
    --color-gold-subtle:     #FAF6EF;
    --color-gold-dark:       #A68040;

    /* --- Neutrale Farben --- */
    --color-text:            #1A1A2E;
    --color-text-light:      #4A4A6A;
    --color-text-muted:      #7A7A9A;
    --color-bg:              #FFFFFF;
    --color-bg-alt:          #F7F5F2;   /* Cremeweiß */
    --color-bg-dark:         #1A1A2E;
    --color-surface:         #FFFFFF;
    --color-border:          #E2DED8;
    --color-border-light:    #EEEBE6;

    /* --- Semantische Farben --- */
    --color-success:         #2E7D32;
    --color-success-bg:      #E8F5E9;
    --color-error:           #C62828;
    --color-error-bg:        #FFEBEE;
    --color-warning:         #E65100;
    --color-info:            #1565C0;

    /* --- Service-spezifisch --- */
    --color-funeral:         #4A5568;   /* Würdiges Blau-Grau für Trauerseiten */
    --color-funeral-subtle:  #F0F2F5;
    --color-wedding:         #8B5E52;   /* Warmes Rosenholz für Hochzeitsseiten */
    --color-wedding-subtle:  #FDF3F1;

    /* --- Typografie --- */
    --font-heading:  'Playfair Display', 'Georgia', serif;
    --font-body:     'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
    --font-mono:     'Courier New', monospace;

    /* --- Schriftgrößen (Fluid) --- */
    --text-xs:       clamp(0.70rem,  1.4vw, 0.80rem);
    --text-sm:       clamp(0.85rem,  1.8vw, 0.95rem);
    --text-base:     clamp(1rem,     2vw,   1.10rem);
    --text-lg:       clamp(1.10rem,  2.5vw, 1.25rem);
    --text-xl:       clamp(1.25rem,  3vw,   1.50rem);
    --text-2xl:      clamp(1.50rem,  3.5vw, 2.00rem);
    --text-3xl:      clamp(2.00rem,  4.5vw, 2.75rem);
    --text-4xl:      clamp(2.50rem,  5.5vw, 3.50rem);
    --text-hero:     clamp(2.75rem,  6.5vw, 4.50rem);

    /* --- Abstände --- */
    --space-1:   0.25rem;
    --space-2:   0.50rem;
    --space-3:   0.75rem;
    --space-4:   1.00rem;
    --space-5:   1.25rem;
    --space-6:   1.50rem;
    --space-7:   1.75rem;
    --space-8:   2.00rem;
    --space-10:  2.50rem;
    --space-12:  3.00rem;
    --space-14:  3.50rem;
    --space-16:  4.00rem;
    --space-20:  5.00rem;
    --space-24:  6.00rem;
    --space-32:  8.00rem;

    /* --- Sektion-Padding (fluid) --- */
    --section-py:       clamp(3.5rem, 8vw, 6.5rem);
    --section-px:       clamp(1rem, 4vw, 2rem);
    --container-max:    1200px;
    --container-narrow: 760px;
    --container-wide:   1400px;

    /* --- Rahmen & Radius --- */
    --radius-xs:   3px;
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   32px;
    --radius-full: 9999px;

    /* --- Schatten --- */
    --shadow-xs:    0 1px 2px rgba(26,26,46,0.05);
    --shadow-sm:    0 1px 4px rgba(26,26,46,0.08), 0 2px 8px rgba(26,26,46,0.04);
    --shadow-md:    0 4px 16px rgba(26,26,46,0.10), 0 2px 6px rgba(26,26,46,0.06);
    --shadow-lg:    0 8px 32px rgba(26,26,46,0.12), 0 4px 12px rgba(26,26,46,0.06);
    --shadow-xl:    0 16px 64px rgba(26,26,46,0.15), 0 8px 20px rgba(26,26,46,0.08);
    --shadow-card:  0 2px 12px rgba(74,103,65,0.10);
    --shadow-gold:  0 4px 20px rgba(196,162,101,0.25);

    /* --- Übergänge --- */
    --ease-in:     cubic-bezier(0.4, 0, 1, 1);
    --ease-out:    cubic-bezier(0, 0, 0.2, 1);
    --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);

    --transition-fast:   150ms var(--ease-out);
    --transition-base:   250ms var(--ease-out);
    --transition-slow:   400ms var(--ease-inout);
    --transition-hero:   700ms var(--ease-spring);

    /* --- Z-Index --- */
    --z-base:     1;
    --z-dropdown: 100;
    --z-sticky:   200;
    --z-overlay:  300;
    --z-modal:    400;
    --z-cookie:   500;
    --z-toast:    600;
}

/* ============================================================
   MODERNES CSS RESET
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.7;
}

img, video, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    hyphens: auto;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); font-family: var(--font-body); }

p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-light);
}

p + p { margin-top: var(--space-4); }

strong, b { font-weight: 600; color: var(--color-text); }

em, i { font-style: italic; }

.lead {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 720px;
}

.text-muted { color: var(--color-text-muted); font-size: var(--text-sm); }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    max-width: 640px;
    line-height: 1.7;
}

/* Rich Text Inhalt (Blog) */
.prose h2 { font-size: var(--text-2xl); margin-top: var(--space-10); margin-bottom: var(--space-4); }
.prose h3 { font-size: var(--text-xl);  margin-top: var(--space-8);  margin-bottom: var(--space-3); }
.prose p  { margin-bottom: var(--space-5); color: var(--color-text-light); }
.prose ul, .prose ol { margin-bottom: var(--space-5); padding-left: var(--space-6); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: var(--space-2); color: var(--color-text-light); }
.prose a  { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
    border-left: 4px solid var(--color-gold);
    padding: var(--space-4) var(--space-6);
    margin: var(--space-8) 0;
    background: var(--color-gold-subtle);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    font-size: var(--text-lg);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--section-px);
}

.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: var(--container-wide); }

.section {
    padding-block: var(--section-py);
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section--dark {
    background-color: var(--color-bg-dark);
    color: #fff;
}

.section--primary {
    background-color: var(--color-primary-subtle);
}

.section--gold {
    background: linear-gradient(135deg, var(--color-gold-subtle) 0%, #fff 100%);
}

/* Grid-System */
.grid {
    display: grid;
    gap: var(--space-8);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

/* Flexbox-Utilities */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-4        { gap: var(--space-4); }
.gap-6        { gap: var(--space-6); }
.gap-8        { gap: var(--space-8); }

/* Section-Header */
.section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--space-14);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-7);
    font-size: var(--text-base);
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn--gold {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.btn--large {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-lg);
}

.btn--sm {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
}

.btn svg { width: 18px; height: 18px; }

/* ============================================================
   KARTEN
   ============================================================ */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card__image img {
    transform: scale(1.04);
}

.card__body {
    padding: var(--space-7);
}

.card__tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.card__title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.card__text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-7);
    border-top: 1px solid var(--color-border-light);
}

/* ============================================================
   SERVICE-KARTEN (Leistungsübersicht)
   ============================================================ */
.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-hero);
}

.service-card:hover .service-card__bg img {
    transform: scale(1.06);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.30) 50%, transparent 100%);
    z-index: 1;
}

.service-card__content {
    position: relative;
    z-index: 2;
    padding: var(--space-10);
    color: #fff;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: 1.5rem;
}

.service-card__label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-3);
}

.service-card__title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: #fff;
}

.service-card__text {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--color-border-light);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0;
    color: var(--color-gold-subtle);
    position: absolute;
    top: var(--space-6);
    left: var(--space-7);
    z-index: 0;
}

.testimonial-card__stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-card__text {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--color-primary);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.testimonial-card__meta {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: 2px;
}

.testimonial-card__badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: var(--space-2);
}

.badge--trauer {
    background: var(--color-funeral-subtle);
    color: var(--color-funeral);
}

.badge--hochzeit, .badge--freie_trauung {
    background: var(--color-wedding-subtle);
    color: var(--color-wedding);
}

/* ============================================================
   USP / FEATURES
   ============================================================ */
.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.usp-item:hover {
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.usp-item__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: 1.75rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.usp-item:hover .usp-item__icon {
    background: var(--color-primary);
    transform: scale(1.1);
}

.usp-item:hover .usp-item__icon svg path,
.usp-item:hover .usp-item__icon svg circle {
    stroke: #fff;
}

.usp-item__title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.usp-item__text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: var(--space-1);
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    position: relative;
}

.process-step__number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
    position: relative;
    z-index: 1;
}

.process-step__title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.process-step__text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
    transition: box-shadow var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.open {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-7);
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-item.open .faq-question {
    color: var(--color-primary);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-base);
}

.faq-item.open .faq-toggle {
    background: var(--color-primary);
}

.faq-item.open .faq-toggle svg path { stroke: #fff; }
.faq-item.open .faq-toggle svg { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 var(--space-7) var(--space-6);
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   CTA-BEREICH
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    padding: var(--section-py) var(--section-px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-section .container { position: relative; }

.cta-section__label {
    color: var(--color-gold-light);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.cta-section__title {
    color: #fff;
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
    max-width: 600px;
    margin-inline: auto;
}

.cta-section__text {
    color: rgba(255,255,255,0.80);
    font-size: var(--text-lg);
    margin-bottom: var(--space-10);
    max-width: 560px;
    margin-inline: auto;
}

.cta-section__buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    padding: var(--space-4) 0;
}

.breadcrumb a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--color-primary); }

.breadcrumb__separator {
    color: var(--color-border);
    user-select: none;
}

.breadcrumb__current { color: var(--color-text-light); }

/* ============================================================
   RATING AGGREGATE
   ============================================================ */
.rating-aggregate {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.rating-aggregate__score {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text);
    font-family: var(--font-heading);
}

.rating-aggregate__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-aggregate__stars { color: var(--color-gold); font-size: 1.3rem; }
.rating-aggregate__count { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================================
   ALERT / NOTIFICATIONS
   ============================================================ */
.alert {
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.alert--success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid #A5D6A7;
}

.alert--error {
    background: var(--color-error-bg);
    color: var(--color-error);
    border: 1px solid #EF9A9A;
}

/* ============================================================
   SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    background: var(--color-primary);
    color: #fff;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: var(--z-toast);
    transition: top var(--transition-fast);
}

.skip-link:focus { top: var(--space-4); }

/* ============================================================
   LAZY-LOAD ANIMATIONEN (via Intersection Observer)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-0  { margin-top: 0; }
.mt-4  { margin-top: var(--space-4); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .grid--2, .grid--3, .grid--4 {
        grid-template-columns: 1fr;
    }

    .service-card { min-height: 360px; }
    .service-card__content { padding: var(--space-7); }

    .cta-section__buttons { flex-direction: column; align-items: center; }
    .btn--large { width: 100%; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
}
