/* ============================================
   RAABE-KRONBERG LEBENSHILFEN
   Editorial / Warm Residential Design
   ============================================ */

/* --- Font Face Declarations --- */
@font-face {
    font-family: 'Recoleta';
    src: url('../font/Recoleta-Thin.woff2') format('woff2'),
         url('../font/Recoleta-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Recoleta';
    src: url('../font/Recoleta-Light.woff2') format('woff2'),
         url('../font/Recoleta-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Recoleta';
    src: url('../font/Recoleta-Regular.woff2') format('woff2'),
         url('../font/Recoleta-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Recoleta';
    src: url('../font/Recoleta-Medium.woff2') format('woff2'),
         url('../font/Recoleta-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Recoleta';
    src: url('../font/Recoleta-SemiBold.woff2') format('woff2'),
         url('../font/Recoleta-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Recoleta';
    src: url('../font/Recoleta-Bold.woff2') format('woff2'),
         url('../font/Recoleta-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Recoleta';
    src: url('../font/Recoleta-Black.woff2') format('woff2'),
         url('../font/Recoleta-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'RecoletaAlt';
    src: url('../font/RecoletaAlt-Regular.woff2') format('woff2'),
         url('../font/RecoletaAlt-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'RecoletaAlt';
    src: url('../font/RecoletaAlt-Medium.woff2') format('woff2'),
         url('../font/RecoletaAlt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'RecoletaAlt';
    src: url('../font/RecoletaAlt-Bold.woff2') format('woff2'),
         url('../font/RecoletaAlt-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Custom Properties --- */
:root {
    --plum: #8E3B6B;
    --plum-dark: #6B2D52;
    --plum-deep: #5A2444;
    --pink: #EE5FA1;
    --pink-light: #FBD8E6;
    --pink-lighter: #FFF0F5;
    --brand: #BC4C85;

    --white: #FFFFFF;
    --cream: #FAF6F2;
    --cream-warm: #F5EDE5;
    --sand: #EDE4DA;
    --earth-100: #E8DDD4;
    --earth-200: #D4C5B7;
    --earth-300: #B8A594;
    --earth-400: #8C7568;
    --earth-500: #6B5549;
    --earth-600: #4A3830;
    --earth-700: #2D2220;
    --earth-800: #1A1210;

    --font-display: 'Recoleta', Georgia, serif;
    --font-alt: 'RecoletaAlt', Georgia, serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --nav-height: 72px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(142,59,107,.06);
    --shadow-md: 0 8px 30px rgba(142,59,107,.08);
    --shadow-lg: 0 20px 60px rgba(142,59,107,.10);
    --shadow-img: 0 12px 40px rgba(26,18,16,.12);

    --transition: .35s cubic-bezier(.4,0,.2,1);
    --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-700);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: var(--transition);
    background: transparent;
}
/* Scrolled bg + blur lives on a pseudo so .nav never creates
   a containing block (which would break position:fixed children). */
.nav.scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250,246,242,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
}
.nav.scrolled {
    box-shadow: 0 1px 0 rgba(142,59,107,.06);
}
.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo-img {
    height: 36px;
    width: auto;
    transition: var(--transition);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
/* Default (over hero): white links for contrast */
.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .9rem;
    color: var(--white);
    position: relative;
    transition: var(--transition);
    letter-spacing: .01em;
    text-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--pink-light); }

/* Scrolled state: dark links on light bg */
.nav.scrolled .nav-link {
    color: var(--earth-600);
    text-shadow: none;
}
.nav.scrolled .nav-link::after {
    background: var(--brand);
}
.nav.scrolled .nav-link:hover {
    color: var(--plum);
}

/* Nav CTA */
.btn-nav {
    background: var(--white);
    color: var(--plum) !important;
    padding: .55rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: .85rem;
    transition: var(--transition);
    text-shadow: none !important;
}
.nav.scrolled .btn-nav {
    background: var(--plum);
    color: var(--white) !important;
}
.btn-nav::after { display: none; }
.btn-nav:hover {
    background: var(--plum);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.nav.scrolled .btn-nav:hover {
    background: var(--plum-dark);
}

/* Nav logo: filter to white when over hero */
.nav .nav-logo-img {
    filter: brightness(0) invert(1);
    transition: var(--transition);
}
.nav.scrolled .nav-logo-img {
    filter: none;
}

/* Hamburger */
.nav-toggle { display: none; width: 32px; height: 32px; position: relative; z-index: 10; }
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    position: absolute;
    left: 5px;
}
.nav.scrolled .hamburger,
.nav.scrolled .hamburger::before,
.nav.scrolled .hamburger::after {
    background: var(--earth-700);
}
.hamburger { top: 15px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--plum);
    color: var(--white);
    padding: .75rem 2rem;
    box-shadow: 0 4px 14px rgba(142,59,107,.2);
}
.btn-primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(142,59,107,.25);
}
.btn-outline {
    border: 2px solid var(--earth-200);
    color: var(--earth-600);
    padding: .65rem 1.8rem;
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--plum);
    color: var(--plum);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--plum);
    padding: .75rem 2rem;
    box-shadow: var(--shadow-sm);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-lg { padding: .85rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION COMMON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section {
    padding: clamp(4rem, 10vw, 7rem) 0;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-alt);
    font-weight: 500;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .75rem;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    color: var(--earth-800);
    margin-bottom: 1rem;
}
.section-title em {
    font-style: normal;
    color: var(--plum);
}
.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--earth-400);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — Full-image editorial cover
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(26,18,16,.7) 0%, rgba(26,18,16,.2) 45%, transparent 70%),
        linear-gradient(180deg, rgba(26,18,16,.3) 0%, transparent 30%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(3rem, 8vw, 6rem);
    padding-top: calc(var(--nav-height) + 3rem);
    width: 100%;
}
.hero-inner {
    max-width: 720px;
    background: rgba(26, 18, 16, .3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,.08);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-full);
    padding: .4rem 1.2rem;
    font-family: var(--font-alt);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pink-light);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.2rem;
}
.hero-title .accent {
    color: var(--plum);
}
.hero-logo {
    display: block;
    max-width: 340px;
    height: auto;
    margin-bottom: .5rem;
    filter: brightness(0) invert(1);
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin-bottom: 2rem;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-cta .btn-primary {
    background: var(--white);
    color: var(--plum);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.hero-cta .btn-primary:hover {
    background: var(--pink-light);
    color: var(--plum-dark);
}
.hero-cta .btn-outline {
    border-color: rgba(255,255,255,.35);
    color: var(--white);
}
.hero-cta .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INTRO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.intro {
    background: var(--white);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro-text h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    line-height: 1.2;
    color: var(--earth-800);
    margin-bottom: 1.5rem;
}
.intro-text h2 em {
    font-style: normal;
    color: var(--plum);
}
.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--earth-500);
    margin-bottom: 1.5rem;
}
.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--earth-100);
}
.stat-item h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--plum);
    line-height: 1;
    margin-bottom: .3rem;
}
.stat-item span {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--earth-400);
    font-weight: 500;
}
.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}
.intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-img);
}
.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.intro-img:hover img {
    transform: scale(1.04);
}
.intro-img.tall {
    grid-row: span 2;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VALUES / GRUNDWERTE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.values {
    background: var(--cream);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid var(--earth-100);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--plum));
    opacity: 0;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-light);
}
.value-card:hover::before { opacity: 1; }
.value-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: var(--pink-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--plum);
}
.value-card-icon svg {
    width: 26px; height: 26px;
}
.value-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--earth-800);
    margin-bottom: .75rem;
}
.value-card p {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--earth-400);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES / ANGEBOTE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services {
    background: var(--plum-deep);
    color: var(--white);
    overflow: hidden;
}
.services .section-tag { color: var(--pink); }
.services .section-title { color: var(--white); }
.services .section-title em { color: var(--pink-light); }
.services .section-subtitle { color: rgba(255,255,255,.6); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    transition: var(--transition);
    position: relative;
}
.service-card:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.15);
    transform: translateY(-4px);
}
.service-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--pink-light);
    opacity: .35;
    line-height: 1;
    margin-bottom: 1rem;
}
.service-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: .75rem;
}
.service-desc {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
}
.service-line {
    width: 40px; height: 2px;
    background: var(--pink);
    border-radius: 2px;
    margin-top: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-line { width: 60px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY — Photo grid
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery {
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: default;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 1rem .75rem;
    background: linear-gradient(0deg, rgba(26,18,16,.65), transparent);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .85rem;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.animals {
    background: var(--cream);
}
.animals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.animals-grid .animal-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}
.animal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--earth-100);
    transition: var(--transition);
    height: fit-content;
}
.animal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.animal-card-img {
    height: 260px;
    overflow: hidden;
}
.animal-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.animal-card:hover .animal-card-img img { transform: scale(1.05); }
.animal-card-body {
    padding: 1.5rem;
}
.animal-card-body h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--earth-800);
    margin-bottom: .25rem;
}
.animal-card-body .animal-breed {
    font-size: .85rem;
    color: var(--brand);
    font-weight: 500;
    margin-bottom: .5rem;
}
.animal-card-body p {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--earth-400);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   APPROACH
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.approach {
    background: var(--white);
    overflow: hidden;
}
.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.approach-text .section-tag { text-align: left; }
.approach-text h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    line-height: 1.2;
    color: var(--earth-800);
    margin-bottom: 1.2rem;
}
.approach-text h2 em {
    font-style: normal;
    color: var(--plum);
}
.approach-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--earth-500);
    margin-bottom: 2rem;
}
.pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.pillar {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.pillar-dot {
    flex-shrink: 0;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--pink);
    margin-top: .45rem;
}
.pillar h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--earth-700);
    margin-bottom: .25rem;
}
.pillar p {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--earth-400);
}
.approach-visual {
    position: relative;
}
.approach-quote-card {
    background: linear-gradient(135deg, var(--plum), var(--plum-dark));
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.approach-quote-card::before {
    content: '\201E';
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    color: rgba(255,255,255,.08);
    position: absolute;
    top: -.5rem; left: 1.5rem;
}
.approach-quote-card blockquote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.approach-quote-card cite {
    display: block;
    font-family: var(--font-alt);
    font-size: .85rem;
    font-style: normal;
    color: var(--pink-light);
    margin-top: 1.5rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ELTERNARBEIT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.elternarbeit {
    background: var(--cream);
}
.eltern-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.eltern-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--earth-600);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--brand);
}
.eltern-intro strong {
    color: var(--plum);
}
.eltern-values h3,
.eltern-konkret h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--earth-800);
    margin-bottom: 1.25rem;
}
.eltern-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.eltern-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--earth-600);
}
.eltern-list-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--pink-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-top: 2px;
}
.eltern-list-icon svg {
    width: 14px; height: 14px;
}
.eltern-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
.eltern-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid var(--earth-100);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.eltern-card:hover {
    border-color: var(--pink-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.eltern-card-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}
.eltern-card p {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--earth-500);
    margin: 0;
}
.eltern-quote {
    background: linear-gradient(135deg, var(--plum), var(--plum-dark));
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}
.eltern-quote p {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.eltern-quote .btn-primary {
    background: var(--white);
    color: var(--plum);
}
.eltern-quote .btn-primary:hover {
    background: var(--pink-light);
    color: var(--plum-dark);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BANNER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-banner-section {
    background: var(--cream);
    padding: clamp(2rem, 5vw, 4rem) 0;
}
.cta-banner {
    background:
        linear-gradient(135deg, var(--plum) 0%, var(--brand) 60%, var(--pink) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 6vw, 4.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: var(--white);
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.2;
    margin-bottom: .75rem;
}
.cta-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    max-width: 480px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact {
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}
.contact-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--pink-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    color: var(--earth-700);
    margin-bottom: .15rem;
}
.contact-item p {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--earth-400);
    overflow-wrap: break-word;
    word-break: break-word;
}
.contact-item a {
    color: var(--brand);
    transition: var(--transition);
}
.contact-item a:hover { color: var(--plum); }

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.form-group label {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .85rem;
    color: var(--earth-600);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .95rem;
    padding: .75rem 1rem;
    border: 1px solid var(--earth-200);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--earth-700);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(188,76,133,.08);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-check {
    flex-direction: row;
    align-items: flex-start;
    gap: .6rem;
}
.form-check input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: .15rem;
    flex-shrink: 0;
    accent-color: var(--plum);
}
.form-check label {
    font-size: .82rem;
    line-height: 1.5;
    color: var(--earth-400);
}
.form-check a { color: var(--brand); text-decoration: underline; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
    background: var(--earth-800);
    color: rgba(255,255,255,.6);
    padding: 4rem 0 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: .8;
}
.footer-brand p {
    font-size: .9rem;
    line-height: 1.6;
}
.footer-links h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    font-size: .9rem;
    margin-bottom: 1rem;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    font-size: .85rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--pink-light); }
