/*
Theme Name: BeweegKompas
Theme URI: https://beweegkompas.nl
Description: Premium wellness magazine theme for BeweegKompas.nl - Modern editorial design for movement health content.
Author: SeedInov
Author URI: https://seedinov.com
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beweegkompas
Tags: health, magazine, wellness, dutch, editorial, responsive, modern
*/


/* =================================================================
   1. CSS CUSTOM PROPERTIES - Magazine Palette
   ================================================================= */

:root {
    /* Primary - Emerald */
    --bk-emerald: #059669;
    --bk-emerald-dark: #047857;
    --bk-emerald-light: #10B981;
    --bk-emerald-50: #ECFDF5;
    --bk-emerald-100: #D1FAE5;
    --bk-emerald-200: #A7F3D0;

    /* Warm Cream Palette */
    --bk-cream: #FAFAF5;
    --bk-cream-dark: #F0F0E8;
    --bk-cream-warm: #F5F3ED;
    --bk-sage: #E8EDE5;
    --bk-sage-dark: #D4DDD0;

    /* Text */
    --bk-heading: #1a2e1a;
    --bk-body: #4a5a4a;
    --bk-muted: #6b7b6b;
    --bk-light: #8a9a8a;

    /* Surfaces */
    --bk-white: #ffffff;
    --bk-border: #dde5da;
    --bk-border-light: #e8ede5;

    /* Typography */
    --bk-font-h: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bk-font-b: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Radii - Organic */
    --bk-radius: 20px;
    --bk-radius-lg: 28px;
    --bk-radius-sm: 14px;
    --bk-radius-xs: 10px;
    --bk-radius-pill: 9999px;

    /* Layout */
    --bk-max-w: 1200px;
    --bk-max-reading: 680px;

    /* Shadows - Organic, warm */
    --bk-shadow-sm: 0 2px 8px rgba(26,46,26,0.04);
    --bk-shadow: 0 4px 16px rgba(26,46,26,0.06);
    --bk-shadow-md: 0 8px 30px rgba(26,46,26,0.08);
    --bk-shadow-lg: 0 12px 40px rgba(26,46,26,0.10);
    --bk-shadow-hover: 0 12px 36px rgba(5,150,105,0.10);

    /* Transitions */
    --bk-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --bk-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --bk-dur: 350ms;
    --bk-dur-fast: 200ms;

    /* Z-index */
    --bk-z-header: 100;
    --bk-z-mobile: 200;
    --bk-z-overlay: 150;
}


/* =================================================================
   2. ANIMATIONS - Unique to BeweegKompas
   ================================================================= */

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

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(20px) rotateX(-10deg);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 40% 50% 60% 50%; }
    75% { border-radius: 40% 50% 60% 50% / 60% 40% 50% 60%; }
}

@keyframes pillSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal base states */
.bk-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--bk-ease), transform 0.7s var(--bk-ease);
}

.bk-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.bk-reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--bk-ease), transform 0.6s var(--bk-ease);
}

.bk-reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.bk-reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.bk-reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.bk-reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.bk-reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.bk-reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }


/* =================================================================
   3. RESET & BASE
   ================================================================= */

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

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

body {
    font-family: var(--bk-font-b);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--bk-body);
    background-color: var(--bk-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bk-font-h);
    color: var(--bk-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--bk-emerald);
    text-decoration: none;
    transition: color var(--bk-dur-fast) var(--bk-ease);
}

a:hover { color: var(--bk-emerald-dark); }

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

ul, ol { padding-left: 1.5rem; }
strong, b { font-weight: 600; }

::selection {
    background-color: var(--bk-emerald-100);
    color: var(--bk-emerald-dark);
}


/* =================================================================
   4. LAYOUT
   ================================================================= */

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

.container {
    width: 100%;
    max-width: var(--bk-max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


/* =================================================================
   5. SKIP LINK
   ================================================================= */

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--bk-emerald);
    color: var(--bk-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--bk-radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 1rem;
    color: var(--bk-white);
}


/* =================================================================
   6. HEADER - Centered Magazine Style
   ================================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: var(--bk-z-header);
    background: rgba(250, 250, 245, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: box-shadow var(--bk-dur) var(--bk-ease);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(26,46,26,0.06);
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0;
    gap: 0.75rem;
}

/* Logo - Centered */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--bk-heading);
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bk-emerald);
    color: var(--bk-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.logo-text {
    font-family: var(--bk-font-h);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text-accent {
    color: var(--bk-emerald);
}

/* Navigation - Horizontal pills below logo */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bk-body);
    border-radius: var(--bk-radius-pill);
    transition: all var(--bk-dur-fast) var(--bk-ease);
    white-space: nowrap;
    text-decoration: none;
}

