/* === BRABANTSE AI-GOEROE — brabantseai.guru === */
/* === Warm, editorial, dennegroen + beige === */

:root {
    /* Dennegroen — uit het pak */
    --pine: #1e3a2f;
    --pine-mid: #2d5142;
    --pine-light: #3a6655;
    --pine-soft: #4a7a68;
    --pine-glow: rgba(30, 58, 47, 0.08);

    /* Warm beige/camel — uit het overhemd */
    --camel: #b8943f;
    --camel-light: #cdb06a;
    --camel-soft: #dcc48e;
    --camel-pale: #ecdbb5;
    --camel-glow: rgba(184, 148, 63, 0.12);

    /* Warm neutrals */
    --cream: #f8f5ef;
    --cream-dark: #f0ebe2;
    --white: #ffffff;
    --sand: #ece7dc;
    --sand-dark: #ddd6c8;

    /* Warm text */
    --text: #2a2522;
    --text-mid: #4a4440;
    --text-muted: #6b635c;
    --text-light: #9a918a;

    /* System */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(30, 58, 47, 0.04);
    --shadow: 0 4px 24px rgba(30, 58, 47, 0.06);
    --shadow-lg: 0 12px 40px rgba(30, 58, 47, 0.08);
    --shadow-xl: 0 20px 60px rgba(30, 58, 47, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === SCROLL REVEAL === */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.25s; }
.reveal-delay-4 { transition-delay: 0.3s; }

/* === NAV === */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 245, 239, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(30, 58, 47, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(248, 245, 239, 0.95);
    box-shadow: 0 4px 30px rgba(30, 58, 47, 0.05);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pine);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-dot { color: var(--camel); }

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:not(.nav-cta):hover { color: var(--pine); }

.nav-links a:not(.nav-cta)::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--camel);
    transition: width 0.3s;
    margin-top: 2px;
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--pine) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 60px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--pine-mid) !important;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pine);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

/* === HERO — Warm, editorial, licht === */

.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

/* Subtiele warme gloed */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(184, 148, 63, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 47, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--sand);
    padding: 0.45rem 1.1rem;
    border-radius: 60px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--pine-light);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--pine);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero h1 .warm {
    color: var(--camel);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Hero foto */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-photo {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    background: var(--sand);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decoratieve elementen rond de foto */
.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow: inset 0 0 0 1px rgba(30, 58, 47, 0.08);
    pointer-events: none;
}

.hero-photo-accent {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border: 2px solid var(--camel-pale);
    border-radius: var(--radius-xl);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

/* Hero proof bar */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.proof-logo {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--camel);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.proof-text {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.4;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* === BUTTONS === */

.btn-primary {
    display: inline-block;
    background: var(--pine);
    color: var(--white);
    border: none;
    padding: 0.95rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(30, 58, 47, 0.15);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: var(--pine-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 58, 47, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--pine);
    border: 2px solid var(--sand-dark);
    padding: 0.85rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--pine);
    background: var(--pine-glow);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pine-light);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 0.75rem;
    transition: all 0.2s;
}

.btn-service:hover {
    color: var(--pine);
    gap: 0.6rem;
}

/* === SECTIONS === */

.section {
    padding: 6rem 2rem;
}

.section-warm {
    background: var(--white);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--camel);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--pine);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* === STORY === */

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

.story-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 58, 47, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pine-light), var(--camel-soft));
    opacity: 0;
    transition: opacity 0.3s;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.story-card:hover::before { opacity: 1; }

.story-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--camel-glow);
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.story-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--pine-mid);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.story-card h3 {
    font-size: 1.2rem;
    color: var(--pine);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.story-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === MEDIA === */

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

.media-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(30, 58, 47, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.media-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pine-light);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.media-card:hover::after { transform: scaleX(1); }

.media-source {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--camel);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.media-card h3 {
    font-size: 1.15rem;
    color: var(--pine);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.media-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
}

.media-link {
    color: var(--pine-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
}

.media-card:hover .media-link { gap: 0.6rem; }

/* Featured media card (538) */
.media-card-featured {
    background: var(--pine);
    color: var(--white);
    grid-column: 1 / -1;
    border: none;
}

.media-card-featured .media-source {
    color: var(--camel-soft);
}

.media-card-featured h3 {
    color: var(--white);
    font-size: 1.35rem;
}

.media-card-featured p {
    color: rgba(255, 255, 255, 0.7);
}

.media-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    font-weight: 500;
}

/* === CASE STUDY === */

.case-study-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.case-study-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 58, 47, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.case-stat {
    margin-bottom: 1.25rem;
}

.case-stat-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--pine);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.case-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--camel);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.case-study-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.case-study-cta {
    text-align: center;
    padding-top: 1rem;
}

