/* =========================================================
   Lettertype
   ========================================================= */

@font-face {
    font-family: "SS Soapy Hands";
    src: url("../fonts/SS Soapy Hands Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   Kleuren en basisinstellingen
   ========================================================= */

:root {
    --green: #52bd22;
    --green-dark: #3b8e19;
    --green-light: #d8f6c5;
    --white: #ffffff;
    --text: #50604b;
    --page-text: #4d7342;
    --page-text-soft: #557d48;

    --handwritten-font:
        "SS Soapy Hands",
        "Comic Sans MS",
        cursive;
}

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

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;

    min-height: 100vh;
    min-height: 100svh;

    overflow-x: hidden;

    background-color: var(--white);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(59, 142, 25, 0.4);
    outline-offset: 4px;
}


/* =========================================================
   INDEXPAGINA
   ========================================================= */

/* Smalle band bovenaan */

.top-bar {
    flex: 0 0 18px;

    width: 100%;
    height: 18px;

    background-color: var(--green-light);
}


/* Centrale inhoud */

.home {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 35px 25px;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;

    text-align: center;
}

.home-logo {
    display: block;

    width: min(520px, 72vw);
    max-height: 58vh;
    height: auto;

    object-fit: contain;
}

.tagline {
    margin: 24px 15px 0;

    color: var(--green);

    font-family: var(--handwritten-font);
    font-size: clamp(1.45rem, 2.3vw, 2.1rem);
    font-weight: normal;
    line-height: 1.25;
}

.tagline span {
    margin: 0 7px;
}


/* Navigatie onderaan */

.main-navigation {
    flex-shrink: 0;

    width: 100%;

    background-color: var(--green-light);
}

.main-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 6vw, 90px);

    max-width: 1300px;
    min-height: 62px;
    margin: 0 auto;
    padding: 8px 30px;

    list-style: none;
}

.main-navigation li {
    margin: 0;
    padding: 0;
}

.main-navigation a {
    position: relative;

    display: inline-block;
    padding: 8px 2px;

    color: var(--text);

    font-family: var(--handwritten-font);
    font-size: clamp(1.15rem, 1.65vw, 1.55rem);
    line-height: 1.1;
    text-align: center;
    text-decoration: none;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;

    height: 1px;

    background-color: currentColor;

    content: "";
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
    color: var(--green-dark);
    transform: translateY(-2px);
}


/* =========================================================
   INHOUDSPAGINA'S
   ========================================================= */

.content-page {
    display: flex;
    flex-direction: column;

    min-height: 100vh;
    min-height: 100svh;

    margin: 0;

    background-color: var(--white);
    color: var(--page-text);

    font-family: var(--handwritten-font);
}


/* Navigatie bovenaan */

.page-header {
    flex-shrink: 0;

    width: 100%;

    background-color: var(--green-light);
}

.top-navigation {
    width: 100%;
}

.top-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(35px, 6vw, 95px);

    max-width: 1300px;
    min-height: 72px;
    margin: 0 auto;
    padding: 10px 30px;

    list-style: none;
}

.top-navigation li {
    margin: 0;
    padding: 0;
}

.top-navigation a {
    position: relative;

    display: inline-block;
    padding: 7px 2px;

    color: var(--text);

    font-family: var(--handwritten-font);
    font-size: clamp(1.25rem, 1.7vw, 1.65rem);
    line-height: 1.1;
    text-align: center;
    text-decoration: none;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.top-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;

    height: 1px;

    background-color: currentColor;

    content: "";
}

.top-navigation a:hover,
.top-navigation a:focus-visible,
.top-navigation a.active {
    color: var(--green-dark);
}

.top-navigation a:hover {
    transform: translateY(-2px);
}


/* Mobiele header */

.mobile-header {
    display: none;
}

.mobile-brand {
    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: 1.45rem;
    text-decoration: none;
}

.menu-button {
    display: none;
}


/* Algemene pagina-inhoud */

.page-main {
    display: flex;
    flex: 1;

    width: 100%;
}

.maker-section {
    display: flex;
    flex: 1;
    align-items: center;

    width: 100%;
    padding: 55px 30px 90px;
}

