@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --olive:        #4a5c3a;
    --olive-dark:   #2f3d24;
    --olive-mid:    #5c7048;
    --olive-light:  #8a9e78;
    --gold:         #c9a84c;
    --gold-light:   #dfc07a;
    --gold-pale:    #f5edd8;
    --cream:        #faf8f3;
    --white:        #ffffff;
    --text-dark:    #1e2418;
    --text-mid:     #4a5040;
    --text-light:   #8a8f80;
    --border:       rgba(201,168,76,0.25);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

/* ─── UTILITIES ──────────────────────────────────── */
.gold-line {
    display: inline-block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 12px;
}

/* ─── HEADER ─────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(47, 61, 36, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: padding 0.3s ease;
    padding: 1.4rem 0;
}

header.scrolled {
    padding: 0.9rem 0;
    background: rgba(30, 39, 22, 0.99);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-link { display: flex; align-items: center; text-decoration: none; gap: 12px; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-text span { color: var(--gold); }

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
}

.logo-img { max-height: 104px; width: auto; }

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover { color: var(--gold-light); }
nav a:hover::after { width: 100%; }

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--olive-dark) !important;
}

.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--gold-light);
    transition: all 0.3s;
    border-radius: 1px;
}

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

.hamburger { position: relative; z-index: 1100; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--olive-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(47,61,36,0.94) 0%, rgba(30,39,22,0.88) 60%, rgba(47,61,36,0.8) 100%),
        url('hero-background.jpg') center/cover no-repeat;
    z-index: 0;
}

/* Decorative geometric element */
.hero-bg::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(201,168,76,0.04),
        0 0 0 160px rgba(201,168,76,0.025);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 8rem 2.5rem 6rem;
    width: 100%;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeSlideUp 0.8s ease both;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.8rem;
    max-width: 800px;
    animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.45s ease both;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--olive-dark);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-ghost:hover { color: var(--gold-light); }

.btn-ghost::after {
    content: '→';
    transition: transform 0.3s;
}

.btn-ghost:hover::after { transform: translateX(4px); }

.hero-stats {
    position: absolute;
    bottom: 4rem;
    right: 2.5rem;
    z-index: 2;
    display: flex;
    gap: 3rem;
    animation: fadeSlideUp 0.8s 0.6s ease both;
}

.hero-stat { text-align: right; }

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* ─── SECTIONS (shared) ──────────────────────────── */
.section-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

section { padding: 6rem 0; }

.section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--olive-dark);
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--olive-mid); }

.section-intro {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 540px;
    line-height: 1.8;
}

/* ─── ABOUT STRIP ────────────────────────────────── */
.about-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border);
    z-index: 0;
    border-radius: 2px;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.about-image-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    background: linear-gradient(145deg, var(--olive-dark) 0%, var(--olive-mid) 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder svg { opacity: 0.15; }

.about-text { padding: 2rem 0; }

.about-text p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-mid);
    margin-bottom: 1.4rem;
    line-height: 1.9;
}

.about-bullets {
    list-style: none;
    margin: 2rem 0;
}

.about-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-mid);
}

.about-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* ─── DIENSTEN ───────────────────────────────────── */
.diensten { background: var(--cream); }

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
    background: var(--border);
}

.dienst-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.dienst-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.dienst-card:hover { background: var(--cream); }
.dienst-card:hover::before { transform: scaleX(1); }

.dienst-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(74,92,58,0.08);
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.dienst-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 1rem;
}

.dienst-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.dienst-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.dienst-link::after { content: '→'; }
.dienst-link:hover { gap: 14px; }

/* ─── WAAROM ─────────────────────────────────────── */
.waarom {
    background: var(--olive-dark);
    position: relative;
    overflow: hidden;
}

.waarom::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 30rem;
    line-height: 1;
    color: rgba(201,168,76,0.04);
    position: absolute;
    top: -5rem;
    left: -3rem;
    pointer-events: none;
}
 
.waarom-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.waarom-text .section-title { color: var(--white); }
.waarom-text .section-intro { color: rgba(255,255,255,0.55); }

.waarom-quote {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.5;
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
    margin-top: 2.5rem;
}

.waarom-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pillar {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.pillar:first-child { padding-top: 0; }

.pillar-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    padding-top: 4px;
}

.pillar h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.pillar p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ─── WERKWIJZE STRIP ────────────────────────────── */
.werkwijze-strip {
    background: var(--gold-pale);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 5rem 0;
}

.werkwijze-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
}

.werkwijze-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.step-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--olive-dark);
    box-shadow: 0 4px 16px rgba(201,168,76,0.2);
}

.step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ─── SECTOREN ───────────────────────────────────── */
.sectoren { background: var(--white); }

.sectoren-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.sector-tag {
    padding: 0.7rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-mid);
    background: var(--cream);
    transition: all 0.3s;
    cursor: default;
}

.sector-tag:hover {
    border-color: var(--gold);
    color: var(--olive-dark);
    background: var(--gold-pale);
}

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary { position: relative; z-index: 1; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.6);
    padding: 5rem 0 2.5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand .logo-text span { color: var(--gold); }

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    max-width: 280px;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col a, .footer-col p {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.25s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid,
    .waarom-inner { grid-template-columns: 1fr; gap: 3rem; }

    .diensten-grid { grid-template-columns: 1fr 1fr; }

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

    .werkwijze-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .werkwijze-steps::before { display: none; }

    .hero-stats { position: static; margin-top: 4rem; }
}

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

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(47, 61, 36, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1090;
    }

    nav.active { transform: translateX(0); }

    nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 80%;
    }

    nav li {
        opacity: 0;
        transform: translateY(20px);
    }

    nav.active li {
        animation: fadeSlideUp 0.5s ease forwards;
    }

    nav.active li:nth-child(1) { animation-delay: 0.1s; }
    nav.active li:nth-child(2) { animation-delay: 0.18s; }
    nav.active li:nth-child(3) { animation-delay: 0.26s; }
    nav.active li:nth-child(4) { animation-delay: 0.34s; }
    nav.active li:nth-child(5) { animation-delay: 0.42s; }

    nav a {
        font-size: 1.1rem;
        display: block;
        padding: 1.3rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.85);
    }

    .nav-cta { border: 1px solid var(--gold) !important; padding: 1rem 2rem !important; margin-top: 1rem; }

    .diensten-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .hero h1 { font-size: 2.6rem; }

    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .hero-stat { text-align: left; }

    .werkwijze-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .header-container { padding: 0 1.5rem; }
    .section-wrap { padding: 0 1.5rem; }
    .footer-grid { padding: 0 1.5rem; }
    .footer-bottom { padding: 1.5rem 1.5rem 0; }
}