/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
    --salbei: #5B6D5B;
    --salbei-hell: #7a8f7a;
    --salbei-dunkel: #3d4e3d;
    --beige: #F5EFE0;
    --beige-dunkel: #ede3ce;
    --erde: #6B5744;
    --text-dunkel: #2C2C2C;
    --text-mittel: #555555;
    --text-hell: #888888;
    --gold: #B89A6A;
    --gold-hell: #d4b98a;
    --weiss: #FDFAF5;
    --schatten: 0 4px 30px rgba(43, 60, 43, 0.10);
    --schatten-lg: 0 12px 50px rgba(43, 60, 43, 0.16);
    --radius: 12px;
    --radius-md: 8px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dunkel);
    background-color: var(--weiss);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.4rem;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--salbei);
    margin-bottom: 0.8rem;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-mittel);
    font-weight: 300;
    font-size: 1.1rem;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* NAVIGATION */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.main-nav.scrolled {
    background: rgba(253, 250, 245, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--schatten);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--weiss);
    transition: color var(--transition);
}

.main-nav.scrolled .logo-main {
    color: var(--salbei-dunkel);
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.main-nav.scrolled .logo-sub {
    color: var(--text-hell);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.main-nav.scrolled .nav-links li a {
    color: var(--text-mittel);
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--salbei) !important;
    color: white !important;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: background var(--transition) !important;
}

.nav-cta:hover {
    background: var(--salbei-dunkel) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.main-nav.scrolled .nav-toggle span {
    background: var(--text-dunkel);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 1.5rem 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 45, 30, 0.65) 0%, rgba(43, 58, 43, 0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-hell);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 em {
    color: var(--gold-hell);
    font-style: italic;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-notfall {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--salbei);
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(91, 109, 91, 0.4);
    transition: all var(--transition);
}

.btn-notfall:hover {
    background: var(--salbei-dunkel);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 109, 91, 0.5);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(1)
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2)
    }
}

/* SOFORTHILFE */
.soforthilfe {
    padding: 5rem 0;
    background: var(--beige);
}

.soforthilfe-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.soforthilfe-text h2 {
    margin-bottom: 1rem;
    color: var(--salbei-dunkel);
}

.soforthilfe-text p {
    color: var(--text-mittel);
    margin-bottom: 1.5rem;
}

.telefon-gross {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-variant-numeric: lining-nums tabular-nums;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--salbei-dunkel);
    transition: color var(--transition);
}

.telefon-gross:hover {
    color: var(--gold);
}

.verfuegbar {
    font-size: 0.9rem;
    color: var(--salbei);
    margin-top: 0.5rem;
    font-weight: 500;
}

.soforthilfe-checklist {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--schatten);
}

.soforthilfe-checklist h3 {
    margin-bottom: 1.8rem;
    color: var(--text-dunkel);
    font-size: 1.2rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checklist li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.check-nr {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--salbei);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.checklist li strong {
    display: block;
    margin-bottom: 0.3rem;
}

.checklist li p {
    font-size: 0.9rem;
    color: var(--text-mittel);
}

/* PERSÖNLICH */
.persoenlich {
    padding: 5rem 0;
    background: white;
}

.persoenlich-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
}

.portrait-wrap {
    position: relative;
}

.portrait-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--schatten-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.portrait-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid var(--salbei);
    border-radius: calc(var(--radius-lg) + 4px);
    opacity: 0.3;
}

.persoenlich-text h2 {
    margin-bottom: 1.5rem;
    color: var(--salbei-dunkel);
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-mittel);
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.signatur {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* LEISTUNGEN */
.leistungen {
    padding: 6rem 0;
    background: var(--beige);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.leistung-card {
    background: white;
    padding: 2.5rem 2rem 4.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--schatten);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.card-highlight {
    background: var(--salbei-dunkel);
}

.card-highlight h3,
.card-highlight .leistung-sub,
.card-highlight p,
.card-highlight li {
    color: rgba(255, 255, 255, 0.9);
}

.card-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.leistung-icon {
    width: 60px;
    height: 60px;
    color: var(--salbei);
    margin-bottom: 1.5rem;
}

.card-highlight .leistung-icon {
    color: var(--gold-hell);
}

.leistung-icon svg {
    width: 100%;
    height: 100%;
}

.leistung-card h3 {
    margin-bottom: 0.3rem;
}

.leistung-sub {
    font-size: 0.85rem;
    color: var(--text-hell);
    margin-bottom: 1rem;
}

.leistung-card>p {
    font-size: 0.95rem;
    color: var(--text-mittel);
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}



.card-highlight>p {
    color: rgba(255, 255, 255, 0.9);
}

.leistung-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    min-height: 15rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--beige-dunkel);
}

.card-highlight .leistung-details {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.leistung-details li {
    font-size: 0.875rem;
    color: var(--text-mittel);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leistung-details li::before {
    content: '✓';
    color: var(--salbei);
    font-weight: 600;
    flex-shrink: 0;
}

.card-highlight .leistung-details li {
    color: rgba(255, 255, 255, 0.8);
}

.card-highlight .leistung-details li::before {
    color: var(--gold-hell);
}

.leistung-link {
    display: block;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    text-align: center;
    margin-top: 0;
    padding: 0.65rem 1.2rem;
    background: transparent;
    color: var(--salbei-dunkel);
    border: 1.5px solid var(--salbei);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.leistung-link:hover {
    background: var(--salbei-dunkel);
    color: white;
    border-color: var(--salbei-dunkel);
}

.card-highlight .leistung-link {
    color: var(--gold-hell);
    border-color: var(--gold-hell);
}

.card-highlight .leistung-link:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.hinweis {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--text-hell);
}

/* TIMELINE */
.timeline-section {
    padding: 6rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--salbei), var(--gold), var(--salbei));
    border-radius: 1px;
}