.maker-content {
    position: relative;

    width: min(1120px, 100%);
    min-height: 680px;
    margin: 0 auto;
    padding-bottom: 120px;
}

.maker-content h1 {
    width: fit-content;
    margin: 0 auto 48px;

    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: normal;
    line-height: 1;
    text-align: center;
}

.maker-content h1::after {
    display: block;

    width: 100%;
    height: 2px;
    margin-top: 8px;

    background-color: currentColor;

    content: "";
}


/* Tweedelige desktoplay-out */

.maker-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 650px);
    align-items: center;
    justify-content: center;
    gap: clamp(45px, 6vw, 90px);
}

.maker-photo-column {
    display: flex;
    justify-content: center;
}

.maker-photo {
    width: 100%;
    max-width: 330px;
    aspect-ratio: 4 / 5;

    border-radius: 28px;
}

.maker-photo {
    display: block;

    object-fit: cover;

    box-shadow: 0 14px 38px rgba(64, 105, 52, 0.14);
}

/* Tekst */

.maker-text-column {
    min-width: 0;
}

.maker-text {
    color: var(--page-text-soft);

    font-family: var(--handwritten-font);
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.35;
}

.maker-text p {
    margin: 0 0 27px;
}

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


/* Klavertje op elke inhoudspagina */

.page-clover {
    position: absolute;
    right: 45px;
    bottom: 20px;

    display: block;

    width: 105px;
    height: auto;

    object-fit: contain;
}

/* Alleen tekst beschikbaar */

.maker-layout--text-only {
    display: block;

    width: min(720px, 100%);
    margin: 0 auto;
}


/* Alleen foto beschikbaar */

.maker-layout--photo-only {
    display: flex;
    justify-content: center;
}


/* Footer */

.page-footer {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 70px;
    padding: 15px 25px;

    background-color: var(--green-light);
    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: 1.3rem;
    text-align: center;
}

.page-footer p {
    margin: 0;
}

/* =========================================================
   Van glas tot kunstwerk
   ========================================================= */

.steps-section {
    display: flex;
    flex: 1;

    width: 100%;
    padding: 55px 30px 90px;
}

.steps-content {
    position: relative;

    width: min(1180px, 100%);
    min-height: 680px;
    margin: 0 auto;
    padding-bottom: 135px;
}


/* Titel en introductie */

.steps-intro {
    margin-bottom: 75px;
    text-align: center;
}

.steps-intro h1 {
    width: fit-content;
    margin: 0 auto 22px;

    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: normal;
    line-height: 1;
}

.steps-intro h1::after {
    display: block;

    width: 100%;
    height: 2px;
    margin-top: 8px;

    background-color: currentColor;

    content: "";
}

.steps-intro p {
    max-width: 850px;
    margin: 0 auto;

    color: var(--page-text-soft);

    font-family: var(--handwritten-font);
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    line-height: 1.35;
}


/* Lijst met stappen */

.steps-list {
    display: flex;
    flex-direction: column;
    gap: clamp(80px, 10vw, 145px);
}

