:root {
    --navy: #0b2b4c;
    --navy-dark: #061c33;
    --gold: #c99625;
    --gold-soft: #f3e5bd;
    --cream: #fbf8f0;
    --white: #ffffff;
    --text: #273445;
    --muted: #667085;
    --border: #e8dfcc;
    --shadow: 0 18px 45px rgba(6, 28, 51, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(820px, calc(100% - 40px));
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand img {
    width: 126px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 700;
    color: var(--navy);
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero {
    background:
        radial-gradient(circle at top right, rgba(201, 150, 37, 0.18), transparent 34%),
        linear-gradient(135deg, var(--cream), var(--white));
    padding: 90px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
}

h1,
h2,
h3 {
    color: var(--navy-dark);
    line-height: 1.15;
}

h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    margin-bottom: 24px;
}

h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    margin-bottom: 18px;
}

h3 {
    font-size: 1.24rem;
    margin-bottom: 12px;
}

.hero-text {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 660px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(11, 43, 76, 0.22);
}

.btn-secondary {
    color: var(--navy);
    border-color: var(--gold);
    background: var(--white);
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow);
    text-align: center;
}

.hero-card img {
    width: 320px;
    margin: 0 auto 20px;
}

.hero-card p {
    color: var(--navy);
    font-weight: 800;
}

.section {
    padding: 82px 0;
}

.soft-bg {
    background: var(--cream);
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.cards {
    display: grid;
    gap: 24px;
}

.three {
    grid-template-columns: repeat(3, 1fr);
}

.four {
    grid-template-columns: repeat(4, 1fr);
}

.card,
.service-card,
.project-card,
.list-card,
.stream-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(6, 28, 51, 0.07);
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--navy);
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card,
.project-card {
    border-top: 4px solid var(--gold);
}

.project-link {
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(23, 50, 77, 0.12);
    border-color: rgba(199, 138, 59, 0.55);
}

.project-link span {
    display: inline-block;
    margin-top: 16px;
    color: var(--warm-accent);
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.list-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.list-card li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
    color: var(--navy);
}

.list-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
}

.stream {
    background:
        linear-gradient(rgba(6, 28, 51, 0.88), rgba(6, 28, 51, 0.88)),
        radial-gradient(circle at top left, rgba(201, 150, 37, 0.35), transparent 38%);
    color: rgba(255, 255, 255, 0.88);
}

.stream h2,
.stream h3 {
    color: var(--white);
}

.stream-box {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.feature-grid span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    color: var(--white);
}

.cta {
    padding-top: 40px;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: rgba(255, 255, 255, 0.88);
    border-radius: 32px;
    padding: 54px 34px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    color: var(--white);
}

.cta-box .btn {
    margin-top: 24px;
    background: var(--gold);
    color: var(--navy-dark);
}

.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 26px 0;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 920px) {
    .hero-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .three,
    .four {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        gap: 16px;
        font-size: 0.92rem;
    }
}

@media (max-width: 680px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1120px);
    }

    .nav-wrap {
        flex-direction: column;
        padding: 14px 0 18px;
    }

    .brand img {
        width: 110px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 58px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .three,
    .four,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-card img {
        width: 240px;
    }

    .footer-wrap {
        justify-content: center;
        text-align: center;
    }
}


.project-card p {
    font-size: 0.96rem;
    line-height: 1.65;
}


.page-hero {
    background:
        radial-gradient(circle at top right, rgba(199, 138, 59, 0.24), transparent 32%),
        radial-gradient(circle at bottom left, rgba(184, 109, 79, 0.16), transparent 26%),
        linear-gradient(135deg, var(--cream-deep), #fffdf9 60%, #ffffff 100%);
    padding: 90px 0 78px;
}

.page-hero p:not(.eyebrow) {
    font-size: 1.16rem;
    color: var(--muted);
}


.about-blocks {
    display: grid;
    gap: 26px;
}

.about-block {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 14px 30px rgba(23, 50, 77, 0.07);
}

.about-block p + p {
    margin-top: 12px;
}


.about-photo-block {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.about-photo {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 34px rgba(23, 50, 77, 0.10);
}

.about-photo img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}

@media (max-width: 920px) {
    .about-photo-block {
        grid-template-columns: 1fr;
    }
}


.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: start;
}

