/* ============================================
   Kanzlei Primus — Corporate Design
   Farben: Navy #0c1e3d / Gold #c4a572 / Cream #faf7f0
   ============================================ */

:root {
    --navy: #0c1e3d;
    --navy-light: #1a3258;
    --navy-dark: #06122a;
    --gold: #c4a572;
    --gold-light: #d4b886;
    --gold-dark: #a88a5a;
    --cream: #faf7f0;
    --cream-dark: #f0ebdd;
    --white: #ffffff;
    --black: #1a1a1a;
    --text: #2b2b2b;
    --text-muted: #6b6b6b;
    --border: #e5e0d3;
    --shadow-sm: 0 2px 8px rgba(12, 30, 61, 0.06);
    --shadow-md: 0 8px 24px rgba(12, 30, 61, 0.10);
    --shadow-lg: 0 20px 50px rgba(12, 30, 61, 0.18);
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1240px;
    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

a {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }

p { margin-bottom: 1rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--navy-dark);
    color: var(--cream);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--gold);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar a { color: var(--cream); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-info span { display: inline-flex; align-items: center; gap: 8px; }
.top-bar-info .icon { color: var(--gold); }

/* Top-Bar in mobiler Ansicht ausblenden */
@media (max-width: 1024px) {
    .top-bar { display: none; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: padding var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo img { height: 64px; width: auto; }
.logo-text {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.05em;
    line-height: 1;
}
.logo-text small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-top: 4px;
    font-weight: 400;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-main > ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}
.nav-main > ul > li { position: relative; }
.nav-main a {
    display: inline-block;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.02em;
    position: relative;
}
.nav-main a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
}
.nav-main a:hover::after,
.nav-main a.active::after { transform: scaleX(1); }
.nav-main a.active { color: var(--gold-dark); }

/* Dropdown */
.has-dropdown > a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
    margin-right: 8px;
    margin-left: -2px;
    vertical-align: middle;
    transition: transform var(--transition);
}
.has-dropdown.open > a::before { transform: rotate(-135deg) translateY(0); }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 12px 22px;
    color: var(--text);
    font-size: 0.92rem;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover {
    background: var(--cream);
    border-left-color: var(--gold);
    color: var(--navy);
    padding-left: 26px;
}

.btn-nav {
    background: var(--navy);
    color: var(--white) !important;
    padding: 12px 26px !important;
    border-radius: var(--radius);
    margin-left: 8px;
    transition: all var(--transition);
}
.btn-nav::after { display: none !important; }
.btn-nav:hover {
    background: var(--gold);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(360px, 90%);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    .nav-main.open { right: 0; }
    .nav-main > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }
    .nav-main > ul > li { width: 100%; }
    .nav-main a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-main a::after { display: none; }
    .dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        background: var(--cream);
        padding: 0;
        transition: max-height var(--transition);
    }
    .has-dropdown.open .dropdown { max-height: 600px; padding: 8px 0; }
    .btn-nav { margin: 16px 0 0; text-align: center; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 20px 40px; font-size: 1rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--navy-dark);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0;
    isolation: isolate;
}

/* Hintergrund-Video — leicht transparent hinter dem Navy-Overlay */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.55;
    pointer-events: none;
}

/* Navy-Farb-Overlay über dem Video */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 18, 42, 0.78) 0%, rgba(12, 30, 61, 0.68) 60%, rgba(6, 18, 42, 0.82) 100%),
        radial-gradient(ellipse at top right, rgba(196, 165, 114, 0.22) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 984px; /* 20% breiter als zuvor (820px) */
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 14px;
    position: relative;
    font-weight: 500;
}
.hero-eyebrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 24px;
    line-height: 1.05;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.65;
    max-width: 640px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(196, 165, 114, 0.3);
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}
.hero-badge .icon {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header { text-align: center; margin-bottom: 70px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}
.section-header h2 { margin-bottom: 18px; }
.section-header .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.divider-gold {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 24px auto;
}
.divider-gold.left { margin-left: 0; margin-right: 0; }

/* ============================================
   ABOUT / INTRO
   ============================================ */
.intro { background: var(--cream); }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 50px; } }