.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    font-size: .8rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COOKIE BANNER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.2rem clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--earth-100);
    box-shadow: 0 -4px 20px rgba(0,0,0,.06);
}
.cookie-content p {
    font-size: .85rem;
    color: var(--earth-500);
    line-height: 1.5;
}
.cookie-content a { color: var(--brand); text-decoration: underline; }
.cookie-actions {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
}
.cookie-actions .btn { font-size: .82rem; padding: .5rem 1.2rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LEGAL PAGES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.legal-page {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 4rem;
    min-height: 70vh;
    background: var(--white);
}
.legal-page .section-header { margin-bottom: 2.5rem; }
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--earth-800);
    margin: 2.5rem 0 .75rem;
}
.legal-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--earth-700);
    margin: 2rem 0 .5rem;
}
.legal-content p {
    margin-bottom: 1rem;
    color: var(--earth-500);
    line-height: 1.8;
}
.legal-content a { color: var(--brand); text-decoration: underline; }
.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content li {
    margin-bottom: .5rem;
    color: var(--earth-500);
    line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL REVEAL – JS IntersectionObserver driven
   Content visible by default; .animate-in triggers the transition
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.reveal-left {
    transform: translateX(-40px) translateY(0);
}
.reveal.reveal-right {
    transform: translateX(40px) translateY(0);
}
.reveal.animate-in {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
/* Stagger children in grids */
.values-grid .reveal:nth-child(2) { transition-delay: .1s; }
.values-grid .reveal:nth-child(3) { transition-delay: .2s; }
.values-grid .reveal:nth-child(4) { transition-delay: .3s; }
.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5) { transition-delay: .32s; }
.services-grid .reveal:nth-child(6) { transition-delay: .4s; }
.animals-grid .reveal:nth-child(2) { transition-delay: .08s; }
.animals-grid .reveal:nth-child(3) { transition-delay: .16s; }
.animals-grid .reveal:nth-child(4) { transition-delay: .24s; }
.animals-grid .reveal:nth-child(5) { transition-delay: .32s; }
.animals-grid .reveal:nth-child(6) { transition-delay: .4s; }
.animals-grid .reveal:nth-child(7) { transition-delay: .48s; }
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s ease forwards;
}
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
    .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro-images { order: -1; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .animals-grid { grid-template-columns: 1fr 1fr; }
    .animals-grid .animal-card:last-child:nth-child(3n+1) { grid-column: auto; }
    .approach-layout { grid-template-columns: 1fr; gap: 3rem; }
    .eltern-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; z-index: 1002; }

    /* Mobile menu overlay — completely independent of .nav.
       position:fixed works fine because .nav has no backdrop-filter. */
    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1001;
        padding-top: var(--nav-height);
        display: flex;
        opacity: 0;
        visibility: hidden;
        background: rgba(250,246,242,.82);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        transition: opacity .4s ease, visibility .4s ease;
        pointer-events: none;
    }
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    /* Links: slide up + fade in on open */
    .nav-menu > li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .3s ease, transform .3s ease;
    }
    .nav-menu.active > li {
        opacity: 1;
        transform: translateY(0);
    }
    /* Stagger on open */
    .nav-menu.active > li:nth-child(1) { transition-delay: .05s; }
    .nav-menu.active > li:nth-child(2) { transition-delay: .1s; }
    .nav-menu.active > li:nth-child(3) { transition-delay: .12s; }
    .nav-menu.active > li:nth-child(4) { transition-delay: .16s; }
    .nav-menu.active > li:nth-child(5) { transition-delay: .2s; }
    .nav-menu.active > li:nth-child(6) { transition-delay: .24s; }
    .nav-menu.active > li:nth-child(7) { transition-delay: .28s; }
    /* On close: all links fade out together, fast */
    .nav-menu:not(.active) > li {
        transition-delay: 0s;
        transition-duration: .2s;
    }
    /* Dark X: only ::before/::after rotate; middle line stays transparent */
    .nav-toggle.active .hamburger::before,
    .nav-toggle.active .hamburger::after {
        background: var(--earth-700);
    }
    .nav-menu .nav-link {
        font-size: 1.4rem;
        color: var(--earth-700);
        text-shadow: none;
        font-weight: 600;
    }
    .nav-menu .nav-link:hover { color: var(--plum); }
    .nav-menu .nav-link::after { background: var(--brand); }
    .nav-menu .btn-nav {
        font-size: 1rem !important;
        background: var(--plum);
        color: var(--white) !important;
        margin-top: .5rem;
    }

    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-logo { max-width: 260px; }

    .values-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .animals-grid { grid-template-columns: 1fr; }
    .animals-grid .animal-card:last-child:nth-child(3n+1) { grid-column: auto; }
    .animal-card { display: grid; grid-template-columns: 140px 1fr; align-items: stretch; border-radius: var(--radius-lg); }
    .animal-card-img { height: 100%; min-height: 0; aspect-ratio: auto; overflow: hidden; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
    .animal-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
    .animal-card-body { padding: 1rem; }
    .animal-card-body h3 { font-size: 1rem; }
    .animal-card-body p { font-size: .85rem; }
    .intro-images { grid-template-columns: 1fr 1fr; }
    .intro-stats { grid-template-columns: repeat(3, 1fr); }
    .eltern-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }

    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .intro-images { grid-template-columns: 1fr; }
    .intro-img.tall { grid-row: span 1; }
    .intro-stats { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DARK MODE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (prefers-color-scheme: dark) {

    /* --- Override custom properties --- */
    :root {
        --plum: #C46A9B;
        --plum-dark: #A65680;
        --plum-deep: #3A1E2E;
        --pink: #EE5FA1;
        --pink-light: #E8A3C4;
        --pink-lighter: rgba(142,59,107,.18);
        --brand: #D4699F;

        --white: #1A1A1E;
        --cream: #121214;
        --cream-warm: #1E1E22;
        --sand: #2A2A2E;
        --earth-100: #2E2E32;
        --earth-200: #3A3A3E;
        --earth-300: #6B6B70;
        --earth-400: #A0A0A6;
        --earth-500: #B8B8BE;
        --earth-600: #D0D0D6;
        --earth-700: #E8E8EC;
        --earth-800: #F5F5F8;

        --shadow-sm: 0 2px 8px rgba(0,0,0,.2);
        --shadow-md: 0 8px 30px rgba(0,0,0,.3);
        --shadow-lg: 0 20px 60px rgba(0,0,0,.4);
        --shadow-img: 0 12px 40px rgba(0,0,0,.35);
    }

    /* --- Body text readable on dark bg --- */
    body {
        -webkit-font-smoothing: auto;
    }

    /* --- Navigation --- */
    .nav.scrolled::before {
        background: rgba(18,18,20,.88);
    }
    .nav.scrolled {
        box-shadow: 0 1px 0 rgba(255,255,255,.06);
    }
    /* Nav links over hero: keep light */
    .nav-link {
        color: #F5F5F8;
        text-shadow: 0 1px 3px rgba(0,0,0,.5);
    }
    .nav-link::after {
        background: #F5F5F8;
    }
    .nav.scrolled .nav-link {
        text-shadow: none;
    }
    /* Logo stays visible on dark scrolled bg */
    .nav.scrolled .nav-logo-img {
        filter: brightness(0) invert(1);
    }
    /* Hamburger lines dark mode */
    .nav.scrolled .hamburger,
    .nav.scrolled .hamburger::before,
    .nav.scrolled .hamburger::after {
        background: #E8E8EC;
    }

    /* --- Buttons --- */
    .btn-primary {
        color: #F5F5F8;
        box-shadow: 0 4px 14px rgba(196,106,155,.25);
    }
    .btn-primary:hover {
        color: #F5F5F8;
        box-shadow: 0 8px 24px rgba(196,106,155,.35);
    }
    .btn-outline {
        border-color: #3A3A3E;
        color: #D0D0D6;
    }
    .btn-white {
        background: #1A1A1E;
        color: var(--plum);
    }
    .btn-nav {
        color: #F5F5F8 !important;
    }
    .nav.scrolled .btn-nav {
        color: #F5F5F8 !important;
    }

    /* --- Hero --- */
    .hero-title {
        color: #F5F5F8;
    }
    .hero-cta .btn-primary {
        background: rgba(255,255,255,.12);
        color: #F5F5F8;
        box-shadow: 0 4px 20px rgba(0,0,0,.3);
    }
    .hero-cta .btn-primary:hover {
        background: rgba(255,255,255,.2);
        color: #F5F5F8;
    }
    .hero-cta .btn-outline {
        color: #F5F5F8;
        border-color: rgba(255,255,255,.35);
    }
    .hero-cta .btn-outline:hover {
        color: #F5F5F8;
        border-color: #F5F5F8;
    }

    /* --- Cards (Value, Animal, Eltern) --- */
    .value-card,
    .animal-card,
    .eltern-card,
    .eltern-intro {
        background: #1E1E22;
        border-color: #2E2E32;
    }
    .value-card:hover,
    .animal-card:hover,
    .eltern-card:hover {
        border-color: rgba(196,106,155,.3);
        box-shadow: 0 8px 30px rgba(0,0,0,.3);
    }
    .value-card-icon,
    .eltern-list-icon,
    .contact-icon {
        background: rgba(196,106,155,.15);
    }

    /* --- Services (already dark, adjust slightly) --- */
    .services {
        background: #1A1420;
        color: #F5F5F8;
    }
    .services .section-title {
        color: #F5F5F8;
    }
    .services .section-title em {
        color: var(--pink-light);
    }
    .service-title {
        color: #F5F5F8;
    }
    .service-card {
        background: rgba(255,255,255,.04);
        border-color: rgba(255,255,255,.06);
    }
    .service-card:hover {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.12);
    }

    /* --- Gallery --- */
    .gallery-item {
        box-shadow: 0 2px 8px rgba(0,0,0,.3);
    }

    /* --- Approach quote card --- */
    .approach-quote-card {
        background: linear-gradient(135deg, #3A1E2E, #2A1520);
        color: #F5F5F8;
    }

    /* --- Gallery captions --- */
    .gallery-item .gallery-caption {
        color: #F5F5F8;
    }

    /* --- Eltern quote --- */
    .eltern-quote {
        background: linear-gradient(135deg, #3A1E2E, #2A1520);
    }

    /* --- CTA Banner --- */
    .cta-banner {
        background: linear-gradient(135deg, #3A1E2E 0%, rgba(196,106,155,.3) 60%, rgba(238,95,161,.2) 100%);
        color: #F5F5F8;
    }
    .cta-banner .btn-white {
        color: var(--plum);
    }

    /* --- Contact form --- */
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #1E1E22;
        border-color: #3A3A3E;
        color: #E8E8EC;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(196,106,155,.15);
        background: #252528;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #6B6B70;
    }

    /* --- Footer (already dark, deepen slightly) --- */
    .footer {
        background: #0E0E10;
    }
    .footer-top {
        border-bottom-color: rgba(255,255,255,.06);
    }
    .footer-links h4 {
        color: #F5F5F8;
    }

    /* --- Cookie banner --- */
    .cookie-content {
        background: #1E1E22;
        border-top-color: #2E2E32;
        box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    }

    /* --- Legal pages --- */
    .legal-page {
        background: #121214;
    }

    /* --- Scroll reveal --- */
    .intro-img {
        box-shadow: 0 12px 40px rgba(0,0,0,.35);
    }

    /* --- Intro stats border --- */
    .intro-stats {
        border-top-color: #2E2E32;
    }

    /* --- Mobile menu overlay --- */
    @media (max-width: 768px) {
        .nav-menu {
            background: rgba(18,18,20,.88);
        }
        .nav-toggle.active .hamburger::before,
        .nav-toggle.active .hamburger::after {
            background: #E8E8EC;
        }
        .nav-menu .nav-link {
            color: #E8E8EC;
        }
        .nav-menu .nav-link:hover {
            color: var(--plum);
        }
    }

    /* --- Selection color --- */
    ::selection {
        background: rgba(196,106,155,.3);
        color: #F5F5F8;
    }
}
