/* 2025 Modern Design - Compassionate Leadership Institute */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600&display=swap');

/* Critical CSS inlining - fonts are preloaded in HTML */
html {
    font-display: swap;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Better mobile scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Mobile-specific text selection */
::selection {
    background: var(--red-200);
    color: var(--red-800);
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    /* Japanese/Scandinavian Warm Neutrals */
    --neutral-50: #fafaf9;
    --neutral-100: #f7f6f4;
    --neutral-200: #edebe8;
    --neutral-300: #e1ddd7;
    --neutral-400: #b8b1aa;
    --neutral-500: #8b8075;
    --neutral-600: #6b6156;
    --neutral-700: #504b42;
    --neutral-800: #3a362f;
    --neutral-900: #2b2823;
    --neutral-950: #1c1a17;
    
    /* Deep Red - Japanese Urushi (Deeper) */
    --red-50: #fef7f6;
    --red-100: #feeae7;
    --red-200: #fcd5cf;
    --red-300: #f8b3a5;
    --red-400: #f28670;
    --red-500: #e65a3d;
    --red-600: #c73e1d;
    --red-700: #a52914;
    --red-800: #862515;
    --red-900: #6f2316;
    --red-950: #3c0f08;
    
    /* Deep Blue - Scandinavian Ocean */
    --blue-50: #f7f9fb;
    --blue-100: #edf2f7;
    --blue-200: #d6e4ed;
    --blue-300: #b3cfdd;
    --blue-400: #89b1ca;
    --blue-500: #6994b5;
    --blue-600: #557ba0;
    --blue-700: #476682;
    --blue-800: #3e566b;
    --blue-900: #36485a;
    --blue-950: #24303c;
    
    /* Warm Accent - Terracotta */
    --accent-50: #fef6f2;
    --accent-100: #fdebe1;
    --accent-200: #fad3c4;
    --accent-300: #f5b199;
    --accent-400: #ed8464;
    --accent-500: #e0633a;
    --accent-600: #c7482a;
    --accent-700: #a53924;
    --accent-800: #853026;
    --accent-900: #6c2a22;
    
    /* Semantic Colors */
    --text-primary: var(--neutral-950);
    --text-secondary: var(--neutral-600);
    --text-tertiary: var(--neutral-400);
    --surface-primary: #fffffe;
    --surface-secondary: var(--neutral-50);
    --surface-tertiary: var(--neutral-100);
    --surface-warm: #faf9f7;
    --border: var(--neutral-200);
    --border-subtle: var(--neutral-100);
    --accent: var(--accent-500);
    --accent-red: var(--red-600);
    --accent-blue: var(--blue-600);
    
    /* Typography Scale - 95% Desktop */
    --text-xs: 0.7125rem;    /* 11.4px */
    --text-sm: 0.8313rem;    /* 13.3px */
    --text-base: 0.95rem;    /* 15.2px */
    --text-lg: 1.0688rem;    /* 17.1px */
    --text-xl: 1.1875rem;    /* 19px */
    --text-2xl: 1.425rem;    /* 22.8px */
    --text-3xl: 1.7813rem;   /* 28.5px */
    --text-4xl: 2.1375rem;   /* 34.2px */
    --text-5xl: 2.85rem;     /* 45.6px */
    --text-6xl: 3.5625rem;   /* 57px */
    --text-7xl: 4.275rem;    /* 68.4px */
    
    /* Spacing Scale - 90% Desktop */
    --space-1: 0.225rem;     /* 3.6px */
    --space-2: 0.45rem;      /* 7.2px */
    --space-3: 0.675rem;     /* 10.8px */
    --space-4: 0.9rem;       /* 14.4px */
    --space-5: 1.125rem;     /* 18px */
    --space-6: 1.35rem;      /* 21.6px */
    --space-8: 1.8rem;       /* 28.8px */
    --space-10: 2.25rem;     /* 36px */
    --space-12: 2.7rem;      /* 43.2px */
    --space-16: 3.6rem;      /* 57.6px */
    --space-20: 4.5rem;      /* 72px */
    --space-24: 5.4rem;      /* 86.4px */
    --space-32: 7.2rem;      /* 115.2px */
    
    /* Border Radius - 90% Desktop */
    --radius-none: 0;
    --radius-sm: 0.1125rem;  /* 1.8px */
    --radius-base: 0.225rem; /* 3.6px */
    --radius-md: 0.3375rem;  /* 5.4px */
    --radius-lg: 0.45rem;    /* 7.2px */
    --radius-xl: 0.675rem;   /* 10.8px */
    --radius-2xl: 0.9rem;    /* 14.4px */
    --radius-3xl: 1.35rem;   /* 21.6px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-base: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 6px 10px -2px rgb(0 0 0 / 0.1), 0 3px 6px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Base Typography - 95% Desktop Scale */
html {
    font-size: 15.2px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--surface-primary);
    font-weight: 400;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin: 0;
}

h1 {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 400;
    line-height: 1.1;
}

h2 {
    font-size: clamp(var(--text-4xl), 4vw, var(--text-5xl));
    margin-bottom: var(--space-8);
    margin-top: var(--space-12);
    scroll-margin-top: 100px; /* Ruimte voor sticky menu bij anker links */
}

h3 {
    font-size: clamp(var(--text-3xl), 3vw, var(--text-4xl));
    margin-bottom: var(--space-6);
    margin-top: var(--space-10);
}

h4 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    margin-top: var(--space-8);
}