.nav-link:hover {
    background: var(--bk-sage);
    color: var(--bk-heading);
}

.nav-link.active {
    background: var(--bk-emerald-50);
    color: var(--bk-emerald-dark);
    font-weight: 600;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bk-white);
    background: var(--bk-emerald);
    border-radius: var(--bk-radius-pill);
    transition: all var(--bk-dur-fast) var(--bk-ease);
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--bk-emerald-dark);
    color: var(--bk-white);
    transform: scale(1.02);
}

.nav-cta svg {
    width: 14px;
    height: 14px;
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bk-heading);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--bk-radius-xs);
    transition: background var(--bk-dur-fast);
}

.mobile-menu-toggle:hover {
    background: var(--bk-sage);
}

/* Mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,46,26,0.3);
    backdrop-filter: blur(4px);
    z-index: var(--bk-z-overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--bk-dur) var(--bk-ease);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile slide-in menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bk-cream);
    z-index: var(--bk-z-mobile);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: right var(--bk-dur) var(--bk-ease);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bk-border);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--bk-heading);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background var(--bk-dur-fast);
}

.mobile-menu-close:hover {
    background: var(--bk-sage);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--bk-body);
    border-radius: var(--bk-radius-sm);
    transition: all var(--bk-dur-fast);
    text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--bk-emerald-50);
    color: var(--bk-emerald-dark);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bk-white);
    background: var(--bk-emerald);
    border-radius: var(--bk-radius-pill);
    text-decoration: none;
    transition: all var(--bk-dur-fast);
}

.mobile-menu-cta:hover {
    background: var(--bk-emerald-dark);
    color: var(--bk-white);
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem 0;
    }
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
}


/* =================================================================
   7. HERO - Editorial Split Layout
   ================================================================= */

.hero-section {
    background: var(--bk-cream);
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 420px;
}

.hero-text {
    animation: fadeUp 0.8s var(--bk-ease) both;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--bk-emerald);
    background: var(--bk-emerald-50);
    border-radius: var(--bk-radius-pill);
    margin-bottom: 1.25rem;
}

.hero-label svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--bk-heading);
    margin-bottom: 1.25rem;
}

.hero-title .word {
    display: inline-block;
    animation: wordReveal 0.6s var(--bk-ease) both;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.25s; }
.hero-title .word:nth-child(3) { animation-delay: 0.4s; }

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--bk-muted);
    margin-bottom: 2rem;
    max-width: 440px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bk-white);
    background: var(--bk-emerald);
    border-radius: var(--bk-radius-pill);
    text-decoration: none;
    transition: all var(--bk-dur) var(--bk-ease);
    box-shadow: 0 4px 16px rgba(5,150,105,0.2);
}

.hero-cta:hover {
    background: var(--bk-emerald-dark);
    color: var(--bk-white);
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(5,150,105,0.3);
}

.hero-cta svg {
    width: 16px;
    height: 16px;
}

/* Decorative illustration area */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    animation: fadeUp 0.8s var(--bk-ease) 0.3s both;
}

.hero-blob {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--bk-emerald-100), var(--bk-emerald-200));
    animation: blobMorph 12s ease-in-out infinite;
    opacity: 0.7;
}

.hero-blob-secondary {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--bk-emerald-50), var(--bk-sage));
    border-radius: 50%;
    top: 10%;
    right: 5%;
    animation: floatGentle 6s ease-in-out infinite;
}

.hero-leaf {
    position: relative;
    z-index: 2;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-leaf svg {
    width: 120px;
    height: 120px;
    color: var(--bk-emerald);
    opacity: 0.5;
    animation: floatGentle 5s ease-in-out 1s infinite;
}

@media (max-width: 768px) {
    .hero-section { padding: 2.5rem 0 2rem; }
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    .hero-visual {
        min-height: 220px;
        order: -1;
    }
    .hero-blob { width: 200px; height: 200px; }
    .hero-blob-secondary { width: 120px; height: 120px; }
    .hero-subtitle { max-width: 100%; }
}


/* =================================================================
   8. CATEGORY PILLS - Horizontal scrolling
   ================================================================= */

.category-pills-section {
    padding: 2rem 0 1rem;
    background: var(--bk-cream);
}

.category-pills-row {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
}

.category-pills-row::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bk-body);
    background: var(--bk-white);
    border: 1.5px solid var(--bk-border);
    border-radius: var(--bk-radius-pill);
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--bk-dur-fast) var(--bk-ease);
    flex-shrink: 0;
}