.contact-card,
.info-box {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 14px 30px rgba(23, 50, 77, 0.07);
}

.contact-side {
    display: grid;
    gap: 22px;
}

.contact-form {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-form label {
    color: var(--navy);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 15px;
    font: inherit;
    color: var(--text);
    background: #fffdf9;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 12px;
    cursor: pointer;
}

.info-box ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.info-box li {
    position: relative;
    padding-left: 24px;
    color: var(--navy);
    font-weight: 700;
}

.info-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--warm-accent);
}

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


.dark-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: rgba(255, 255, 255, 0.88);
}

.dark-card h3 {
    color: var(--white);
}


.steps-wrap {
    display: grid;
    gap: 22px;
}

.step-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: start;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 14px 30px rgba(23, 50, 77, 0.07);
}

.step-number {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold), #d8a154);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
}

.step-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    margin-bottom: 10px;
}

@media (max-width: 680px) {
    .step-item {
        grid-template-columns: 1fr;
    }
}

.split .btn {
    margin-top: 24px;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(23, 50, 77, 0.07);
}

.gallery-placeholder,
.video-placeholder {
    height: 210px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(199, 138, 59, 0.25), transparent 34%),
        linear-gradient(135deg, var(--cream-deep), #ffffff);
    border: 1px dashed var(--border);
    color: var(--navy);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.video-placeholder {
    background:
        radial-gradient(circle at top right, rgba(23, 50, 77, 0.20), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--gold-soft);
}

@media (max-width: 920px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


.kwd-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 42px;
}

.kwd-process-card {
    display: block;
    color: inherit;
    border-radius: 24px;
    padding: 38px 34px 34px;
    position: relative;
    overflow: hidden;
    text-align: left;
    min-height: 300px;
    box-shadow: 0 18px 42px rgba(23, 50, 77, 0.12);
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.kwd-process-card.warm-card {
    background: #f6e7d2;
    border-color: #ead1b0;
}

.kwd-process-card.cream-card {
    background: #fff5e6;
    border-color: #eadbc8;
}

.kwd-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(23, 50, 77, 0.16);
}

.kwd-process-number {
    position: absolute;
    top: 8px;
    right: 18px;
    font-size: 86px;
    font-weight: 950;
    line-height: 1;
    color: rgba(23, 50, 77, 0.10);
}

.kwd-process-card.cream-card .kwd-process-number {
    color: rgba(199, 138, 59, 0.18);
}

.kwd-process-icon {
    font-size: 44px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.kwd-process-card h3 {
    color: var(--navy-dark);
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.kwd-process-card p {
    color: var(--muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 980px) {
    .kwd-process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .kwd-process-grid {
        grid-template-columns: 1fr;
    }

    .kwd-process-card {
        min-height: auto;
    }
}


/* Werkwijze cards - layout behouden, alleen beter zichtbaar */
.kwd-process-card.warm-card {
    background: #f4ddbf;
    border-color: #d6a05b;
    box-shadow: 0 20px 44px rgba(23, 50, 77, 0.16);
}

.kwd-process-card.cream-card {
    background: #fff0d8;
    border-color: #d8b37b;
    box-shadow: 0 20px 44px rgba(23, 50, 77, 0.16);
}

.kwd-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(23, 50, 77, 0.20);
}

.kwd-process-number {
    color: rgba(23, 50, 77, 0.16);
}

.kwd-process-card.cream-card .kwd-process-number {
    color: rgba(199, 138, 59, 0.22);
}