/* Text Elements */
p {
    margin-bottom: var(--space-8);
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 65ch;
}

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

em {
    font-style: italic;
    color: var(--text-secondary);
}

blockquote {
    font-size: var(--text-xl);
    line-height: 1.6;
    font-style: italic;
    color: var(--text-secondary);
    margin: var(--space-8) 0;
    padding-left: var(--space-6);
    border-left: 3px solid var(--accent);
}

/* Layout */
.container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .container {
        padding-left: var(--space-12);
        padding-right: var(--space-12);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    position: relative; /* For absolute positioned mobile menu */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 640px) {
    .nav {
        padding: 0 var(--space-8);
    }
}

.nav-brand {
    font-family: 'Crimson Text', serif;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

/* Mobile navigation toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile navigation links */
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-primary);
    border-top: 1px solid var(--border);
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-links a {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-3) var(--space-8);
    border-bottom: 1px solid var(--border-subtle);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a:last-child {
    border-bottom: none;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-links {
        position: static;
        display: flex !important;
        flex-direction: row;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        gap: var(--space-8);
    }
    
    .nav-links a {
        font-size: var(--text-sm);
        padding: 0;
        border: none;
        min-height: auto;
    }
}

@media (min-width: 1024px) {
    .nav-links a:hover {
        color: var(--accent-red);
    }
    
    .nav-links a.active {
        color: var(--red-600);
        font-weight: 600;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(251, 248, 245, 0.6) 0%, rgba(248, 250, 252, 0.6) 100%),
        var(--hero-bg-image, url('images/16.jpeg'));
    background-size: cover;
    background-position: center;
    padding: var(--space-8);
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    max-width: 1080px;
    width: 100%;
    padding: var(--space-8);
    margin-top: 60px; /* Simple fixed positioning */
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-3xl);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .hero-content {
        padding: var(--space-10);
    }
}


.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero h1 {
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.hero-description,
.hero-cta-text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

/* Default: hide both image containers */
.hero-image-mobile,
.hero-image {
    display: none;
}

/* Mobile: clean simple layout */

/* Desktop: show work image in overlay, hide mobile images */
@media (min-width: 1024px) {
    .hero-image-mobile {
        display: none !important;
    }
    
    .hero-image {
        display: block !important;
        max-width: 360px;
        align-self: center;
    }
    
    .hero-content {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-12);
        padding: var(--space-12);
    }
    
    .hero-image-dominant {
        height: 280px;
    }
}

.hero-image-dominant {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: var(--space-4);
    width: 100%;
    height: 650px;
    align-self: center;
}

.main-image {
    grid-row: 1;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
    transition: all 0.3s ease;
    /* Image protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
    /* Consistent saturation */
    filter: saturate(0.9) contrast(1.05) brightness(1.02);
}

.main-image:hover img {
    transform: scale(1.02);
    filter: saturate(1.05) contrast(1.05) brightness(1.02);
}

.supporting-thumbnails {
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-3);
    height: 120px;
}

.supporting-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-base);
    transition: all 0.3s ease;
    opacity: 0.85;
    /* Image protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
    /* Consistent saturation */
    filter: saturate(0.9) contrast(1.05) brightness(1.02);
}

.supporting-thumbnails img:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: saturate(1.0) contrast(1.05) brightness(1.02);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-image-dominant {
        height: 280px;
    }
    
    .supporting-thumbnails {
        height: 100px;
    }
}


/* Button base styles */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    min-height: 44px; /* Minimum touch target size */
    min-width: 44px;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--surface-primary);
    border-color: var(--red-800);
    box-shadow: var(--shadow-sm);
}

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

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

.btn-secondary:hover {
    background: var(--neutral-200);
    border-color: var(--neutral-500);
    box-shadow: var(--shadow-base);
    transform: translateY(-1px);
}

/* Sections */
section {
    padding: var(--space-32) 0 var(--space-32) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
    max-width: 43.2rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 10;
}