.category-pill:hover {
    background: var(--bk-emerald-50);
    border-color: var(--bk-emerald-light);
    color: var(--bk-emerald-dark);
    transform: scale(1.02);
}

.category-pill.active {
    background: var(--bk-emerald);
    color: var(--bk-white);
    border-color: var(--bk-emerald);
}

.category-pill svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.category-pill-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bk-light);
    margin-left: 0.15rem;
}


/* =================================================================
   9. MAGAZINE ARTICLE GRID
   ================================================================= */

.magazine-section {
    padding: 2.5rem 0 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bk-emerald);
    margin-bottom: 0.5rem;
}

.section-label svg {
    width: 15px;
    height: 15px;
}

.section-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    color: var(--bk-heading);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--bk-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 560px;
}

/* Featured Article - Full width, horizontal */
.featured-article {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--bk-white);
    border-radius: var(--bk-radius-lg);
    overflow: hidden;
    box-shadow: var(--bk-shadow);
    transition: transform var(--bk-dur) var(--bk-ease), box-shadow var(--bk-dur) var(--bk-ease);
    margin-bottom: 2rem;
}

.featured-article:hover {
    transform: scale(1.02);
    box-shadow: var(--bk-shadow-hover);
}

.featured-article-image {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: linear-gradient(135deg, var(--bk-emerald-100), var(--bk-sage));
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--bk-ease);
}

.featured-article:hover .featured-article-image img {
    transform: scale(1.05);
}

.featured-article-image .article-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bk-white);
    background: var(--bk-emerald);
    border-radius: var(--bk-radius-pill);
    letter-spacing: 0.02em;
}

.featured-article-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.featured-article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--bk-emerald);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.featured-article-category:hover {
    color: var(--bk-emerald-dark);
}

.featured-article-title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.featured-article-title a {
    color: var(--bk-heading);
    text-decoration: none;
    transition: color var(--bk-dur-fast);
}

.featured-article-title a:hover {
    color: var(--bk-emerald);
}

.featured-article-excerpt {
    color: var(--bk-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.featured-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--bk-light);
}

.featured-article-meta svg {
    width: 14px;
    height: 14px;
    margin-right: 0.25rem;
}

.featured-article-meta span {
    display: inline-flex;
    align-items: center;
}

/* 2x2 Article Grid */
.articles-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Article Card - Magazine style */
.mag-card {
    background: var(--bk-white);
    border-radius: var(--bk-radius);
    overflow: hidden;
    box-shadow: var(--bk-shadow-sm);
    transition: transform var(--bk-dur) var(--bk-ease), box-shadow var(--bk-dur) var(--bk-ease);
}

.mag-card:hover {
    transform: scale(1.02);
    box-shadow: var(--bk-shadow-hover);
}

.mag-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, var(--bk-sage), var(--bk-emerald-100));
}

.mag-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--bk-ease);
}

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

.mag-card-image .mag-card-category {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bk-white);
    background: rgba(5,150,105,0.85);
    border-radius: var(--bk-radius-pill);
    backdrop-filter: blur(4px);
}

.mag-card-body {
    padding: 1.25rem 1.4rem 1.4rem;
}

.mag-card-title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.mag-card-title a {
    color: var(--bk-heading);
    text-decoration: none;
    transition: color var(--bk-dur-fast);
}

.mag-card-title a:hover {
    color: var(--bk-emerald);
}

.mag-card-excerpt {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--bk-muted);
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mag-card-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.78rem;
    color: var(--bk-light);
}

.mag-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.mag-card-meta svg {
    width: 13px;
    height: 13px;
}

/* View all link */
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2rem;
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bk-emerald);
    background: var(--bk-emerald-50);
    border-radius: var(--bk-radius-pill);
    text-decoration: none;
    transition: all var(--bk-dur-fast) var(--bk-ease);
}

.view-all-link:hover {
    background: var(--bk-emerald-100);
    color: var(--bk-emerald-dark);
    transform: scale(1.02);
}

.view-all-link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    .featured-article-image { min-height: 220px; }
    .featured-article-body { padding: 1.5rem; }
    .articles-grid-2x2 {
        grid-template-columns: 1fr;
    }
}


/* =================================================================
   10. CTA SECTION - Soft & Rounded
   ================================================================= */

.cta-section {
    padding: 3rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--bk-emerald-50), var(--bk-cream-warm));
    border-radius: var(--bk-radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-card-content p {
    color: var(--bk-muted);
    margin-bottom: 0;
    max-width: 480px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bk-white);
    background: var(--bk-emerald);
    border-radius: var(--bk-radius-pill);
    text-decoration: none;
    transition: all var(--bk-dur) var(--bk-ease);
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-btn:hover {
    background: var(--bk-emerald-dark);
    color: var(--bk-white);
    transform: scale(1.02);
}

.cta-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .cta-card-content p { max-width: 100%; }
}