.intro-image {
    position: relative;
}
.intro-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.intro-image::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -30px;
    right: 30px;
    bottom: -30px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}
.intro-image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.4rem;
    text-align: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.intro-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(196, 165, 114, 0.3);
}

.intro-content .lead { font-size: 1.15rem; color: var(--text); margin: 20px 0 24px; line-height: 1.75; }

.feature-list { list-style: none; margin-top: 30px; }
.feature-list li {
    padding: 14px 0 14px 36px;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 22px;
    height: 12px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
}

/* ============================================
   RECHTSGEBIETE CARDS
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.area-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.area-card:hover::before { transform: scaleX(1); }

.area-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: var(--cream);
    border-radius: 50%;
    transition: all var(--transition);
}
.area-card:hover .area-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}
.area-icon svg { width: 34px; height: 34px; }

.area-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    transition: color var(--transition);
}
.area-card:hover h3 { color: var(--gold-dark); }

.area-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.65;
}

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.area-link::after {
    content: "→";
    transition: transform var(--transition);
}
.area-card:hover .area-link::after { transform: translateX(6px); }
.area-card:hover .area-link { color: var(--gold-dark); }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card { text-align: center; }
.team-img-wrap {
    width: 260px;
    height: 320px;
    margin: 0 auto 28px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    box-shadow: var(--shadow-md);
}
.team-img-wrap::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.team-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: var(--gold);
    font-family: var(--serif);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.team-img-placeholder svg { width: 90px; height: 90px; opacity: 0.5; }
.team-img-placeholder span { font-size: 0.85rem; margin-top: 16px; opacity: 0.7; letter-spacing: 0.2em; }

.team-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.team-role {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}
.team-areas { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ============================================
   TRUST / FEATURES
   ============================================ */
.trust { background: var(--navy); color: var(--white); }
.trust h2 { color: var(--white); }
.trust .section-eyebrow { color: var(--gold); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 30px 20px;
}
.trust-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 14px;
}
.trust-card h4 { color: var(--white); margin-bottom: 8px; font-family: var(--sans); font-size: 1.05rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.trust-card p { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; margin: 0; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background:
        linear-gradient(135deg, rgba(6, 18, 42, 0.92) 0%, rgba(12, 30, 61, 0.88) 100%),
        var(--navy);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}
.cta h2 { color: var(--white); margin-bottom: 20px; }
.cta p { font-size: 1.15rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
    background:
        linear-gradient(135deg, rgba(6, 18, 42, 0.92) 0%, rgba(12, 30, 61, 0.85) 100%),
        var(--navy-dark);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(196, 165, 114, 0.18) 0%, transparent 60%);
    z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }

/* Hintergrundbild-Variante für Rechtsgebiet-Header */
.page-header.has-bg-image {
    background: var(--navy-dark);
    padding: 100px 0 80px;
}
.page-header.has-bg-image .page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.65;
    filter: saturate(1.05);
}
.page-header.has-bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 18, 42, 0.78) 0%, rgba(12, 30, 61, 0.62) 60%, rgba(6, 18, 42, 0.82) 100%);
    z-index: 0;
}