.step-item {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(280px, 430px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(45px, 7vw, 105px);
}

.step-item--reverse {
    grid-template-columns: minmax(280px, 430px) minmax(0, 520px);
}

.step-item--reverse .step-image-column {
    grid-column: 1;
    grid-row: 1;
}

.step-item--reverse .step-text {
    grid-column: 2;
    grid-row: 1;
}


/* Geen afbeelding beschikbaar */

.step-item--without-image {
    display: block;

    width: min(720px, 100%);
    margin: 0 auto;
}

.step-item--without-image .step-text {
    width: 100%;
}


/* Tekst */

.step-text {
    color: var(--page-text-soft);

    font-family: var(--handwritten-font);
}

.step-text h2 {
    margin: 0 0 10px;

    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: clamp(1.65rem, 2.2vw, 2.15rem);
    font-weight: normal;
    line-height: 1.2;
}

.step-number {
    margin-right: 5px;
}

.step-text p {
    margin: 0;

    font-size: clamp(1.3rem, 1.75vw, 1.65rem);
    line-height: 1.38;
}


/* Afbeelding */

.step-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image {
    display: block;

    width: 100%;
    max-width: 430px;
    max-height: 390px;

    border-radius: 24px;

    object-fit: cover;

    box-shadow: 0 14px 38px rgba(64, 105, 52, 0.14);
}


/* Slottekst */

.steps-closing {
    max-width: 900px;
    margin: 135px auto 0;

    color: var(--page-text-soft);

    font-family: var(--handwritten-font);
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    line-height: 1.35;
    text-align: center;
}

/* =========================================================
   Mijn creaties
   ========================================================= */

.gallery-section {
    display: flex;
    flex: 1;

    width: 100%;
    padding: 55px 30px 90px;
}

.gallery-content {
    position: relative;

    width: min(1180px, 100%);
    min-height: 700px;
    margin: 0 auto;
    padding-bottom: 135px;
}


/* Titel en introductie */

.gallery-intro {
    margin-bottom: 65px;
    text-align: center;
}

.gallery-intro h1 {
    width: fit-content;
    margin: 0 auto 22px;

    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: normal;
    line-height: 1;
}

.gallery-intro h1::after {
    display: block;

    width: 100%;
    height: 2px;
    margin-top: 8px;

    background-color: currentColor;

    content: "";
}

.gallery-intro p {
    max-width: 850px;
    margin: 0 auto;

    color: var(--page-text-soft);

    font-family: var(--handwritten-font);
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    line-height: 1.35;
}


/* Raster */

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

.gallery-item {
    display: block;
    overflow: hidden;

    width: 100%;
    padding: 0;

    border: 0;
    border-radius: 22px;

    background: transparent;

    cursor: pointer;

    box-shadow: 0 12px 32px rgba(64, 105, 52, 0.12);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
    transform: translateY(-4px);

    box-shadow: 0 18px 42px rgba(64, 105, 52, 0.18);
}

.gallery-item img {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform 250ms ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-item--hidden {
    display: none;
}


/* Toon meer */

.gallery-more-wrapper {
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

.gallery-more-button {
    padding: 11px 28px;

    border: 0;
    border-radius: 0;

    background-color: var(--green-light);
    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: 1.45rem;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.gallery-more-button:hover,
.gallery-more-button:focus-visible {
    background-color: #c9efb0;
    transform: translateY(-2px);
}


/* =========================================================
   Lightbox
   ========================================================= */

body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background-color: rgba(20, 35, 18, 0.88);
}

.gallery-lightbox[hidden] {
    display: none;
}

.lightbox-content {
    display: flex;
    flex-direction: column;

    max-width: min(1100px, 100%);
    max-height: calc(100vh - 80px);
    max-height: calc(100svh - 80px);

    overflow: auto;

    border-radius: 18px;

    background-color: var(--white);

    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-image {
    display: block;

    max-width: 100%;
    max-height: 75vh;

    object-fit: contain;

    background-color: #f5f5f5;
}

.lightbox-caption {
    padding: 22px 28px 26px;

    color: var(--page-text);

    font-family: var(--handwritten-font);
    text-align: center;
}

.lightbox-caption h2 {
    margin: 0 0 10px;

    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: normal;
}

.lightbox-caption p {
    margin: 0;

    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.4;
}

.lightbox-close {
    position: fixed;
    z-index: 1001;
    top: 18px;
    right: 25px;

    width: 52px;
    height: 52px;
    padding: 0;

    border: 0;

    background: transparent;
    color: var(--white);

    font-family: Arial, sans-serif;
    font-size: 3rem;
    font-weight: 200;
    line-height: 1;

    cursor: pointer;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 900px) {
    .gallery-grid {
        gap: 20px;
    }
}


/* =========================================================
   Mobiel
   ========================================================= */

@media (max-width: 700px) {
    .gallery-section {
        display: block;
        padding: 38px 18px 55px;
    }

    .gallery-content {
        min-height: auto;
        padding-bottom: 115px;
    }

    .gallery-intro {
        margin-bottom: 45px;
    }

    .gallery-intro h1 {
        font-size: clamp(2.55rem, 12vw, 3.4rem);
    }

    .gallery-intro p {
        font-size: clamp(1.25rem, 5.8vw, 1.55rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .gallery-item {
        border-radius: 14px;
    }

    .gallery-more-wrapper {
        margin-top: 35px;
    }

    .gallery-lightbox {
        padding: 55px 14px 20px;
    }

    .lightbox-content {
        max-height: calc(100svh - 75px);
    }

    .lightbox-image {
        max-height: 68vh;
    }

    .lightbox-caption {
        padding: 18px 20px 22px;
    }

    .lightbox-close {
        top: 8px;
        right: 10px;

        width: 46px;
        height: 46px;

        font-size: 2.7rem;
    }
}

/* =========================================================
   Jouw idee in glas
   ========================================================= */

.custom-order-section {
    display: flex;
    flex: 1;

    width: 100%;
    padding: 55px 30px 90px;
}

.custom-order-content {
    position: relative;

    width: min(1000px, 100%);
    min-height: 680px;
    margin: 0 auto;
    padding-bottom: 145px;
}

.custom-order-content h1 {
    width: fit-content;
    margin: 0 auto 45px;

    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: normal;
    line-height: 1;
    text-align: center;
}

.custom-order-content h1::after {
    display: block;

    width: 100%;
    height: 2px;
    margin-top: 8px;

    background-color: currentColor;

    content: "";
}


/* Tekst */

.custom-order-text {
    width: min(780px, 100%);
    margin: 0 auto;

    color: var(--page-text-soft);

    font-family: var(--handwritten-font);
    font-size: clamp(1.25rem, 1.65vw, 1.55rem);
    line-height: 1.35;
}

.custom-order-intro {
    margin: 0 0 28px;
}

.custom-order-step {
    margin-bottom: 27px;
}

.custom-order-step:last-child {
    margin-bottom: 0;
}

.custom-order-step h2 {
    margin: 0 0 4px;

    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: 1.15em;
    font-weight: normal;
    line-height: 1.25;
}

.custom-order-step h2 span {
    margin-right: 4px;
}

.custom-order-step p {
    margin: 0 0 7px;
}

.custom-order-step p:last-child {
    margin-bottom: 0;
}


/* Knop */

.custom-order-action {
    display: flex;
    justify-content: center;

    margin-top: 55px;
}

.custom-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 62px;
    padding: 12px 34px;

    background-color: var(--green-light);
    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.custom-order-button:hover,
.custom-order-button:focus-visible {
    background-color: #c9efb0;
    transform: translateY(-2px);
}

/* =========================================================
   Contact
   ========================================================= */

.contact-section {
    display: flex;
    flex: 1;

    width: 100%;
    padding: 55px 30px 90px;
}

.contact-content {
    position: relative;

    width: min(760px, 100%);
    min-height: 680px;
    margin: 0 auto;
    padding-bottom: 135px;
}

.contact-content h1 {
    width: fit-content;
    margin: 0 auto 25px;

    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: normal;
    line-height: 1;
    text-align: center;
}

.contact-content h1::after {
    display: block;

    width: 100%;
    height: 2px;
    margin-top: 8px;

    background-color: currentColor;

    content: "";
}

.contact-intro {
    max-width: 650px;
    margin: 0 auto 42px;

    color: var(--page-text-soft);

    font-family: var(--handwritten-font);
    font-size: clamp(1.3rem, 1.8vw, 1.65rem);
    line-height: 1.35;
    text-align: center;
}


/* Formulier */

.contact-form {
    display: grid;
    gap: 25px;

    width: 100%;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: 1.45rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 13px 15px;

    border: 1px solid rgba(77, 115, 66, 0.35);
    border-radius: 8px;

    background-color: var(--white);
    color: #34432f;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.5;

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

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

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--green-dark);
    outline: none;

    box-shadow: 0 0 0 3px rgba(82, 189, 34, 0.15);
}


/* Knop */

.contact-submit {
    display: flex;
    justify-content: center;

    margin-top: 10px;
}

.contact-submit-button {
    min-height: 58px;
    padding: 12px 34px;

    border: 0;

    background-color: var(--green-light);
    color: var(--page-text);

    font-family: var(--handwritten-font);
    font-size: 1.55rem;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
    background-color: #c9efb0;
    transform: translateY(-2px);
}


/* Meldingen */

.form-message {
    margin: 0 0 32px;
    padding: 18px 20px;

    border-radius: 8px;

    font-family: var(--handwritten-font);
    font-size: 1.3rem;
    line-height: 1.35;
}

.form-message p {
    margin: 0 0 8px;
}

.form-message ul {
    margin: 0;
    padding-left: 25px;
}

.form-message--success {
    border: 1px solid rgba(59, 142, 25, 0.3);

    background-color: #effbe8;
    color: var(--green-dark);

    text-align: center;
}

.form-message--error {
    border: 1px solid rgba(151, 64, 64, 0.25);

    background-color: #fff1f1;
    color: #874141;
}


/* Verborgen spamveld */

.contact-honeypot {
    position: absolute;
    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {
    .top-navigation ul {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .home {
        padding: 28px 20px;
    }

    .home-logo {
        width: min(480px, 78vw);
    }

    .main-navigation ul {
        gap: 28px;
    }

    .maker-layout {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        gap: 42px;
    }

    .maker-content {
        padding-bottom: 110px;
    }

    .maker-text {
        font-size: 1.4rem;
    }

    .page-clover {
        right: 25px;
        bottom: 15px;
        width: 95px;
    }
}

@media (max-width: 900px) {
    .steps-section {
        padding: 45px 25px 80px;
    }

    .steps-intro {
        margin-bottom: 60px;
    }

    .step-item,
    .step-item--reverse {
        grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
        gap: 45px;
    }

    .step-item--reverse {
        grid-template-columns: minmax(230px, 330px) minmax(0, 1fr);
    }

    .steps-list {
        gap: 90px;
    }

    .steps-closing {
        margin-top: 100px;
    }
}


/* =========================================================
   MOBIEL - INDEX
   ========================================================= */

@media (max-width: 650px) {
    .top-bar {
        flex-basis: 14px;
        height: 14px;
    }

    .home {
        min-height: 0;
        padding: 28px 18px 24px;
    }

    .home-logo {
        width: min(420px, 88vw);
        max-height: 53vh;
    }

    .tagline {
        margin-top: 20px;

        font-size: clamp(1.25rem, 6vw, 1.65rem);
    }

    .tagline span {
        display: none;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;

        min-height: auto;
        padding: 14px 20px 18px;
    }

    .main-navigation a {
        padding: 8px 4px;

        font-size: clamp(1.4rem, 6vw, 1.85rem);
    }

    .main-navigation a::after {
        display: none;
    }
}


/* =========================================================
   MOBIEL - INHOUDSPAGINA'S
   ========================================================= */

@media (max-width: 700px) {
    .page-header {
        position: relative;
        z-index: 10;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;

        min-height: 68px;
        padding: 10px 18px;
    }

    .menu-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        width: 46px;
        height: 46px;
        padding: 10px;

        border: 0;

        background: transparent;

        cursor: pointer;
    }

    .menu-button span {
        display: block;

        width: 100%;
        height: 2px;

        background-color: var(--page-text);

        transition:
            transform 180ms ease,
            opacity 180ms ease;
    }

    .menu-button.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .top-navigation {
        display: none;

        border-top: 1px solid rgba(77, 115, 66, 0.18);
    }

    .top-navigation.is-open {
        display: block;
    }

    .top-navigation ul {
        flex-direction: column;
        gap: 0;

        min-height: auto;
        padding: 10px 20px 18px;
    }

    .top-navigation a {
        display: block;

        padding: 10px 4px;

        font-size: 1.55rem;
    }

    .top-navigation a::after {
        display: none;
    }

    .maker-section {
        display: block;
        min-height: auto;
        padding: 38px 22px 55px;
    }

    .maker-content {
        min-height: auto;
        padding-bottom: 115px;
    }

    .maker-content h1 {
        margin-bottom: 34px;

        font-size: clamp(2.55rem, 12vw, 3.4rem);
    }

    .maker-layout {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .maker-photo-column {
        width: 100%;
    }

    .maker-photo {
        width: min(280px, 78vw);
    }

    .maker-layout--text-only {
        width: 100%;
    }

    .maker-text-column {
        width: 100%;
    }

    .maker-text {
        max-width: 100%;

        font-size: clamp(1.3rem, 5.8vw, 1.6rem);
        line-height: 1.35;
    }

    .maker-text p {
        margin-bottom: 25px;
    }

    .maker-text br {
        display: none;
    }

    .page-clover {
        right: 15px;
        bottom: 18px;
        width: 85px;
    }

    .page-footer {
        min-height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 700px) {
    .steps-section {
        display: block;
        padding: 38px 22px 55px;
    }

    .steps-content {
        min-height: auto;
        padding-bottom: 115px;
    }

    .steps-intro {
        margin-bottom: 50px;
    }

    .steps-intro h1 {
        margin-bottom: 22px;

        font-size: clamp(2.55rem, 12vw, 3.4rem);
    }

    .steps-intro p {
        font-size: clamp(1.25rem, 5.8vw, 1.55rem);
    }

    .steps-list {
        gap: 70px;
    }

    .step-item,
    .step-item--reverse,
    .step-item--without-image {
        display: flex;
        flex-direction: column;

        width: 100%;
        gap: 28px;
    }

    /*
     * Op mobiel staat voor elke stap eerst de tekst
     * en daarna de afbeelding.
     */
    .step-item--reverse .step-text,
    .step-item--reverse .step-image-column {
        grid-column: auto;
        grid-row: auto;
    }

    .step-item--reverse .step-text {
        order: 1;
    }

    .step-item--reverse .step-image-column {
        order: 2;
    }

    .step-text {
        width: 100%;
    }

    .step-text h2 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    .step-text p {
        font-size: clamp(1.3rem, 5.8vw, 1.6rem);
        line-height: 1.35;
    }

    .step-image-column {
        width: 100%;
    }

    .step-image {
        width: min(100%, 430px);
        max-height: none;
    }

    .steps-closing {
        margin-top: 80px;

        font-size: clamp(1.3rem, 5.8vw, 1.6rem);
        text-align: left;
    }
}

@media (max-width: 700px) {
    .custom-order-section {
        display: block;
        padding: 38px 22px 55px;
    }

    .custom-order-content {
        min-height: auto;
        padding-bottom: 115px;
    }

    .custom-order-content h1 {
        margin-bottom: 35px;

        font-size: clamp(2.55rem, 12vw, 3.4rem);
    }

    .custom-order-text {
        width: 100%;

        font-size: clamp(1.3rem, 5.8vw, 1.6rem);
        line-height: 1.35;
    }

    .custom-order-intro {
        margin-bottom: 30px;
    }

    .custom-order-step {
        margin-bottom: 30px;
    }

    .custom-order-action {
        margin-top: 45px;
    }

    .custom-order-button {
        width: min(100%, 320px);

        font-size: 1.5rem;
    }
}

@media (max-width: 700px) {
    .contact-section {
        display: block;
        padding: 38px 22px 55px;
    }

    .contact-content {
        min-height: auto;
        padding-bottom: 115px;
    }

    .contact-content h1 {
        font-size: clamp(2.55rem, 12vw, 3.4rem);
    }

    .contact-intro {
        margin-bottom: 35px;

        font-size: clamp(1.3rem, 5.8vw, 1.6rem);
    }

    .contact-form {
        gap: 22px;
    }

    .form-field label {
        font-size: 1.4rem;
    }

    .contact-submit-button {
        width: min(100%, 320px);
    }
}


/* =========================================================
   ZEER KLEINE OF LAGE SCHERMEN
   ========================================================= */

@media (max-width: 650px) and (max-height: 750px) {
    .home {
        padding-top: 18px;
        padding-bottom: 16px;
    }

    .home-logo {
        width: min(330px, 72vw);
        max-height: 42vh;
    }

    .tagline {
        margin-top: 12px;
        font-size: 1.2rem;
    }

    .main-navigation ul {
        padding-top: 8px;
        padding-bottom: 10px;
    }

    .main-navigation a {
        padding: 5px 4px;
        font-size: 1.4rem;
    }
}