/* =================================================================
   11. FOOTER - Cream/Green Magazine
   ================================================================= */

.site-footer {
    background: var(--bk-cream-warm);
    border-top: 1px solid var(--bk-border);
    padding: 3.5rem 0 0;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bk-emerald);
    color: var(--bk-white);
    border-radius: 50%;
}

.footer-logo-icon svg {
    width: 18px;
    height: 18px;
}

.footer-logo-text {
    font-family: var(--bk-font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bk-heading);
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--bk-muted);
}

/* Footer headings */
.footer-heading {
    font-family: var(--bk-font-h);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bk-heading);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

/* Footer nav links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.88rem;
    color: var(--bk-muted);
    text-decoration: none;
    transition: color var(--bk-dur-fast);
}

.footer-nav a:hover {
    color: var(--bk-emerald);
}

.footer-nav a svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

/* Newsletter */
.newsletter-desc {
    font-size: 0.85rem;
    color: var(--bk-muted);
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-family: var(--bk-font-b);
    border: 1.5px solid var(--bk-border);
    border-radius: var(--bk-radius-pill);
    background: var(--bk-white);
    color: var(--bk-heading);
    outline: none;
    transition: border-color var(--bk-dur-fast);
}

.newsletter-input::placeholder {
    color: var(--bk-light);
}

.newsletter-input:focus {
    border-color: var(--bk-emerald);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bk-emerald);
    color: var(--bk-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--bk-dur-fast);
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: var(--bk-emerald-dark);
}

.newsletter-btn svg {
    width: 16px;
    height: 16px;
}

.newsletter-privacy {
    font-size: 0.75rem;
    color: var(--bk-light);
    margin-top: 0.5rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-top: 1px solid var(--bk-border);
    font-size: 0.8rem;
    color: var(--bk-light);
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
}

.footer-legal-link {
    color: var(--bk-light);
    text-decoration: none;
    transition: color var(--bk-dur-fast);
}

.footer-legal-link:hover {
    color: var(--bk-emerald);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand { max-width: 100%; }
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}


/* =================================================================
   12. SINGLE POST - Editorial Reading Experience
   ================================================================= */

.single-layout {
    display: grid;
    grid-template-columns: auto minmax(0, var(--bk-max-reading)) auto;
    gap: 0;
    padding: 2rem 1.5rem;
    max-width: calc(var(--bk-max-reading) + 300px);
    margin: 0 auto;
}

.single-toc {
    position: sticky;
    top: 100px;
    align-self: start;
    width: 200px;
    padding-right: 2rem;
}

.single-toc-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bk-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.single-toc-title svg {
    width: 14px;
    height: 14px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.25rem;
}

.toc-list a {
    display: block;
    padding: 0.3rem 0.6rem;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--bk-muted);
    text-decoration: none;
    border-left: 2px solid transparent;
    border-radius: 0 var(--bk-radius-xs) var(--bk-radius-xs) 0;
    transition: all var(--bk-dur-fast);
}

.toc-list a:hover {
    color: var(--bk-emerald);
    background: var(--bk-emerald-50);
}

.toc-list a.active {
    color: var(--bk-emerald);
    border-left-color: var(--bk-emerald);
    background: var(--bk-emerald-50);
    font-weight: 500;
}

.toc-list a.toc-h3 {
    padding-left: 1.2rem;
    font-size: 0.75rem;
}

.single-content {
    min-width: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--bk-light);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--bk-muted);
    text-decoration: none;
    transition: color var(--bk-dur-fast);
}

.breadcrumbs a:hover {
    color: var(--bk-emerald);
}

.breadcrumbs .sep {
    color: var(--bk-border);
}

.breadcrumbs .current {
    color: var(--bk-body);
}

/* Article header */
.article-header {
    margin-bottom: 2rem;
}

.article-category-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.article-category-tag a {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bk-emerald);
    background: var(--bk-emerald-50);
    border-radius: var(--bk-radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background var(--bk-dur-fast);
}

.article-category-tag a:hover {
    background: var(--bk-emerald-100);
}

.article-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--bk-muted);
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.article-meta-item svg {
    width: 15px;
    height: 15px;
    opacity: 0.6;
}

/* Featured image */
.article-featured-image {
    margin-bottom: 2.5rem;
    border-radius: var(--bk-radius-lg);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Entry content */
.entry-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--bk-body);
}