/* Content-Bilder in Rechtsgebiet-Artikeln */
.area-figure {
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(12, 30, 61, 0.18);
    position: relative;
    background: var(--cream);
}
.area-figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.area-figure:hover img { transform: scale(1.02); }
.area-figure figcaption {
    background: var(--cream);
    padding: 14px 22px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    border-left: 3px solid var(--gold);
    line-height: 1.5;
}
.area-figure-narrow {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.page-header h1 { color: var(--white); margin-bottom: 18px; max-width: 800px; }
.page-header .lead { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; max-width: 700px; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 10px; color: rgba(255, 255, 255, 0.4); }

/* ============================================
   CONTENT LAYOUT
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; gap: 40px; } }

.content-main h2 { font-size: 2rem; margin: 40px 0 18px; }
.content-main h3 { font-size: 1.4rem; margin: 32px 0 14px; color: var(--gold-dark); }
.content-main p { font-size: 1.02rem; margin-bottom: 18px; color: var(--text); }
.content-main ul, .content-main ol { padding-left: 24px; margin-bottom: 20px; }
.content-main li { margin-bottom: 8px; font-size: 1rem; }
.content-main strong { color: var(--navy); }

.sidebar { position: sticky; top: 110px; }

.sidebar-card {
    background: var(--cream);
    padding: 36px 30px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border-top: 4px solid var(--gold);
}
.sidebar-card h3 { font-size: 1.3rem; margin-bottom: 16px; color: var(--navy); }
.sidebar-card p { font-size: 0.95rem; margin-bottom: 16px; color: var(--text-muted); }
.sidebar-card .btn { width: 100%; }

.contact-info-list { list-style: none; }
.contact-info-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(196, 165, 114, 0.2);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list .icon {
    position: absolute;
    left: 0; top: 12px;
    color: var(--gold);
    width: 20px;
}

.related-list { list-style: none; }
.related-list li { border-bottom: 1px solid var(--border); }
.related-list li:last-child { border-bottom: 0; }
.related-list a {
    display: block;
    padding: 14px 0 14px 22px;
    color: var(--navy);
    font-size: 0.95rem;
    position: relative;
    transition: all 0.2s;
}
.related-list a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.2s;
}
.related-list a:hover { color: var(--gold-dark); padding-left: 28px; }
.related-list a:hover::before { transform: translateX(4px); }

/* ============================================
   ANFRAGE / FORM
   ============================================ */
.form-section { background: var(--cream); }

.form-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; gap: 40px; } }

.anfrage-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
}
@media (max-width: 600px) { .anfrage-form { padding: 30px 22px; } }