/* === QUOTE === */

.quote-section {
    padding: 5rem 2rem;
    background: var(--pine);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 148, 63, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.quote-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 4.5rem;
    line-height: 1;
    color: var(--camel-soft);
    opacity: 0.4;
    font-family: Georgia, 'Times New Roman', serif;
}

.quote-text {
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    color: var(--white);
    font-weight: 400;
    line-height: 1.55;
    font-style: italic;
    margin: 0.5rem 0 1.75rem;
    letter-spacing: -0.01em;
}

.quote-source {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.quote-source strong {
    color: var(--camel-soft);
    font-weight: 600;
}

/* === SERVICES === */

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 58, 47, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--sand);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.05em;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--pine);
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-details {
    list-style: none;
}

.service-details li {
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-details li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--pine-light);
    font-weight: 700;
    font-size: 0.85rem;
}

/* === STATS === */

.section-stats {
    background: var(--cream-dark);
    padding: 4rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--pine);
    line-height: 1.1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.03em;
}

.stat-number .accent {
    color: var(--camel);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === CONTACT === */

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

.contact-text h2 {
    margin-bottom: 1rem;
}

.contact-text > p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-size: 1.05rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--camel-glow);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--pine-mid);
    fill: none;
    stroke-width: 2;
}

.contact-row a,
.contact-row span {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.contact-row a:hover { color: var(--pine-light); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(30, 58, 47, 0.04);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--sand);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    transition: var(--transition);
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pine-light);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--pine-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b635c' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
}

.form-success.show { display: block; }