.entry-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.85rem;
    font-size: 1.6rem;
}

.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.entry-content p {
    margin-bottom: 1.25rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.35rem;
}

.entry-content a {
    color: var(--bk-emerald);
    text-decoration: underline;
    text-decoration-color: var(--bk-emerald-200);
    text-underline-offset: 2px;
    transition: text-decoration-color var(--bk-dur-fast);
}

.entry-content a:hover {
    text-decoration-color: var(--bk-emerald);
}

.entry-content blockquote {
    border-left: 3px solid var(--bk-emerald-light);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bk-emerald-50);
    border-radius: 0 var(--bk-radius-sm) var(--bk-radius-sm) 0;
    font-style: italic;
    color: var(--bk-heading);
}

.entry-content img {
    border-radius: var(--bk-radius);
    margin: 1.5rem 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--bk-border);
}

.entry-content th {
    font-weight: 600;
    color: var(--bk-heading);
    background: var(--bk-cream);
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bk-border);
}

.faq-section h2 {
    margin-bottom: 1.25rem;
}

.faq-item {
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bk-white);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--bk-font-h);
    font-size: 1rem;
    font-weight: 600;
    color: var(--bk-heading);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--bk-dur) var(--bk-ease);
    color: var(--bk-muted);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--bk-dur) var(--bk-ease);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer > div {
    padding: 0 1.25rem 1.25rem;
    color: var(--bk-body);
    line-height: 1.7;
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bk-border);
}

.related-articles h2 {
    margin-bottom: 1.5rem;
}

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

@media (max-width: 900px) {
    .single-layout {
        grid-template-columns: minmax(0, 1fr);
        max-width: var(--bk-max-reading);
    }
    .single-toc {
        display: none;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
}


/* =================================================================
   13. ARCHIVE PAGE
   ================================================================= */

.archive-header {
    background: var(--bk-cream-warm);
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
}

.archive-header h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    margin-top: 0.75rem;
}

.archive-description {
    color: var(--bk-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.5rem;
    max-width: 600px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-bottom: 2rem;
}

@media (min-width: 900px) {
    .archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
}


/* =================================================================
   14. PAGINATION
   ================================================================= */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 2rem 0 3rem;
}

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

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bk-body);
    background: var(--bk-white);
    border: 1.5px solid var(--bk-border);
    border-radius: var(--bk-radius-pill);
    text-decoration: none;
    transition: all var(--bk-dur-fast);
}

.pagination a:hover {
    border-color: var(--bk-emerald);
    color: var(--bk-emerald);
    transform: scale(1.02);
}

.pagination .current {
    background: var(--bk-emerald);
    color: var(--bk-white);
    border-color: var(--bk-emerald);
}


/* =================================================================
   15. NO RESULTS
   ================================================================= */

.no-results {
    text-align: center;
    padding: 4rem 1.5rem;
}

.no-results h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.no-results p {
    color: var(--bk-muted);
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bk-white);
    background: var(--bk-emerald);
    border-radius: var(--bk-radius-pill);
    text-decoration: none;
    transition: all var(--bk-dur-fast);
}

.btn-primary:hover {
    background: var(--bk-emerald-dark);
    color: var(--bk-white);
    transform: scale(1.02);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}


/* =================================================================
   16. UTILITY / ACCESSIBILITY
   ================================================================= */

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

/* Focus visible */
*:focus-visible {
    outline: 2px solid var(--bk-emerald);
    outline-offset: 2px;
}

