:root {
    --navy: #081634;
    --navy-light: #142342;
    --orange: #f39200;
    --cream: #f7f4ed;
    --white: #ffffff;
    --text: #172033;
    --muted: #667085;
    --line: #e1e3e7;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
}

.shell {
    width: min(1160px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

/* Bovenste menu */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #ececf0;
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 38px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 130px;
    height: auto;
}

.header-inner nav {
    display: flex;
    gap: 34px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
}

.header-inner nav a {
    position: relative;
    padding: 9px 0;
}

.header-inner nav a:hover,
.header-inner nav a.active {
    color: #b96f00;
}

.header-inner nav a.active::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
}

.header-phone {
    padding-left: 25px;
    border-left: 1px solid var(--line);
    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
}

.header-phone span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* Eerste gedeelte */

.hero {
    overflow: hidden;
    background: var(--cream);
}

.hero-grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #b96f00;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero h1 em {
    display: block;
    color: #d58408;
    font-weight: 400;
}

.hero-copy > p {
    max-width: 660px;
    margin: 28px 0;
    color: #525d6c;
    font-size: 18px;
    line-height: 1.8;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 27px;
    border: 0;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.18s ease;
}

.button.primary {
    background: var(--orange);
    color: #111a32;
    box-shadow: 0 10px 25px rgba(203, 124, 0, 0.18);
}

.button.primary:hover {
    background: #ffae2d;
    transform: translateY(-2px);
}

.button.ghost {
    background: var(--white);
    border: 1px solid #ccd0d7;
}

.button.ghost:hover {
    border-color: var(--navy);
}

.hero-panel {
    position: relative;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 45px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 24px 24px 0 var(--orange);
}

.hero-panel::before {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    content: "";
}

.roof-mark {
    position: absolute;
    top: 45px;
    right: 48px;
    color: var(--orange);
    font-size: 125px;
    line-height: 1;
}

.hero-panel strong {
    position: relative;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1.06;
}

.hero-panel > span {
    position: relative;
    margin-top: 20px;
    color: #c2c7d6;
}

/* Diensten */

.services {
    padding: 110px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 48px;
}

.section-heading h2,
.promise h2,
.cta h2 {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service-card {
    min-height: 300px;
    padding: 34px;
    background: var(--white);
    transition: 0.18s ease;
}

.service-card:hover {
    background: #fbf8f1;
    transform: translateY(-3px);
}

.service-card > span {
    color: #c77b0b;
    font-size: 12px;
    font-weight: 900;
}

.service-card h3 {
    margin: 47px 0 12px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
}

.service-card a {
    display: inline-block;
    margin-top: 15px;
    color: #9a5a00;
    font-size: 12px;
    font-weight: 900;
}

/* Waarom HARO */

.promise {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
}

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

.eyebrow.light {
    color: #f5ad3f;
}

.ticks p {
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ticks b {
    color: var(--orange);
    font-size: 20px;
}

.ticks span {
    color: #bfc5d5;
}

.ticks strong {
    display: block;
    color: var(--white);
}

/* Onderste contactblok */

.cta {
    padding: 90px 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    background: var(--cream);
    border-left: 6px solid var(--orange);
}

.cta-box p {
    max-width: 650px;
    margin: 15px 0 0;
    color: var(--muted);
}

/* Contactpagina */

.contact-hero {
    padding: 85px 0;
    background: var(--cream);
}

.contact-hero h1 {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
}

.contact-section {
    padding: 85px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
}

.contact-info h2,
.form-card h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.contact-info > p {
    color: var(--muted);
}

.contact-line {
    display: block;
    margin: 22px 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
}

.contact-line small {
    display: block;
    color: #a66300;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.form-card {
    padding: 42px;
    background: #f8f7f3;
    border-top: 5px solid var(--orange);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.field input,
.field textarea {
    width: 100%;
    padding: 14px 15px;
    background: var(--white);
    border: 1px solid #cdd0d5;
    border-radius: 2px;
    color: var(--text);
    font: inherit;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: #bf7300;
    outline: 2px solid rgba(238, 155, 22, 0.35);
}

.check {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
}

.check input {
    width: auto;
    margin-top: 5px;
}

.notice {
    margin-bottom: 20px;
    padding: 14px 17px;
    border-radius: 3px;
}

.notice ul {
    margin-bottom: 0;
}

.notice.success {
    background: #e7f4ea;
    color: #17612c;
}

.notice.error {
    background: #fde9e7;
    color: #8a251b;
}

.hp {
    position: absolute;
    left: -9999px;
}

/* Footer */

footer {
    padding: 65px 0 24px;
    background: #070e25;
    color: #c0c6d5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.footer-logo {
    width: 130px;
    padding: 6px;
    background: var(--white);
    border-radius: 3px;
}

footer p {
    max-width: 420px;
}

footer h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 16px;
}

footer a {
    display: block;
    margin: 6px 0;
}

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

.copyright {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* Tablet */

@media (max-width: 850px) {

    .header-inner {
        min-height: 82px;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .brand img {
        width: 105px;
    }

    .header-inner nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 9px 0;
        border-top: 1px solid var(--line);
    }

    .header-phone {
        margin-left: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 80px 0 90px;
    }

    .hero-panel {
        min-height: 340px;
    }

    .section-heading,
    .promise-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

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

/* Mobiele telefoon */

@media (max-width: 560px) {

    .shell {
        width: min(100% - 28px, 1160px);
    }

    .brand img {
        width: 90px;
    }

    .header-phone {
        padding-left: 12px;
        font-size: 14px;
    }

    .header-phone span {
        font-size: 8px;
    }

    .header-inner nav {
        gap: 25px;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 62px;
    }

    .hero h1 {
        font-size: 49px;
    }

    .hero-panel {
        min-height: 320px;
        padding: 42px 32px;
    }

    .hero-panel strong {
        font-size: 37px;
    }

    .service-grid,
    .field-row {
        grid-template-columns: 1fr;
    }

    .services,
    .promise,
    .contact-section {
        padding: 70px 0;
    }

    .cta {
        padding: 55px 0;
    }

    .cta-box,
    .form-card {
        padding: 30px 24px;
    }

    .footer-grid {
        gap: 30px;
    }
}