.form-step-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.step {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: var(--cream);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.step-num {
    display: inline-flex;
    width: 26px; height: 26px;
    background: var(--border);
    color: var(--text-muted);
    border-radius: 50%;
    align-items: center; justify-content: center;
    font-weight: 600;
    margin-right: 8px;
    transition: all var(--transition);
}
.step.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.step.active .step-num { background: var(--gold); color: var(--white); }
.step.done { background: var(--gold); color: var(--white); border-color: var(--gold); }
.step.done .step-num { background: var(--white); color: var(--gold); }

.form-step { display: none; animation: fadeUp 0.4s ease; }
.form-step.active { display: block; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.form-step .step-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-row .form-group { margin-bottom: 0; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
}
.form-group label .req { color: #c0392b; }
.form-group .hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(196, 165, 114, 0.15);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'><path d='M1 1l7 7 7-7' stroke='%230c1e3d' stroke-width='2' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

/* Custom file input */
.file-drop {
    border: 2px dashed var(--gold);
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}
.file-drop:hover, .file-drop.dragover {
    background: var(--cream-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
}
.file-drop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.file-drop-icon {
    color: var(--gold);
    margin-bottom: 12px;
}
.file-drop-icon svg { width: 44px; height: 44px; margin: 0 auto; }
.file-drop-text { color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.file-drop-hint { color: var(--text-muted); font-size: 0.85rem; }

.file-list { margin-top: 14px; list-style: none; }
.file-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--cream);
    border-radius: var(--radius);
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.file-list .file-name { flex: 1; color: var(--navy); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-list .file-size { color: var(--text-muted); font-size: 0.8rem; }
.file-list .file-remove {
    background: none;
    border: none;
    color: #c0392b;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    font-size: 1.2rem;
}

/* Datenschutz-Hinweis (statt Checkbox) */
.form-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 16px 22px;
    border-radius: var(--radius);
    margin-top: 24px;
    margin-bottom: 0;
}
.form-privacy-note svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.form-privacy-note p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.form-privacy-note a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
}
.form-privacy-note a:hover {
    color: var(--navy);
}

/* Custom checkboxes — deutlich sichtbar */
.checkbox-group {
    background: var(--cream);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 22px;
    transition: all var(--transition);
}
.checkbox-group:hover { background: var(--cream-dark); border-color: var(--gold-dark); }
.checkbox-group.error {
    background: #fdecea;
    border-color: #c0392b;
    animation: shake 0.4s;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

.checkbox-group > label {
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    font-weight: 400;
}
.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}
.checkbox-group .check-box {
    width: 26px;
    height: 26px;
    border: 2px solid var(--navy);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all var(--transition);
    background: var(--white);
    box-shadow: 0 1px 4px rgba(12, 30, 61, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.checkbox-group:hover .check-box { border-color: var(--gold-dark); box-shadow: 0 2px 6px rgba(196, 165, 114, 0.3); }

.checkbox-group input[type="checkbox"]:checked + .check-box {
    background: var(--gold);
    border-color: var(--gold-dark);
    box-shadow: 0 2px 8px rgba(196, 165, 114, 0.4);
}
.checkbox-group input[type="checkbox"]:checked + .check-box::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 8px;
    height: 14px;
    border-right: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(45deg);
}
.checkbox-group input[type="checkbox"]:focus-visible + .check-box {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
.checkbox-group label a {
    color: var(--gold-dark);
    text-decoration: underline;
    font-weight: 600;
}
.checkbox-group label a:hover { color: var(--navy); }
.checkbox-group .req { color: #c0392b; font-weight: 700; }

/* Time slot picker */
.timeslots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    margin-top: 10px;
}
.timeslot {
    padding: 10px 8px;
    text-align: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}
.timeslot:hover { border-color: var(--gold); }
.timeslot.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    font-weight: 600;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.btn-back { background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); }
.btn-back:hover { color: var(--navy); border-color: var(--navy); }

.form-success, .form-error {
    display: none;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}
.form-success { background: #e8f5e9; border: 1.5px solid #4caf50; color: #2e7d32; }
.form-error { background: #ffebee; border: 1.5px solid #ef5350; color: #c62828; }
.form-success.active, .form-error.active { display: block; animation: fadeUp 0.4s ease; }
.form-success h3 { color: #2e7d32; font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { color: #2e7d32; font-size: 1rem; margin-bottom: 0; }

.form-aside { padding: 20px 0; }
.form-aside h3 { font-size: 1.7rem; margin-bottom: 14px; }
.form-aside .lead { color: var(--text-muted); margin-bottom: 30px; font-size: 1.02rem; line-height: 1.7; }

.aside-info-block {
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 16px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}
.aside-info-block h4 {
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 600;
}
.aside-info-block p { font-size: 1.02rem; color: var(--navy); margin: 0; font-weight: 500; }
.aside-info-block a { color: var(--navy); }

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gold); }
.faq-q {
    width: 100%;
    padding: 22px 26px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q::after {
    content: "+";
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.open .faq-a { padding: 0 26px 22px; max-height: 600px; }
.faq-a p { color: var(--text-muted); margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img {
    width: 140px;
    height: auto;
    max-width: 140px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
    border-radius: var(--radius);
}

/* Social Media Icons im Footer */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    color: var(--white);
    background: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    transition: all var(--transition);
    box-sizing: border-box;
    flex-shrink: 0;
}
.footer-social a:hover {
    background: var(--white);
    color: var(--gold);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.25);
}
.footer-social svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
    flex-shrink: 0;
}
.footer-brand p { font-size: 0.95rem; line-height: 1.7; color: rgba(255, 255, 255, 0.7); }
.footer-brand .tagline { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; font-style: italic; margin-top: 14px; }

.footer-col h4 {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; transition: all 0.2s; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact li {
    padding-left: 28px;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.6;
}
.footer-contact .icon {
    position: absolute;
    left: 0; top: 3px;
    color: var(--gold);
}

.footer-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 22px;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all var(--transition);
}
.footer-maps-btn:hover {
    background: var(--white);
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    padding-left: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Selection */
::selection { background: var(--gold); color: var(--white); }

/* Print */
@media print {
    .site-header, .site-footer, .cta, .btn { display: none; }
    body { color: #000; }
}

/* ============================================
   COOKIE-CONSENT
   ============================================ */
#kp-cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-top: 3px solid var(--gold);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    max-width: 1100px;
    margin: 0 auto;
}
#kp-cookie-banner.kp-show {
    transform: translateY(0);
    opacity: 1;
}
#kp-cookie-banner.kp-hide {
    transform: translateY(120%);
    opacity: 0;
}
.kp-cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 22px 28px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    #kp-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    .kp-cookie-banner-inner {
        padding: 18px 20px;
        gap: 16px;
    }
}
.kp-cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}
.kp-cookie-text strong {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--serif);
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}
.kp-cookie-text a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.kp-cookie-text a:hover {
    color: var(--white);
}
.kp-cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 540px) {
    .kp-cookie-actions {
        width: 100%;
    }
    .kp-cookie-actions button {
        flex: 1;
        min-width: 120px;
    }
}
.kp-cookie-btn {
    padding: 10px 20px;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    line-height: 1;
}
.kp-cookie-btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.kp-cookie-btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
}
.kp-cookie-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.kp-cookie-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.kp-cookie-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.85rem;
    padding: 8px 12px;
}
.kp-cookie-btn-ghost:hover {
    color: var(--gold-light);
}