/* Print */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu,
    .mobile-menu-overlay,
    .single-toc,
    .cta-section { display: none; }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .entry-content a {
        text-decoration: underline;
        color: black;
    }
}
/* ==== Injected: Proof (stats + facts) section ==== */
.sv-proof {
    position: relative;
    padding: 6rem 0;
    background: #F0F9F4;
    overflow: hidden;
    isolation: isolate;
}
.sv-proof__bg {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 15% 20%, #05966922, transparent 42%),
        radial-gradient(circle at 85% 80%, #0596691a, transparent 42%);
    z-index: -1;
    pointer-events: none;
}
.sv-proof__head {
    max-width: 760px;
    margin: 0 auto 3.5rem !important;
    text-align: center;
}
.sv-proof__eyebrow {
    display: inline-flex !important;
    align-items: center;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    color: #059669;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #05966933;
}
.sv-proof__title {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem) !important;
    line-height: 1.15 !important;
    margin: 0 0 1rem !important;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.sv-proof__lede {
    color: #475569 !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.sv-proof__stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.15rem !important;
    margin: 0 0 3rem !important;
    list-style: none;
    padding: 0;
}
.sv-proof__stat {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.35rem 1.2rem;
    border-radius: 18px;
    box-shadow: 0 14px 34px -18px rgba(15,23,42,0.18), 0 2px 6px rgba(15,23,42,0.04);
    border: 1px solid rgba(15,23,42,0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}
.sv-proof__stat:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -18px rgba(15,23,42,0.22); }
.sv-proof__stat-icon {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px;
    border-radius: 14px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #059669, #059669cc);
    box-shadow: 0 8px 18px -6px #05966966;
}
.sv-proof__stat-icon svg { width: 24px !important; height: 24px !important; }
.sv-proof__stat-text {
    display: flex !important;
    flex-direction: column;
    min-width: 0;
}
.sv-proof__stat-n {
    font-family: 'Jost', 'Poppins', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1 !important;
    letter-spacing: -0.02em;
}
.sv-proof__stat-l {
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.35;
    margin-top: 0.25rem;
    font-weight: 500;
}

.sv-proof__facts {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.2rem !important;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sv-proof__fact {
    display: flex !important;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 28px -16px rgba(15,23,42,0.18);
    border: 1px solid rgba(15,23,42,0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}
.sv-proof__fact:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(15,23,42,0.22); }
.sv-proof__fact-icon {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px;
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #05966914;
    color: #059669;
}
.sv-proof__fact-icon svg { width: 22px !important; height: 22px !important; }
.sv-proof__fact-body { flex: 1; min-width: 0; }
.sv-proof__fact-body h3 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin: 0 0 0.4rem !important;
    color: #0f172a;
    letter-spacing: -0.01em;
}
.sv-proof__fact-body p {
    color: #475569 !important;
    font-size: 0.93rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .sv-proof__stats { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 760px) {
    .sv-proof { padding: 4rem 0; }
    .sv-proof__facts { grid-template-columns: 1fr !important; }
}


/* ==== Injected: Over Ons template ==== */
.sv-about-hero {
    padding: 5rem 0 4rem;
    background: #fff;
}
.sv-about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.sv-about-hero--reverse .sv-about-hero__media { order: -1; }
.sv-about-hero__eyebrow {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: #0596691a;
    color: #059669;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.sv-about-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}
.sv-about-hero__lead {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.sv-about-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.sv-about-hero__cta {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: #059669;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #059669;
}
.sv-about-hero__cta--ghost {
    background: transparent;
    color: #059669;
}
.sv-about-hero__media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.sv-about-banner {
    position: relative;
    height: 440px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}
.sv-about-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sv-about-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.15));
}
.sv-about-banner__content {
    position: relative;
    z-index: 1;
    color: #fff;
}
.sv-about-banner__content h1 { color: #fff; margin-bottom: 0.5rem; }
.sv-about-banner__content p { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 640px; }
.sv-about-banner__content .sv-about-hero__eyebrow {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.sv-about-intro {
    padding: 3rem 0;
    background: #fff;
}
.sv-about-intro p {
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
}

.sv-about-centered {
    padding: 4rem 0;
    text-align: center;
    background: #fff;
}
.sv-about-centered h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    max-width: 800px;
    margin: 0 auto 1rem;
}
.sv-about-centered__media {
    margin: 2.5rem auto;
    max-width: 900px;
}
.sv-about-centered__media img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.sv-about-centered__body {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    text-align: left;
}

.sv-about-values {
    padding: 4rem 0;
    background: #f9fafb;
}
.sv-about-values__title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 2.5rem;
}
.sv-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.sv-about-value {
    background: #fff;
    padding: 2.25rem 1.75rem;
    border-radius: 18px;
    box-shadow: 0 14px 34px -18px rgba(15,23,42,0.18), 0 2px 6px rgba(15,23,42,0.04);
    border: 1px solid rgba(15,23,42,0.04);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.sv-about-value:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -18px rgba(15,23,42,0.22); }
.sv-about-value__icon {
    width: 56px !important;
    height: 56px !important;
    margin: 0 auto 1.15rem !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #059669, #059669cc) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 10px 22px -8px #05966970 !important;
}
.sv-about-value__icon svg {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    flex-shrink: 0 !important;
    stroke: #fff !important;
    display: block !important;
}
.sv-about-value h3 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
    margin: 0 0 0.5rem !important;
    color: #0f172a !important;
}
.sv-about-value p {
    color: #475569 !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.sv-about-content { display: none !important; }

@media (max-width: 768px) {
    .sv-about-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
    .sv-about-hero--reverse .sv-about-hero__media { order: 0; }
    .sv-about-hero__media img { height: 280px; }
    .sv-about-banner { height: 360px; }
    .sv-about-values__grid { grid-template-columns: 1fr; }
}

/* ==== Injected: Contact page ==== */
.bk-contact-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #F0F9F4 0%, #FAFAF5 100%);
}
.bk-contact-hero__grid {
    display: grid !important;
    grid-template-columns: 1.1fr 1fr !important;
    gap: 3.5rem;
    align-items: center;
}
.bk-contact-hero__eyebrow {
    display: inline-flex !important;
    align-items: center;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    color: #059669;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #05966933;
}
.bk-contact-hero__copy h1 {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    line-height: 1.15 !important;
    margin: 0 0 1rem !important;
    color: #0f172a;
}
.bk-contact-hero__lede {
    font-size: 1.15rem !important;
    color: #475569 !important;
    line-height: 1.7 !important;
    max-width: 520px;
    margin: 0 0 1.5rem !important;
}
.bk-contact-hero__meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.bk-contact-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}
.bk-contact-hero__meta svg { color: #059669; flex-shrink: 0; }
.bk-contact-hero__media {
    position: relative;
}
.bk-contact-hero__media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px -20px rgba(15,23,42,0.24);
}
.bk-contact-hero__chip {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: #065F46;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 26px -10px rgba(15,23,42,0.18);
}
.bk-contact-hero__chip svg { color: #059669; }

.bk-contact-methods { padding: 3.5rem 0; background: #fff; }
.bk-contact-methods__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem;
}
.bk-contact-card {
    background: #fff;
    padding: 2rem 1.75rem;
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 10px 28px -16px rgba(15,23,42,0.16);
    transition: transform .25s ease, box-shadow .25s ease;
}
.bk-contact-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(15,23,42,0.22); }
.bk-contact-card__icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #059669, #10B981);
    box-shadow: 0 10px 20px -6px rgba(5,150,105,0.45);
    margin-bottom: 1rem;
}
.bk-contact-card__icon svg { width: 22px !important; height: 22px !important; }
.bk-contact-card h3 {
    font-size: 1.2rem !important;
    margin: 0 0 0.5rem !important;
    color: #0f172a;
}
.bk-contact-card p {
    color: #475569 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.85rem;
}
.bk-contact-card__link {
    color: #059669 !important;
    font-weight: 700;
    text-decoration: none;
}
.bk-contact-card__link:hover { text-decoration: underline; }