.form-success h3 {
    color: var(--pine);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* === FOOTER === */

.footer {
    background: var(--pine);
    color: rgba(255, 255, 255, 0.6);
    padding: 3.5rem 2rem 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.footer .nav-brand { color: var(--white); }
.footer .nav-dot { color: var(--camel-soft); }

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.35);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* === RESPONSIVE === */

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content { max-width: 100%; }

    .hero-buttons { justify-content: center; }

    .hero-proof { justify-content: center; }

    .hero-visual { order: -1; }

    .hero-photo {
        max-width: 300px;
        aspect-ratio: 3 / 3.5;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(248, 245, 239, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--sand);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero { padding: 6rem 1.5rem 3.5rem; }

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

    .hero-proof { flex-direction: column; gap: 1rem; }

    .proof-divider { width: 60px; height: 1px; }

    .story-grid,
    .media-grid,
    .services-grid,
    .case-study-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .section, .section-stats, .quote-section {
        padding: 4rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero { padding: 5rem 1.25rem 3rem; }

    .hero-photo { max-width: 260px; }

    .story-card, .media-card, .service-card {
        padding: 1.75rem;
    }

    .contact-form { padding: 2rem 1.5rem; }

    .btn-primary, .btn-secondary {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* === LANGUAGE SWITCHER === */
.lang-switcher { position: relative; }

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.65rem;
    background: transparent;
    border: 1px solid rgba(30, 58, 47, 0.14);
    border-radius: 999px;
    color: inherit;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
    transition: border-color var(--transition), background var(--transition);
}

.lang-current:hover {
    border-color: var(--pine);
    background: var(--cream);
}

.lang-flag { display: inline-flex; align-items: center; line-height: 1; }
.flag-emoji { font-size: 1rem; line-height: 1; }

.flag-svg {
    width: 18px;
    height: 12px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(30, 58, 47, 0.1);
}

.lang-code { letter-spacing: 0.04em; font-weight: 600; }

.lang-chevron {
    margin-left: 0.1rem;
    transition: transform var(--transition);
    opacity: 0.6;
}

.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    background: var(--white);
    border: 1px solid rgba(30, 58, 47, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.2s;
    z-index: 100;
}

.lang-switcher.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: inherit;
    transition: background 0.15s ease;
}

.lang-menu li:hover { background: var(--cream); }
.lang-menu li.active { background: var(--cream-dark); }
.lang-menu li.active .lang-code { color: var(--pine); }

@media (max-width: 768px) {
    .lang-switcher { margin: 0.5rem 0 0; align-self: flex-start; }
    .lang-menu { right: auto; left: 0; }
}

/* === HERO ITARR BYLINE === */
/* Quieter sister of .hero-sub — same family, smaller, with anchor link in pine */
.hero-itarr {
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.hero-itarr a {
    color: var(--pine);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--camel-light);
    transition: border-color var(--transition), color var(--transition);
}

.hero-itarr a:hover {
    color: var(--camel);
    border-bottom-color: var(--camel);
}

/* === FOOTER ITARR LINE === */
.footer-itarr-line {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-itarr-line a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.footer-itarr-line a:hover {
    color: var(--pine);
    border-bottom-color: var(--camel);
}

.footer-link-primary { font-weight: 700; }

/* === FRAGMENTS SECTION === */
.section-fragments {
    background: var(--cream);
}

.fragments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.fragment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 58, 47, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fragment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fragment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 92px;
    padding: 1rem 1.25rem;
    text-align: center;
    line-height: 1;
    user-select: none;
}

/* Omroep Brabant — black + signature green */
.logo-ob {
    background: var(--white);
    border-bottom: 1px solid rgba(30, 58, 47, 0.06);
    flex-direction: column;
    gap: 0.2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.logo-ob-omroep { font-size: 0.92rem; color: var(--text); letter-spacing: 0.32em; }
.logo-ob-brabant { font-size: 1.85rem; color: #009E3D; letter-spacing: 0.04em; }

/* Radio 538 — bold red block */
.logo-538 { background: #ED1B2F; color: var(--white); }

.logo-538-num {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

/* BNNVARA / Spijkers — purple */
.logo-spijkers {
    background: linear-gradient(135deg, #6E1B86 0%, #481F6E 100%);
    color: var(--white);
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem;
}

.logo-spijkers-net {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
}

.logo-spijkers-show {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.logo-spijkers-show em {
    font-style: italic;
    font-weight: 400;
    opacity: 0.85;
    margin: 0 0.2em;
}

.logo-spijkers-bnn {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    margin-top: 0.1rem;
    opacity: 0.75;
}

/* Media area */
.fragment-media {
    background: var(--text);
    position: relative;
    aspect-ratio: 16 / 9;
}

.fragment-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Audio variant — pine gradient body so the red 538 logo above it carries the brand identity alone */
.fragment-media-audio {
    background: linear-gradient(140deg, var(--pine) 0%, var(--pine-mid) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.75rem 1.5rem 1.25rem;
    gap: 1rem;
}

.audio-art {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-art svg {
    width: 100%;
    height: 100%;
    max-height: 110px;
    overflow: visible;
}

.audio-bars rect {
    fill: var(--camel-soft);
    transform-origin: center;
    animation: audio-pulse 1.4s ease-in-out infinite;
}

.audio-bars rect:nth-child(odd)  { animation-delay: 0s; }
.audio-bars rect:nth-child(3n)   { animation-delay: 0.2s; }
.audio-bars rect:nth-child(5n)   { animation-delay: 0.4s; }
.audio-bars rect:nth-child(7n)   { animation-delay: 0.6s; }

@keyframes audio-pulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.55; }
    50%      { transform: scaleY(1);   opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
    .audio-bars rect { animation: none; opacity: 0.8; transform: scaleY(0.85); }
}

.fragment-media-audio audio { width: 100%; max-width: 100%; }

.fragment-meta {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.fragment-date {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--camel);
}

.fragment-meta h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pine);
    line-height: 1.35;
}

.fragment-meta p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .fragments-grid { gap: 1.25rem; }
    .fragment-logo { height: 76px; }
    .logo-ob-brabant { font-size: 1.55rem; }
    .logo-538-num { font-size: 2.4rem; }
    .logo-spijkers-show { font-size: 1.15rem; }
    .fragment-meta { padding: 1.25rem 1.4rem 1.5rem; }
}