/* === MODAL === */
#kp-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#kp-cookie-modal.kp-show { opacity: 1; }
#kp-cookie-modal.kp-hide { opacity: 0; }

.kp-cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 42, 0.6);
    backdrop-filter: blur(4px);
}
.kp-cookie-modal-inner {
    position: relative;
    background: var(--white);
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--gold);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
#kp-cookie-modal.kp-show .kp-cookie-modal-inner { transform: translateY(0); }

.kp-cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px 16px;
    border-bottom: 1px solid var(--border);
}
.kp-cookie-modal-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--navy);
}
.kp-cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px 10px;
    border-radius: var(--radius);
    transition: all 0.2s;
}
.kp-cookie-modal-close:hover {
    background: var(--cream);
    color: var(--navy);
}

.kp-cookie-modal-body {
    padding: 22px 28px;
    overflow-y: auto;
    flex: 1;
}
.kp-cookie-modal-body > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.kp-cookie-category {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    align-items: flex-start;
}
.kp-cookie-category:first-of-type { border-top: none; padding-top: 0; }
.kp-cookie-category-text { flex: 1; }
.kp-cookie-category-text h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--navy);
    font-family: var(--sans);
    font-weight: 600;
}
.kp-cookie-tag {
    font-size: 0.7rem;
    background: var(--cream);
    color: var(--gold-dark);
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}
.kp-cookie-category-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Toggle Switch */
.kp-cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.kp-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.kp-cookie-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 24px;
    cursor: pointer;
    transition: 0.3s;
}
.kp-cookie-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.kp-cookie-switch input:checked + .kp-cookie-slider {
    background: var(--gold);
}
.kp-cookie-switch input:checked + .kp-cookie-slider::before {
    transform: translateX(20px);
}
.kp-cookie-switch-disabled .kp-cookie-slider {
    background: var(--gold);
    cursor: not-allowed;
    opacity: 0.6;
}
.kp-cookie-switch-disabled .kp-cookie-slider::before {
    transform: translateX(20px);
}

.kp-cookie-modal-footer {
    display: flex;
    gap: 12px;
    padding: 18px 28px 24px;
    border-top: 1px solid var(--border);
    justify-content: flex-end;
    flex-wrap: wrap;
    background: var(--cream);
    border-radius: 0 0 var(--radius) var(--radius);
}
.kp-cookie-modal-footer .kp-cookie-btn-outline {
    color: var(--navy);
    border-color: var(--navy);
}
.kp-cookie-modal-footer .kp-cookie-btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}
@media (max-width: 540px) {
    .kp-cookie-modal-footer { padding: 16px 20px; }
    .kp-cookie-modal-footer button { flex: 1; }
}