.bk-contact-form {
    padding: 4.5rem 0 6rem;
    background: linear-gradient(180deg, #FAFAF5 0%, #fff 100%);
}
.bk-contact-form__grid {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 3rem;
    align-items: start;
}
.bk-contact-form__intro h2 {
    font-size: clamp(1.7rem, 3vw, 2.15rem) !important;
    line-height: 1.2 !important;
    margin: 0 0 1rem !important;
    color: #0f172a;
}
.bk-contact-form__intro p {
    color: #475569 !important;
    line-height: 1.7 !important;
    margin: 0 0 1.5rem !important;
    font-size: 1.05rem;
}
.bk-contact-form__reassure {
    list-style: none;
    padding: 0 !important;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}
.bk-contact-form__reassure li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #0f172a;
    font-size: 0.95rem;
}
.bk-contact-form__reassure svg { color: #059669; flex-shrink: 0; }

.bk-contact-form__card {
    background: #fff;
    padding: 2.25rem;
    border-radius: 22px;
    box-shadow: 0 20px 50px -20px rgba(15,23,42,0.22);
    border: 1px solid rgba(15,23,42,0.05);
}
.bk-contact-form__form { display: grid; gap: 1rem; }
.bk-contact-form__row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
}
.bk-contact-form__form label {
    display: block;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9rem;
}
.bk-contact-form__form label span {
    display: block;
    margin-bottom: 0.35rem;
}
.bk-contact-form__form input,
.bk-contact-form__form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    color: #0f172a;
    background: #F8FAF9;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 400;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.bk-contact-form__form textarea { resize: vertical; min-height: 140px; }