.tl-item {
    position: relative;
    padding: 0 0 3rem 2.5rem;
    cursor: pointer;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-marker {
    position: absolute;
    left: -1.1rem;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--salbei);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--salbei);
    transition: background var(--transition), box-shadow var(--transition);
    z-index: 1;
}

.tl-item:hover .tl-marker {
    background: var(--gold);
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--gold);
}

.tl-content {
    background: var(--beige);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition);
}

.tl-item:hover .tl-content {
    transform: translateX(4px);
    box-shadow: var(--schatten);
}

.tl-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    color: var(--salbei-dunkel);
}

.tl-zeit {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.tl-content p {
    font-size: 0.95rem;
    color: var(--text-mittel);
}

/* WARUM WIR */
.warum-wir {
    padding: 6rem 0;
    background: var(--salbei-dunkel);
}

.warum-wir .section-header h2 {
    color: white;
}

.warum-wir .section-label {
    color: var(--gold-hell);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.usp-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: background var(--transition), transform var(--transition);
}

.usp-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.usp-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.usp-item h3 {
    color: var(--gold-hell);
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.usp-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* CHRONIK */
.chronik {
    padding: 5rem 0;
    background: var(--beige);
    overflow: hidden;
}

.chronik-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--salbei) var(--beige-dunkel);
}

.chronik-item {
    flex: 0 0 220px;
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--schatten);
    border-top: 4px solid var(--salbei);
    transition: transform var(--transition);
}

.chronik-item:hover {
    transform: translateY(-4px);
}

.chronik-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--salbei);
    margin-bottom: 0.5rem;
}

.chronik-item p {
    font-size: 0.9rem;
    color: var(--text-mittel);
    line-height: 1.5;
}

/* NOTFALL CTA */
.notfall-cta {
    padding: 6rem 0;
    background: var(--beige);
    text-align: center;
}

.notfall-inner h2 {
    margin-bottom: 1rem;
    color: var(--salbei-dunkel);
}

.notfall-inner>p {
    color: var(--text-mittel);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-notfall-gross {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--salbei);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    box-shadow: 0 6px 30px rgba(91, 109, 91, 0.35);
    transition: all var(--transition);
    margin-bottom: 1.5rem;
}

.btn-notfall-gross:hover {
    background: var(--salbei-dunkel);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(91, 109, 91, 0.45);
}

.notfall-synergie {
    font-size: 0.85rem;
    color: var(--text-hell);
}

.notfall-synergie a {
    color: var(--salbei);
    font-weight: 500;
}

.notfall-synergie a:hover {
    color: var(--gold);
}

/* FOOTER */
.main-footer {
    background: var(--text-dunkel);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer-brand {
    border-top: 1px solid rgba(184, 154, 106, 0.35);
    padding-top: 1.5rem;
}

.footer-brand .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-brand a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 0.3rem;
}

.footer-brand a:hover {
    color: var(--gold-hell);
}

.footer-links {
    border-top: 1px solid rgba(184, 154, 106, 0.35);
    padding-top: 1.5rem;
}

.footer-links h4 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-links li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.footer-links li a:hover {
    color: var(--gold-hell);
}

/* Rechtliches – dezenter als die Hauptspalten */
.footer-links.footer-legal {
    border-top-color: rgba(184, 154, 106, 0.15);
}

.footer-links.footer-legal h4 {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.8rem;
    margin-top: 0.15rem; /* optisch auf gleiche Höhe mit h4 der anderen Spalten */
}

.footer-links.footer-legal li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.4rem;
}

.footer-links.footer-legal li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--gold-hell);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--beige-dunkel);
    z-index: 9999;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: none;
    max-height: 90vh;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .cookie-banner {
        bottom: 2rem;
        left: 2rem;
        right: auto;
        max-width: 420px;
        border-radius: var(--radius-lg);
        border: 1px solid var(--beige-dunkel);
        box-shadow: var(--schatten-lg);
    }
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cookie-content h4 {
    color: var(--salbei-dunkel);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-mittel);
    line-height: 1.5;
    margin-bottom: 0;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--gold-hell);
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}

.cookie-btn {
    width: 100%;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.cookie-primary {
    background: var(--salbei);
    color: white;
    box-shadow: 0 4px 15px rgba(91, 109, 91, 0.2);
}

.cookie-primary:hover {
    background: var(--salbei-dunkel);
    transform: translateY(-2px);
}

.cookie-secondary {
    background: transparent;
    color: var(--text-dunkel);
    border-color: rgba(91, 109, 91, 0.3);
}

.cookie-secondary:hover {
    background: rgba(91, 109, 91, 0.05);
    border-color: var(--salbei);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .leistungen-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--weiss);
        padding: 1.5rem;
        box-shadow: var(--schatten);
        gap: 1.2rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        color: var(--text-dunkel) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .soforthilfe-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .persoenlich-inner {
        grid-template-columns: 1fr;
    }

    .portrait-wrap {
        max-width: 260px;
        margin: 0 auto;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .telefon-gross {
        font-size: 2.2rem;
    }

    .btn-notfall-gross {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}