.section-intro {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Services */
.services {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--surface-secondary) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.services-intro {
    display: flex;
    gap: var(--space-12);
    align-items: stretch;
    margin-bottom: var(--space-20);
}


.services-intro-image {
    flex: 1 1 50%;
}

.services-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.services-cta {
    flex: 1 1 50%;
    padding: var(--space-12);
    background: linear-gradient(135deg, rgba(139, 34, 50, 0.06) 0%, rgba(177, 197, 164, 0.04) 100%);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(139, 34, 50, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.services-cta-text {
    color: var(--text-primary);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.services-cta .btn-primary {
    margin-bottom: var(--space-10);
    align-self: flex-start;
}

.services-credentials {
    margin-top: auto;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(139, 34, 50, 0.12);
}

.services-credentials p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
    line-height: 1.4;
    font-weight: 400;
}

.services-credentials p:last-child {
    margin-bottom: 0;
}

.services-credentials strong {
    color: var(--accent-primary);
    font-weight: 600;
}


.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--surface-primary);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-base);
    border: 1px solid rgba(139, 34, 50, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
    border-color: rgba(139, 34, 50, 0.15);
    background: linear-gradient(135deg, var(--surface-primary) 0%, rgba(139, 34, 50, 0.02) 100%);
}

.service-icon {
    margin-bottom: var(--space-6);
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card:first-child .service-icon img {
    object-position: center top;
}

.service-card:hover .service-icon img {
    transform: scale(1.02);
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    position: relative;
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
}

.service-card h3:after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background: var(--accent-primary);
    margin-top: var(--space-2);
    border-radius: var(--radius-full);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0 0 0;
    border-top: 1px solid rgba(139, 34, 50, 0.1);
    padding-top: var(--space-4);
}

.service-features li {
    color: var(--text-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
    padding-left: var(--space-6);
    transition: color 0.2s ease;
}

.service-features li:hover {
    color: var(--accent-primary);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}



/* Research Section */
.why-compassion {
    background: linear-gradient(135deg, var(--surface-primary) 0%, var(--red-50) 100%);
}

.research-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    max-width: none; /* Remove width restriction for image layout */
    margin: 0;
}

.research-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    background: var(--surface-primary);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.research-image {
    width: 100%;
    max-width: 270px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.research-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1; /* Square images */
    display: block;
}

.research-text {
    flex: 1;
}

.research-text h3 {
    color: var(--accent-red);
    margin-bottom: var(--space-6);
    margin-top: 0;
}

.research-text p {
    max-width: none; /* Allow full width in this context */
}

/* Desktop layout with alternating images */
@media (min-width: 768px) {
    .research-block {
        flex-direction: row;
        align-items: stretch;
        padding: var(--space-10);
        gap: var(--space-12);
    }
    
    .research-image {
        width: 300px;
        max-width: 270px;
    }
    
    /* Image left layout */
    .research-block.image-left {
        flex-direction: row;
    }
    
    /* Image right layout */
    .research-block.image-right {
        flex-direction: row-reverse;
    }
}

.research-visual {
    text-align: center;
    margin: var(--space-8) 0;
}

.research-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-base);
}

/* Philosophy */
.philosophy {
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--blue-50) 100%);
}

/* Opening with photo integration */
.philosophy-opening {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    margin-bottom: var(--space-32);
    align-items: center;
}

.opening-image {
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.opening-image img {
    width: 100%;
    height: 100%; /* Fill full height of container */
    object-fit: cover;
    display: block; /* Remove inline spacing */
}

.opening-text {
    flex: 1;
    max-width: 37.8rem;
}

.opening-text .philosophy-intro {
    font-size: var(--text-xl);
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.opening-text p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.opening-text p:last-child {
    margin-bottom: 0;
}

/* Desktop layout for opening */
@media (min-width: 768px) {
    .philosophy-opening {
        flex-direction: row;
        align-items: stretch; /* Make both containers same height */
        gap: var(--space-20);
    }
    
    .opening-image {
        width: 50%;
        max-width: none;
        flex-shrink: 0;
        display: flex; /* Make it a flex container */
    }
}

/* Principles section with extra whitespace */
.principles-section {
    margin: var(--space-32) 0 var(--space-40) 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 768px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-16);
    }
}

@media (min-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-20);
    }
}

.principle-card {
    background: var(--surface-primary);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.principle-card:hover {
    box-shadow: var(--shadow-base);
    transform: translateY(-2px);
    border-color: var(--blue-200);
}

.principle-card h4 {
    color: var(--blue-700);
    margin-bottom: var(--space-3);
}

.principle-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: var(--text-base);
}

/* Gezellige afsluiting */
.philosophy-closing {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    margin-top: var(--space-32);
    align-items: center;
}

.closing-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
    max-width: 270px;
}

.closing-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.influences {
    background: linear-gradient(135deg, var(--red-700) 0%, var(--red-800) 100%);
    color: var(--surface-primary);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    flex: 1;
    max-width: 37.8rem;
}

.influences h3 {
    color: var(--surface-primary);
    margin-bottom: var(--space-6);
    margin-top: 0;
}

.influences p {
    color: var(--surface-primary);
    margin-bottom: var(--space-8); /* Add spacing between paragraphs */
    opacity: 0.9;
    line-height: 1.8;
    text-align: left;
}

.influences p:last-child {
    margin-bottom: 0; /* Remove margin from last paragraph */
}

/* Desktop layout for closing */
@media (min-width: 768px) {
    .philosophy-closing {
        flex-direction: row;
        align-items: stretch; /* Make both containers same height */
        gap: var(--space-20);
    }
    
    .closing-images {
        width: 30%;
        max-width: none;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Spread images across full height */
    }
    
    .influences {
        width: 70%;
        max-width: none;
    }
}

/* TEDx */
.tedx {
    background: linear-gradient(135deg, var(--surface-warm) 0%, var(--accent-50) 100%);
}

/* TEDx Header */
.tedx-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.tedx-header h2 {
    margin-bottom: var(--space-6);
}

.tedx-intro {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 43.2rem;
    margin: 0 auto;
}

/* Video Hero */
.tedx-video-hero {
    margin-bottom: var(--space-20);
}

.custom-thumbnail {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.custom-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--radius-xl);
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: var(--space-8) var(--space-6);
    z-index: 5;
}

.video-title-overlay h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin: 0 0 var(--space-2) 0;
    line-height: 1.3;
}

.video-title-overlay p {
    font-size: var(--text-sm);
    margin: 0;
    opacity: 0.9;
    color: white;
    font-weight: 500;
}