.bk-contact-form__form input:focus,
.bk-contact-form__form textarea:focus {
    outline: none;
    background: #fff;
    border-color: #059669;
    box-shadow: 0 0 0 4px #05966925;
}
.bk-contact-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    border: 0;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    justify-self: start;
    box-shadow: 0 14px 30px -10px rgba(5,150,105,0.5);
    transition: transform .2s ease, box-shadow .2s ease;
}
.bk-contact-form__btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(5,150,105,0.55); }
.bk-contact-form__note {
    font-size: 0.82rem;
    color: #64748B;
    margin: 0;
}
.bk-contact-form__note a { color: #059669; }

.bk-contact-form__err {
    background: #FEF2F2;
    color: #991B1B;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid #FECACA;
    font-size: 0.92rem;
}
.bk-contact-form__ok {
    text-align: center;
    padding: 1rem 0 0.5rem;
}
.bk-contact-form__ok-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10B981);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px -8px rgba(5,150,105,0.55);
}
.bk-contact-form__ok h3 { font-size: 1.35rem; margin: 0 0 0.5rem; color: #0f172a; }
.bk-contact-form__ok p { color: #475569; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
    .bk-contact-hero__grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .bk-contact-hero__media img { height: 280px; }
    .bk-contact-methods__grid { grid-template-columns: 1fr !important; }
    .bk-contact-form__grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .bk-contact-form__row { grid-template-columns: 1fr !important; }
    .bk-contact-form__card { padding: 1.5rem; }
}


/* ==== Injected: Legal pages styling (privacy / voorwaarden / disclaimer) ==== */
.hp-legal-hero {
    padding: 4rem 0 3rem;
    background:
        radial-gradient(circle at 20% 0%, #05966922, transparent 45%),
        linear-gradient(180deg, #F0FBF6 0%, #FAFAFA 100%);
    text-align: center;
}
.hp-legal-hero .hp-hero__badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    color: #059669;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px #0596691f;
    border: 1px solid #05966933;
}
.hp-legal-hero__title {
    font-size: clamp(2rem, 3.8vw, 2.75rem) !important;
    color: #0f172a !important;
    margin: 0.5rem 0 0.75rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em;
}
.hp-legal-hero__sub {
    color: #64748B !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}
.hp-legal {
    padding: 3.5rem 0 5rem;
    background: #fff;
}
.hp-legal .wrap {
    display: grid !important;
    grid-template-columns: 240px 1fr !important;
    gap: 3rem;
    max-width: 960px;
    align-items: start;
}
.hp-legal__toc {
    position: sticky;
    top: 6rem;
    background: #F0FBF6;
    border: 1px solid #05966928;
    border-radius: 16px;
    padding: 1.5rem;
}
.hp-legal__toc strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 0.85rem;
}
.hp-legal__toc ol { list-style: none; padding: 0 !important; margin: 0; counter-reset: toc; }
.hp-legal__toc ol li { counter-increment: toc; margin-bottom: 0.5rem; font-size: 0.9rem; line-height: 1.35; }
.hp-legal__toc ol li::before {
    content: counter(toc, decimal-leading-zero) ".  ";
    color: #059669;
    font-weight: 700;
    font-family: monospace;
    font-size: 0.85rem;
}
.hp-legal__toc a { color: #334155; text-decoration: none; transition: color .2s; }
.hp-legal__toc a:hover { color: #059669; }
.hp-legal__body { color: #334155; line-height: 1.75; font-size: 1rem; }
.hp-legal__lede {
    font-size: 1.1rem !important;
    color: #475569 !important;
    padding: 1.25rem 1.5rem;
    background: #FAFAFA;
    border-left: 4px solid #059669;
    border-radius: 10px;
    margin: 0 0 2rem !important;
    line-height: 1.65 !important;
}
.hp-legal__body h2 {
    font-size: 1.3rem !important;
    margin: 2.5rem 0 0.85rem !important;
    color: #0f172a !important;
    scroll-margin-top: 6rem;
    line-height: 1.3 !important;
}
.hp-legal__body p { margin: 0 0 1rem !important; color: #334155 !important; line-height: 1.75 !important; }
.hp-legal__body ul { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.hp-legal__body ul li { margin-bottom: 0.5rem; line-height: 1.65; }
.hp-legal__body strong { color: #0f172a; font-weight: 700; }
.hp-legal__body em { color: #059669; font-style: normal; font-weight: 600; }
.hp-legal__body a { color: #059669; font-weight: 600; }
.hp-legal__body a:hover { text-decoration: underline; }
.hp-legal__alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-radius: 12px;
    margin-bottom: 2rem;
    color: #7F1D1D;
}
.hp-legal__alert svg { color: #DC2626; flex-shrink: 0; margin-top: 2px; }
.hp-legal__alert strong { color: #7F1D1D; display: block; margin-bottom: 0.25rem; font-weight: 700; }
.hp-legal__signoff {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: #F0FBF6;
    border-radius: 12px;
    color: #059669 !important;
    font-weight: 600;
    border: 1px dashed #05966955;
}
@media (max-width: 900px) {
    .hp-legal .wrap { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .hp-legal__toc { position: static; }
}
