/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
    padding: 52px 0 80px;
    background: #faf9f7;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.about-page__hero {
    margin-bottom: 34px;

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(212, 183, 120, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #171717 0%,
            #080808 100%
        );

    border-radius: 22px;

    overflow: hidden;
}

.about-page__hero-inner {
    position: relative;

    min-height: 185px;

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

    gap: 30px;

    padding: 38px 42px;
}

.about-page__hero .section-kicker {
    margin-bottom: 8px;

    color: #d4b778;
}

.about-page__hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: "Nunito", sans-serif;

    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;

    line-height: 1;

    letter-spacing: -0.035em;
}


/* =========================================================
   HERO ICON
   ========================================================= */

.about-page__hero-mark {
    position: relative;

    flex: 0 0 auto;

    width: 88px;
    height: 88px;

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

    border:
        1px solid rgba(212, 183, 120, 0.22);

    border-radius: 50%;

    background:
        rgba(173, 132, 54, 0.08);

    color: #d4b778;

    font-size: 34px;
}

.about-page__hero-mark::after {
    content: "";

    position: absolute;

    width: 118px;
    height: 118px;

    border:
        1px solid rgba(212, 183, 120, 0.08);

    border-radius: 50%;
}


/* =========================================================
   ABOUT CONTENT LAYOUT
   ========================================================= */

.about-page__layout {
    display: grid;

    grid-template-columns:
        minmax(240px, 320px)
        minmax(0, 1fr);

    gap: 30px;

    align-items: start;
}


/* =========================================================
   LEFT INTRO
   ========================================================= */

.about-page__intro {
    position: sticky;
    top: 24px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #f5efe4 0%,
            #eee3cf 100%
        );

    border:
        1px solid #e2d6c0;

    border-radius: 18px;
}

.about-page__label {
    display: inline-block;

    margin-bottom: 14px;

    color: #8d6826;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.about-page__intro h2 {
    margin: 0;

    color: #111111;

    font-family: "Nunito", sans-serif;

    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.025em;
}

.about-page__accent {
    width: 42px;
    height: 3px;

    margin: 21px 0;

    background: #ad8436;

    border-radius: 10px;
}

.about-page__intro p {
    margin: 0;

    color: #746d62;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   ABOUT ARTICLE CONTENT
   ========================================================= */

.about-page__content {
    padding: 38px 42px;

    background: #ffffff;

    border: 1px solid #e8e4dc;

    border-radius: 18px;

    color: #57534d;

    font-size: 14px;

    line-height: 1.85;

    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.04);
}

.about-page__content > *:first-child {
    margin-top: 0;
}

.about-page__content > *:last-child {
    margin-bottom: 0;
}

.about-page__content h2,
.about-page__content h3,
.about-page__content h4 {
    color: #111111;

    font-family: "Nunito", sans-serif;
    font-weight: 700;

    line-height: 1.25;
}

.about-page__content h2 {
    margin:
        34px
        0
        16px;

    font-size: 27px;
}

.about-page__content h3 {
    margin:
        28px
        0
        13px;

    font-size: 21px;
}

.about-page__content p {
    margin:
        0
        0
        18px;
}

.about-page__content strong {
    color: #2a2825;
}

.about-page__content a {
    color: #8d6826;

    text-decoration: underline;
    text-decoration-color:
        rgba(173, 132, 54, 0.35);

    text-underline-offset: 3px;
}

.about-page__content a:hover {
    color: #ad8436;
}

.about-page__content ul,
.about-page__content ol {
    margin:
        18px
        0;

    padding-left: 22px;
}

.about-page__content li {
    margin-bottom: 8px;
}


/* =========================================================
   EMPTY ABOUT STATE
   ========================================================= */

.about-empty {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    min-height: 470px;

    background: #ffffff;

    border: 1px solid #e8e4dc;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.055);
}


/* =========================================================
   EMPTY IMAGE
   ========================================================= */

.about-empty__image {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    background: #ece7dd;
}

.about-empty__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 65%,
            rgba(255, 255, 255, 0.18) 100%
        );

    pointer-events: none;
}

.about-empty__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.about-empty:hover
.about-empty__image img {
    transform: scale(1.025);
}


/* =========================================================
   EMPTY CONTENT
   ========================================================= */

.about-empty__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px;
}

.about-empty__eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #ad8436;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.about-empty__content h2 {
    max-width: 420px;

    margin:
        0
        0
        20px;

    color: #0d0d0d;

    font-family: "Nunito", sans-serif;

    font-size:
        clamp(30px, 3vw, 42px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -0.03em;
}

.about-empty__content p {
    max-width: 500px;

    margin:
        0
        0
        14px;

    color: #716b63;

    font-size: 13.5px;

    line-height: 1.75;
}


/* =========================================================
   EMPTY ACTIONS
   ========================================================= */

.about-empty__actions {
    margin-top: 15px;

    display: flex;
    align-items: center;

    gap: 20px;
}

.about-empty__button {
    min-height: 48px;

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

    gap: 10px;

    padding: 0 21px;

    background: #ad8436;

    border: 1px solid #ad8436;

    border-radius: 50px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.about-empty__button i {
    transition:
        transform 0.2s ease;
}

.about-empty__button:hover {
    background: #090909;

    border-color: #090909;

    color: #ffffff;

    transform: translateY(-2px);
}

.about-empty__button:hover i {
    transform: translateX(4px);
}

.about-empty__link {
    padding-bottom: 3px;

    border-bottom:
        1px solid #ad8436;

    color: #171717;

    font-size: 12px;
    font-weight: 700;
}

.about-empty__link:hover {
    color: #ad8436;
}


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

@media (max-width: 991.98px) {

    .about-page {
        padding-top: 38px;
    }

    .about-page__layout {
        grid-template-columns:
            260px
            minmax(0, 1fr);

        gap: 20px;
    }

    .about-page__intro {
        padding: 24px;
    }

    .about-page__content {
        padding: 30px;
    }

    .about-empty {
        grid-template-columns:
            1fr
            1fr;
    }

    .about-empty__content {
        padding: 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .about-page {
        padding:
            24px
            0
            50px;
    }

    .about-page__hero {
        margin-bottom: 20px;

        border-radius: 16px;
    }

    .about-page__hero-inner {
        min-height: 135px;

        padding: 26px 24px;
    }

    .about-page__hero h1 {
        font-size: 34px;
    }

    .about-page__hero-mark {
        width: 60px;
        height: 60px;

        font-size: 24px;
    }

    .about-page__hero-mark::after {
        width: 78px;
        height: 78px;
    }


    /* Normal content */

    .about-page__layout {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .about-page__intro {
        position: static;

        padding: 24px;

        border-radius: 15px;
    }

    .about-page__intro h2 br {
        display: none;
    }

    .about-page__content {
        padding: 25px 22px;

        border-radius: 15px;

        font-size: 13px;
    }


    /* Empty */

    .about-empty {
        grid-template-columns: 1fr;

        border-radius: 16px;
    }

    .about-empty__image {
        min-height: 260px;
        max-height: 320px;
    }

    .about-empty__content {
        padding:
            31px
            25px
            34px;
    }

    .about-empty__content h2 {
        font-size: 29px;
    }

    .about-empty__actions {
        flex-wrap: wrap;

        gap: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .about-page__hero-mark {
        display: none;
    }

    .about-empty__image {
        min-height: 220px;
    }

    .about-empty__content p {
        font-size: 13px;
    }

}