.play-button.youtube-style {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    opacity: 0.9;
}

.play-button.youtube-style:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: var(--space-3);
    right: var(--space-3);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 500;
    z-index: 6;
}

#video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

#video-iframe iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 57.6rem;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* TEDx Content */
.tedx-content {
    margin-bottom: var(--space-20);
}

.tedx-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    text-align: center;
    max-width: 37.8rem;
    margin: 0 auto var(--space-16);
}

/* Quotes Grid */
.talk-quotes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8); /* Verhoogd van space-6 naar space-8 */
    max-width: 57.6rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .talk-quotes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-10); /* Verhoogd van space-8 naar space-10 voor meer ruimte */
    }
}

.talk-quotes-grid blockquote {
    background: linear-gradient(135deg, var(--neutral-50) 0%, white 50%, var(--neutral-50) 100%);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 2px solid var(--neutral-200);
    border-left: 6px solid var(--red-500);
    font-size: var(--text-lg);
    color: var(--text-primary);
    box-shadow: var(--shadow-xl);
    margin: 0;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

/* Highlight Quote */
.talk-quotes-grid .quote-highlight {
    border-left: 6px solid var(--red-600);
    background: linear-gradient(135deg, var(--red-50) 0%, white 50%, var(--red-50) 100%);
}

@media (min-width: 768px) {
    .talk-quotes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-12);
    }
}

.talk-quotes-grid blockquote:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red-400);
    border-left-color: var(--red-600);
}

/* TEDx Vision */
.tedx-vision {
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 50%, var(--red-800) 100%);
    color: white;
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    margin-top: var(--space-20);
}


.tedx-vision p {
    font-size: var(--text-xl);
    line-height: 1.7;
    margin: 0;
    max-width: 57.6rem;
    margin: 0 auto;
    font-weight: 500;
    color: var(--neutral-100);
}

/* About */
.about {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--surface-secondary) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    align-items: start;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-20);
    }
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.philosophy-highlight {
    background: var(--surface-primary);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    margin: var(--space-8) 0;
    border-left: 4px solid var(--accent-red);
    box-shadow: var(--shadow-sm);
}

.philosophy-highlight p {
    margin-bottom: 0;
    font-size: var(--text-lg);
    color: var(--text-primary);
    font-style: italic;
}

.credentials {
    background: var(--surface-primary);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin: var(--space-8) 0;
    border: 1px solid var(--border);
}

.credential-item {
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
}

.credential-item:last-child {
    margin-bottom: 0;
}

/* About - Organisch verhaal */
.about h2 {
    text-align: center;
    margin-bottom: var(--space-12);
}

.about-hero {
    text-align: center;
    margin-bottom: var(--space-16);
}

.hero-portrait {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-story {
    max-width: 720px;
    margin: 0 auto;
}

.about-story p {
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-16);
}

.about-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}


/* Contact */
.contact {
    background: linear-gradient(135deg, var(--surface-warm) 0%, var(--red-50) 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: var(--space-16);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: start;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1.3fr 1fr;
        gap: var(--space-20);
    }
}

.contact-text p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.contact-info {
    background: var(--surface-primary);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    margin-top: var(--space-8);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.contact-item {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--red-700);
}

.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: #0077B5;
    color: white;
    text-decoration: none;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-top: var(--space-8);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-base);
    min-height: 44px; /* Minimum touch target size */
}

.linkedin-button:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.linkedin-button svg {
    flex-shrink: 0;
}

.contact-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-images img:first-child {
    height: auto;
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--space-12) 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer p {
    color: var(--neutral-400);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.footer p:last-child {
    margin-bottom: 0;
}

/* Research Link Previews */
.research-content a {
    color: var(--red-600);
    text-decoration: none;
    border-bottom: 1px solid var(--red-200);
    position: relative;
    padding-bottom: 1px;
    transition: all 0.2s ease;
}

.research-content a:hover {
    color: var(--red-700);
    border-bottom-color: var(--red-400);
}

.research-content a[data-preview]:hover::after {
    content: attr(data-preview);
    position: absolute;
    bottom: -60px;
    left: 0;
    background: var(--neutral-900);
    color: var(--neutral-100);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    max-width: 252px;
    z-index: 5;
    box-shadow: var(--shadow-base);
    transform: translateY(-8px);
    opacity: 1;
    pointer-events: none;
    animation: fadeInPreview 0.2s ease;
}

.research-content a[data-preview]:hover::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--neutral-900);
    z-index: 1001;
}

@keyframes fadeInPreview {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(-8px);
    }
}

/* ====================================================================================== */
/* MOBILE FIRST 2025 - COMPLETE REBUILD WITH CONSISTENT DESIGN SYSTEM                 */
/* ====================================================================================== */

