/* =========================================================
   BROUWERIJ DE DUIJNEN — OVER ONS
   ========================================================= */

.about-story-intro {
    padding: 110px 0 100px;
    background: var(--secondary);
}

.about-story-intro-inner {
    max-width: 760px;
}

.about-story-intro h2 {
    margin: 0 0 28px;
    color: #111;
    font-family: var(--heading);
    font-size: clamp(50px, 5vw, 76px);
    font-weight: 500;
    line-height: .97;
    letter-spacing: -.02em;
}

.about-story-intro-inner > p:last-child {
    max-width: 650px;
    margin: 0;
    color: #625d57;
    font-size: 17px;
    line-height: 1.9;
}


/* ---------------------------------------------------------
   PERSONEN
   --------------------------------------------------------- */

.person-section {
    padding: 110px 0;
}

.person-section-light {
    background: #fff;
}

.person-section-alt {
    background: var(--secondary);
}

.person-grid {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 100px;
}

.person-grid-reverse {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
}

.person-grid-reverse .person-image-wrap {
    order: 2;
}

.person-grid-reverse .person-content {
    order: 1;
}

.person-image-wrap {
    display: flex;
    justify-content: center;
}

.person-image {
    position: relative;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    background: #e8e4dd;
}

.person-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.65);
    pointer-events: none;
}

.person-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.person-content {
    max-width: 650px;
}

.person-content .eyebrow {
    margin-bottom: 12px;
}

.person-content h2 {
    margin: 0 0 30px;
    color: #111;
    font-family: var(--heading);
    font-size: clamp(52px, 5.3vw, 78px);
    font-weight: 500;
    line-height: .93;
    letter-spacing: -.025em;
}

.person-content p:not(.eyebrow) {
    margin: 0 0 20px;
    color: #5e5a55;
    font-size: 16px;
    line-height: 1.9;
}

.person-content strong {
    color: #222;
    font-weight: 700;
}

.person-content blockquote {
    margin: 28px 0 0;
    padding-left: 24px;
    border-left: 2px solid #111;
    color: #111;
    font-family: var(--heading);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.25;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.about-logo-section {
    padding: 75px 0 90px;
    background: #fff;
}

.about-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-logo {
    display: block;
    width: auto;
    max-width: 125px;
    max-height: 125px;
    object-fit: contain;
}


/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */

.about-page-contact {
    padding: 95px 0;
    background: #111;
    color: #fff;
}

.about-page-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-page-contact h2 {
    margin: 0;
    color: #fff;
    font-family: var(--heading);
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;
    line-height: .98;
}

.about-page-contact .eyebrow {
    margin-bottom: 14px;
    color: rgba(255,255,255,.55);
}

.about-page-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-page-contact-details a {
    color: #fff;
    font-family: var(--heading);
    font-size: 25px;
    font-weight: 500;
}

.about-page-contact-details a:hover {
    opacity: .65;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 950px) {

    .about-story-intro {
        padding: 80px 0;
    }

    .person-section {
        padding: 80px 0;
    }

    .person-grid,
    .person-grid-reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .person-grid-reverse .person-image-wrap,
    .person-grid-reverse .person-content {
        order: initial;
    }

    .person-image {
        max-width: 600px;
    }

    .person-content {
        max-width: 680px;
    }

    .about-page-contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 650px) {

    .about-story-intro {
        padding: 60px 0;
    }

    .about-story-intro h2 {
        font-size: 46px;
    }

    .about-story-intro-inner > p:last-child {
        font-size: 15px;
    }

    .person-section {
        padding: 60px 0;
    }

    .person-grid {
        gap: 38px;
    }

    .person-image {
        max-width: 100%;
    }

    .person-content h2 {
        font-size: 48px;
    }

    .person-content p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.8;
    }

    .person-content blockquote {
        font-size: 24px;
    }

    .about-logo-section {
        padding: 55px 0 65px;
    }

    .about-page-logo {
        max-width: 95px;
        max-height: 95px;
    }

    .about-page-contact {
        padding: 70px 0;
    }

    .about-page-contact h2 {
        font-size: 48px;
    }

    .about-page-contact-details a {
        font-size: 22px;
    }
}