@media (max-width: 1023px) {
    
    /* ========================================================================= */
    /* CORE FOUNDATION & DESIGN TOKENS                                          */
    /* ========================================================================= */
    
    :root {
        /* Mobile-specific spacing scale */
        --mobile-space-xs: 8px;
        --mobile-space-sm: 12px;
        --mobile-space-md: 16px;
        --mobile-space-lg: 20px;
        --mobile-space-xl: 24px;
        --mobile-space-2xl: 32px;
        --mobile-space-3xl: 40px;
        --mobile-space-4xl: 48px;
        --mobile-space-5xl: 64px;
        
        /* Mobile typography scale */
        --mobile-text-xs: 14px;
        --mobile-text-sm: 16px;
        --mobile-text-base: 18px;
        --mobile-text-lg: 20px;
        --mobile-text-xl: 22px;
        --mobile-text-2xl: 28px;
        --mobile-text-3xl: 32px;
        --mobile-text-4xl: 36px;
        
        /* Consistent border radius */
        --mobile-radius-sm: 8px;
        --mobile-radius-md: 12px;
        --mobile-radius-lg: 16px;
        --mobile-radius-xl: 20px;
        --mobile-radius-2xl: 24px;
        
        /* Consistent shadows */
        --mobile-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
        --mobile-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
        --mobile-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
        --mobile-shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
        --mobile-shadow-2xl: 0 20px 60px rgba(0, 0, 0, 0.2);
        
        /* Mobile-specific animations */
        --mobile-transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
        --mobile-transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
        --mobile-transition-slow: 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    /* === CORE RESET === */
    body {
        font-size: var(--mobile-text-sm);
        line-height: 1.6;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background: var(--neutral-50);
    }
    
    .container {
        padding: 0 var(--mobile-space-lg);
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    section {
        padding: var(--mobile-space-5xl) 0;
    }
    
    /* ========================================================================= */
    /* CONSISTENT TYPOGRAPHY SYSTEM                                             */
    /* ========================================================================= */
    
    h1 {
        font-size: var(--mobile-text-3xl);
        font-weight: 700;
        line-height: 1.1;
        color: var(--text-primary);
        margin: 0 0 var(--mobile-space-xl) 0;
        text-align: center;
        font-family: 'Crimson Text', serif;
        letter-spacing: -0.5px;
    }
    
    h2 {
        font-size: var(--mobile-text-2xl);
        font-weight: 600;
        line-height: 1.2;
        color: var(--text-primary);
        margin: 0 0 var(--mobile-space-lg) 0;
        text-align: center;
        font-family: 'Crimson Text', serif;
        letter-spacing: -0.3px;
    }
    
    h3 {
        font-size: var(--mobile-text-xl);
        font-weight: 600;
        line-height: 1.3;
        color: var(--text-primary);
        margin: 0 0 var(--mobile-space-md) 0;
        text-align: center;
        font-family: 'Crimson Text', serif;
    }
    
    h4 {
        font-size: var(--mobile-text-base);
        font-weight: 600;
        line-height: 1.4;
        color: var(--text-primary);
        margin: 0 0 var(--mobile-space-sm) 0;
        text-align: center;
        font-family: 'Inter', sans-serif;
    }
    
    p {
        font-size: var(--mobile-text-sm);
        line-height: 1.6;
        color: var(--text-secondary);
        margin: 0 0 var(--mobile-space-md) 0;
        text-align: center;
        font-family: 'Inter', sans-serif;
    }
    
    /* ========================================================================= */
    /* CONSISTENT COMPONENT LIBRARY                                             */
    /* ========================================================================= */
    
    /* === CARD COMPONENT === */
    .mobile-card {
        background: var(--surface-primary);
        border-radius: var(--mobile-radius-lg);
        box-shadow: var(--mobile-shadow-md);
        padding: var(--mobile-space-xl);
        margin-bottom: var(--mobile-space-xl);
        transition: var(--mobile-transition-base);
        border: 1px solid rgba(255, 255, 255, 0.8);
        position: relative;
        overflow: hidden;
    }
    
    .mobile-card:active {
        transform: translateY(2px);
        box-shadow: var(--mobile-shadow-sm);
    }
    
    .mobile-card--premium {
        background: linear-gradient(135deg, var(--surface-primary) 0%, rgba(255, 255, 255, 0.98) 100%);
        box-shadow: var(--mobile-shadow-lg);
        border-radius: var(--mobile-radius-2xl);
    }
    
    .mobile-card--accent {
        background: var(--red-700);
        color: white;
        box-shadow: var(--mobile-shadow-xl);
    }
    
    .mobile-card--accent h3,
    .mobile-card--accent h4 {
        color: white;
    }
    
    .mobile-card--accent p {
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* === IMAGE COMPONENT === */
    .mobile-image {
        width: 100%;
        border-radius: var(--mobile-radius-lg);
        overflow: hidden;
        box-shadow: var(--mobile-shadow-lg);
        margin-bottom: var(--mobile-space-xl);
        position: relative;
    }
    
    .mobile-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.6s ease;
        filter: saturate(1.05) contrast(1.02);
    }
    
    .mobile-image--tall img {
        height: 240px;
    }
    
    .mobile-image--square img {
        height: 100%;
        aspect-ratio: 1;
    }
    
    .mobile-card:active .mobile-image img {
        transform: scale(1.02);
    }
    
    /* === BUTTON COMPONENT === */
    .mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--mobile-space-md) var(--mobile-space-2xl);
        border-radius: var(--mobile-radius-md);
        font-size: var(--mobile-text-sm);
        font-weight: 600;
        text-decoration: none;
        min-height: 52px;
        transition: var(--mobile-transition-fast);
        cursor: pointer;
        border: none;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.3px;
    }
    
    .mobile-btn--primary {
        background: var(--red-600);
        color: white;
        box-shadow: var(--mobile-shadow-md);
    }
    
    .mobile-btn--primary:active {
        transform: translateY(1px);
        box-shadow: var(--mobile-shadow-sm);
        background: var(--red-700);
    }
    
    .mobile-btn--secondary {
        background: transparent;
        color: var(--red-600);
        border: 2px solid var(--red-600);
    }
    
    .mobile-btn--secondary:active {
        background: var(--red-50);
        transform: translateY(1px);
    }
    
    /* === SECTION HEADER COMPONENT === */
    .mobile-section-header {
        text-align: center;
        margin-bottom: var(--mobile-space-4xl);
        padding: 0 var(--mobile-space-md);
    }
    
    .mobile-section-intro {
        font-size: var(--mobile-text-base);
        line-height: 1.6;
        color: var(--text-secondary);
        margin-top: var(--mobile-space-lg);
        font-weight: 400;
    }
    
    /* ========================================================================= */
    /* NAVIGATION                                                               */
    /* ========================================================================= */
    
    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: var(--mobile-shadow-sm);
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }
    
    /* ========================================================================= */
    /* HERO SECTION - PREMIUM DESIGN                                           */
    /* ========================================================================= */
    
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: calc(var(--mobile-space-5xl) * 2) var(--mobile-space-lg) var(--mobile-space-4xl);
        background: 
            linear-gradient(180deg, rgba(43, 40, 35, 0.4) 0%, rgba(43, 40, 35, 0.2) 40%, rgba(43, 40, 35, 0.5) 100%),
            var(--hero-bg-image, url('images/16.jpeg'));
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .hero-content {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.98);
        border-radius: var(--mobile-radius-2xl);
        padding: var(--mobile-space-2xl) var(--mobile-space-xl);
        box-shadow: var(--mobile-shadow-2xl);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        position: relative;
        overflow: hidden;
    }
    
    .hero-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--red-600), var(--accent-600));
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--mobile-space-lg);
    }
    
    .hero h1 {
        color: var(--red-700);
        margin-bottom: var(--mobile-space-md);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
    
    .hero-subtitle {
        font-size: var(--mobile-text-base);
        font-weight: 500;
        color: var(--red-600);
        margin-bottom: var(--mobile-space-lg);
        letter-spacing: 0.3px;
    }
    
    /* Hide desktop hero images */
    .hero-image {
        display: none !important;
    }
    
    /* Mobile hero gallery */
    .hero-image-mobile {
        width: 100%;
        max-width: 280px;
        margin: 0 auto var(--mobile-space-lg);
    }
    
    .hero-image-mobile .main-image {
        width: 100%;
        height: 180px;
        border-radius: var(--mobile-radius-lg);
        overflow: hidden;
        margin-bottom: var(--mobile-space-sm);
        box-shadow: var(--mobile-shadow-lg);
    }
    
    .hero-image-mobile .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-image-mobile .supporting-thumbnails {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--mobile-space-xs);
        height: 50px;
    }
    
    .hero-image-mobile .supporting-thumbnails img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--mobile-radius-sm);
        box-shadow: var(--mobile-shadow-sm);
    }
    
    .hero-description {
        font-size: var(--mobile-text-sm);
        line-height: 1.5;
        color: var(--text-primary);
        font-weight: 500;
        margin-bottom: var(--mobile-space-lg);
    }
    
    .hero-cta-text {
        font-size: var(--mobile-text-xs);
        color: var(--text-secondary);
        margin-bottom: var(--mobile-space-md);
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-space-sm);
        width: 100%;
    }
    
    .hero-cta .mobile-btn {
        width: 100%;
    }
    
    /* ========================================================================= */
    /* SERVICES SECTION                                                         */
    /* ========================================================================= */
    
    .services-intro {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-space-xl);
        margin-bottom: var(--mobile-space-4xl);
    }
    
    .services-cta {
        order: 2;
        text-align: center;
    }
    
    .services-intro-image {
        order: 1;
    }
    
    .services-intro-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: var(--mobile-radius-lg);
        box-shadow: var(--mobile-shadow-lg);
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--mobile-space-xl);
    }
    
    .service-card {
        text-align: center;
    }
    
    .service-icon img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: var(--mobile-radius-md);
        margin-bottom: var(--mobile-space-md);
    }
    
    .service-features {
        text-align: left;
        margin-top: var(--mobile-space-md);
        padding-top: var(--mobile-space-md);
        border-top: 1px solid var(--border-subtle);
    }
    
    .service-features li {
        padding: var(--mobile-space-xs) 0;
        font-size: var(--mobile-text-xs);
        color: var(--text-secondary);
    }
    
    /* ========================================================================= */
    /* RESEARCH SECTION - PREMIUM CARD DESIGN                                  */
    /* ========================================================================= */
    
    .why-compassion {
        background: linear-gradient(135deg, var(--neutral-50) 0%, var(--blue-50) 100%) !important;
        padding: var(--mobile-space-5xl) 0 !important;
    }
    
    .why-compassion .container {
        padding: 0 var(--mobile-space-md) !important;
        max-width: 440px !important;
        margin: 0 auto;
    }
    
    .research-content {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-space-4xl);
    }
    
    .research-block {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
        transition: var(--mobile-transition-slow);
    }
    
    /* Consistent image-text order */
    .research-image {
        order: 1;
        width: calc(100% + var(--mobile-space-2xl));
        margin: 0 calc(-1 * var(--mobile-space-md)) var(--mobile-space-lg);
        position: relative;
    }
    
    .research-image img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
        filter: saturate(1.1) contrast(1.05);
        border-radius: var(--mobile-radius-lg) var(--mobile-radius-lg) 0 0;
    }
    
    .research-text {
        order: 2;
        padding: 0 var(--mobile-space-md) var(--mobile-space-md);
    }
    
    .research-text h3 {
        color: var(--red-700);
        font-weight: 700;
        margin-bottom: var(--mobile-space-lg);
        letter-spacing: -0.3px;
        text-align: center;
    }
    
    .research-text p {
        text-align: left;
        line-height: 1.7;
        font-weight: 400;
        margin-bottom: var(--mobile-space-md);
    }
    
    .research-text strong {
        color: var(--text-primary);
        font-weight: 700;
        background: linear-gradient(135deg, var(--red-600), var(--red-700));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .research-text a {
        color: var(--red-600);
        text-decoration: none;
        font-weight: 600;
        border-bottom: 2px solid transparent;
        transition: var(--mobile-transition-fast);
        padding-bottom: 1px;
    }
    
    .research-text a:active {
        border-bottom-color: var(--red-300);
        color: var(--red-700);
    }
    
    /* ========================================================================= */
    /* PHILOSOPHY SECTION                                                       */
    /* ========================================================================= */
    
    .philosophy-opening {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-space-xl);
        margin-bottom: var(--mobile-space-4xl);
        text-align: center;
    }
    
    .opening-image {
        width: 100%;
        max-width: 270px;
        margin: 0 auto;
    }
    
    .opening-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: var(--mobile-radius-lg);
        box-shadow: var(--mobile-shadow-lg);
    }
    
    .philosophy-intro {
        font-size: var(--mobile-text-base);
        font-weight: 500;
        color: var(--text-primary);
        line-height: 1.6;
    }
    
    .principles-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--mobile-space-lg);
        margin: var(--mobile-space-4xl) 0;
    }
    
    .principle-card {
        text-align: center;
    }
    
    .principle-card h4 {
        color: var(--blue-700);
        margin-bottom: var(--mobile-space-sm);
    }
    
    .principle-card p {
        line-height: 1.6;
    }
    
    .philosophy-closing {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-space-xl);
        margin-top: var(--mobile-space-4xl);
        text-align: center;
    }
    
    .closing-images {
        width: 100%;
        max-width: 270px;
        margin: 0 auto;
        display: grid;
        gap: var(--mobile-space-sm);
    }
    
    .closing-images img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: var(--mobile-radius-md);
        box-shadow: var(--mobile-shadow-md);
    }
    
    .influences {
        flex: 1;
    }
    
    .influences h3 {
        margin-bottom: var(--mobile-space-md);
    }
    
    .influences p {
        line-height: 1.6;
        opacity: 0.95;
    }
    
    /* ========================================================================= */
    /* ABOUT SECTION                                                           */
    /* ========================================================================= */
    
    .about-content {
        text-align: center;
    }
    
    .hero-portrait {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: var(--mobile-radius-lg);
        box-shadow: var(--mobile-shadow-xl);
        margin-bottom: var(--mobile-space-xl);
    }
    
    .about-story {
        margin: var(--mobile-space-xl) 0;
    }
    
    .about-story p {
        line-height: 1.6;
        margin-bottom: var(--mobile-space-md);
    }
    
    .about-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--mobile-space-md);
        margin: var(--mobile-space-xl) 0;
    }
    
    .about-gallery img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: var(--mobile-radius-md);
        box-shadow: var(--mobile-shadow-md);
    }
    
    /* Specifieke object-position voor het eerste plaatje */
    .about-gallery img[src="images/2.jpg"] {
        object-position: center 20%;
    }
    
    /* ========================================================================= */
    /* TEDX SECTION                                                            */
    /* ========================================================================= */
    
    .tedx-header {
        text-align: center;
        margin-bottom: var(--mobile-space-xl);
    }
    
    .tedx-intro {
        line-height: 1.6;
    }
    
    .video-container {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: var(--mobile-radius-md);
        overflow: hidden;
        box-shadow: var(--mobile-shadow-xl);
        margin: var(--mobile-space-xl) 0;
    }
    
    .talk-quotes-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--mobile-space-md);
        margin: var(--mobile-space-xl) 0;
    }
    
    .talk-quotes-grid blockquote {
        padding: var(--mobile-space-lg);
        line-height: 1.6;
        border-radius: var(--mobile-radius-md);
        text-align: center;
        box-shadow: var(--mobile-shadow-sm);
        background: var(--surface-primary);
    }
    
    .tedx-vision {
        text-align: center;
        margin-top: var(--mobile-space-xl);
    }
    
    .tedx-vision p {
        line-height: 1.6;
        margin: 0;
    }
    
    /* ========================================================================= */
    /* CONTACT SECTION                                                         */
    /* ========================================================================= */
    
    .contact-content {
        text-align: center;
    }
    
    .contact-text {
        margin-bottom: var(--mobile-space-xl);
    }
    
    .contact-text p {
        line-height: 1.6;
        margin-bottom: var(--mobile-space-md);
    }
    
    .contact-info {
        margin: var(--mobile-space-lg) 0;
    }
    
    .contact-item {
        margin-bottom: var(--mobile-space-sm);
        color: var(--text-secondary);
    }
    
    .linkedin-button {
        width: 100%;
        margin-top: var(--mobile-space-lg);
    }
    
    .contact-images {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--mobile-space-md);
        margin-top: var(--mobile-space-xl);
    }
    
    .contact-images img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: var(--mobile-radius-md);
        box-shadow: var(--mobile-shadow-md);
    }
    
    /* ========================================================================= */
    /* UTILITIES & OVERRIDES                                                   */
    /* ========================================================================= */
    
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    /* Apply consistent component styles directly */
    .services-cta,
    .principle-card,
    .contact-info {
        background: var(--surface-primary);
        border-radius: var(--mobile-radius-lg);
        box-shadow: var(--mobile-shadow-md);
        padding: var(--mobile-space-xl);
        margin-bottom: var(--mobile-space-xl);
        transition: var(--mobile-transition-base);
        border: 1px solid rgba(255, 255, 255, 0.8);
        position: relative;
        overflow: hidden;
    }
    
    .services-cta:active,
    .principle-card:active,
    .contact-info:active {
        transform: translateY(2px);
        box-shadow: var(--mobile-shadow-sm);
    }
    
    .influences {
        background: var(--red-700);
        color: white;
        box-shadow: var(--mobile-shadow-xl);
        border-radius: var(--mobile-radius-lg);
        padding: var(--mobile-space-xl);
        margin-bottom: var(--mobile-space-xl);
        transition: var(--mobile-transition-base);
        position: relative;
        overflow: hidden;
    }
    
    .influences:active {
        transform: translateY(2px);
        box-shadow: var(--mobile-shadow-lg);
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .linkedin-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--mobile-space-md) var(--mobile-space-2xl);
        border-radius: var(--mobile-radius-md);
        font-size: var(--mobile-text-sm);
        font-weight: 600;
        text-decoration: none;
        min-height: 52px;
        transition: var(--mobile-transition-fast);
        cursor: pointer;
        border: none;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.3px;
    }
    
    .hero-cta .btn-primary,
    .linkedin-button {
        background: var(--red-600);
        color: white;
        box-shadow: var(--mobile-shadow-md);
    }
    
    .hero-cta .btn-primary:active,
    .linkedin-button:active {
        transform: translateY(1px);
        box-shadow: var(--mobile-shadow-sm);
        background: var(--red-700);
    }
    
    .hero-cta .btn-secondary {
        background: transparent;
        color: var(--red-600);
        border: 2px solid var(--red-600);
    }
    
    .hero-cta .btn-secondary:active {
        background: var(--red-50);
        transform: translateY(1px);
    }
    
    .section-header {
        text-align: center;
        margin-bottom: var(--mobile-space-4xl);
        padding: 0 var(--mobile-space-md);
    }
    
    .section-intro {
        font-size: var(--mobile-text-base);
        line-height: 1.6;
        color: var(--text-secondary);
        margin-top: var(--mobile-space-lg);
        font-weight: 400;
    }
    
    /* FORCE CONSISTENT TYPOGRAPHY WITH HIGH SPECIFICITY */
    body h1,
    .hero h1,
    .services h1,
    .research h1,
    .philosophy h1,
    .about h1,
    .tedx h1,
    .contact h1 {
        font-size: var(--mobile-text-3xl) !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        font-family: 'Crimson Text', serif !important;
        letter-spacing: -0.5px !important;
    }
    
    body h2,
    .hero h2,
    .services h2,
    .research h2,
    .philosophy h2,
    .about h2,
    .tedx h2,
    .contact h2 {
        font-size: var(--mobile-text-2xl) !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        font-family: 'Crimson Text', serif !important;
        letter-spacing: -0.3px !important;
    }
    
    body h3,
    .hero h3,
    .services h3,
    .research h3,
    .philosophy h3,
    .about h3,
    .tedx h3,
    .contact h3,
    .service-card h3,
    .research-text h3 {
        font-size: var(--mobile-text-xl) !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        font-family: 'Crimson Text', serif !important;
    }
    
    body h4,
    .hero h4,
    .services h4,
    .research h4,
    .philosophy h4,
    .about h4,
    .tedx h4,
    .contact h4,
    .principle-card h4 {
        font-size: var(--mobile-text-base) !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    body p,
    .hero p,
    .services p,
    .research p,
    .philosophy p,
    .about p,
    .tedx p,
    .contact p,
    .service-card p,
    .research-text p,
    .about-story p,
    .contact-text p,
    .services-cta p,
    .philosophy-intro,
    .tedx-intro,
    .hero-description,
    .section-intro {
        font-size: var(--mobile-text-sm) !important;
        line-height: 1.6 !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    /* Small text elements */
    .service-features li,
    .hero-cta-text,
    .contact-item,
    blockquote {
        font-size: var(--mobile-text-xs) !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    /* Special cases */
    .hero-subtitle {
        font-size: var(--mobile-text-base) !important;
        font-weight: 500 !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    /* Text alignment consistency */
    .research-text,
    .opening-text,
    .about-text,
    .contact-text,
    .services-cta {
        text-align: center !important;
    }
    
    .research-text p {
        text-align: left !important;
        max-width: none !important;
    }
}