/* Page-specific styles: about-us/index.php */
/* =========================================
   ABOUT PAGE
========================================= */

.about-page {
    overflow: hidden;
}

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


/* Hero */

.about-logo-wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto 18px;
}

.about-logo {
    display: block;
    width: min(210px, 42vw);
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.about-hero {
    position: relative;
    padding: 72px 0 58px;
    text-align: center;
}

.about-hero-inner {
    max-width: 820px;
    margin: auto;
}

.about-eyebrow {
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid rgba(80, 60, 35, .18);
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: clamp(30px, 6vw, 54px);
    line-height: 1.5;
    margin: 0 0 18px;
}

.about-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 2;
    opacity: .82;
}

.about-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}


/* Story */

.about-story {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: stretch;
    margin: 35px auto 55px;
}

.about-story-main,
.about-story-note {
    border: 1px solid rgba(90, 70, 40, .13);
    border-radius: 24px;
    padding: 30px;
}

.about-story-main h2,
.about-story-note h2 {
    margin-top: 0;
}

.about-story-main p,
.about-story-note p {
    line-height: 2;
    margin-bottom: 0;
}

.about-story-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-quote {
    font-size: 21px;
    line-height: 2;
    font-weight: 700;
}


/* Values */

.about-section-title {
    text-align: center;
    margin: 0 0 26px;
}

.about-section-title h2 {
    margin-bottom: 8px;
}

.about-section-title p {
    opacity: .7;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.about-value-card {
    border: 1px solid rgba(90, 70, 40, .13);
    border-radius: 22px;
    padding: 26px;
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
}

.about-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 23px;
    background: rgba(100, 75, 40, .08);
}

.about-value-card h3 {
    margin: 0 0 10px;
}

.about-value-card p {
    line-height: 1.9;
    margin: 0;
    opacity: .78;
}


/* Contact + map */

.about-contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 60px;
}

.about-contact-card,
.about-map-card {
    border: 1px solid rgba(90, 70, 40, .13);
    border-radius: 24px;
    overflow: hidden;
}

.about-contact-card {
    padding: 30px;
}

.about-contact-card h2 {
    margin-top: 0;
}

.about-contact-item {
    margin-top: 22px;
}

.about-contact-item strong {
    display: block;
    margin-bottom: 6px;
}

.about-contact-item p {
    margin: 0;
    line-height: 1.9;
}

.about-phone-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-phone-list a {
    direction: ltr;
    display: inline-block;
    width: fit-content;
}


/* Map */

.about-map-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.about-map-image {
    position: relative;
    min-height: 350px;
    height: 100%;
    overflow: hidden;
}

.about-map-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.about-map-link:hover img {
    transform: scale(1.025);
}

.about-map-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 15px 18px;
    border-radius: 16px;

    background: rgba(255,255,255,.92);
    color: #2c2115;

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

    backdrop-filter: blur(8px);
}

.about-map-overlay strong {
    display: block;
}

.about-map-overlay small {
    display: block;
    margin-top: 3px;
    opacity: .7;
}


/* Contact CTA */

.about-final-cta {
    text-align: center;
    padding: 38px 24px;
    border-radius: 26px;
    border: 1px solid rgba(90, 70, 40, .13);
    margin-bottom: 60px;
}

.about-final-cta h2 {
    margin-top: 0;
}

.about-final-cta p {
    max-width: 620px;
    line-height: 2;
    margin: 10px auto 22px;
}


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

@media (max-width: 850px) {

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

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

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

    .about-map-image,
    .about-map-image img {
        min-height: 300px;
    }
}


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

@media (max-width: 600px) {

    .about-container {
        width: min(100% - 22px, 1120px);
    }

    .about-hero {
        padding: 38px 0 38px;
    }

    .about-logo {
        width: min(165px, 48vw);
        max-height: 195px;
    }

    .about-logo-wrap {
        margin-bottom: 14px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-actions a {
        width: 100%;
        text-align: center;
    }

    .about-story {
        margin-top: 20px;
        margin-bottom: 42px;
        gap: 14px;
    }

    .about-story-main,
    .about-story-note {
        padding: 22px;
        border-radius: 19px;
    }

    .about-quote {
        font-size: 18px;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 45px;
    }

    .about-value-card {
        padding: 21px;
        border-radius: 19px;
    }

    .about-contact-grid {
        gap: 14px;
        margin-bottom: 45px;
    }

    .about-contact-card {
        padding: 22px;
        border-radius: 19px;
    }

    .about-map-card {
        border-radius: 19px;
    }

    .about-map-image,
    .about-map-image img {
        min-height: 230px;
    }

    .about-map-overlay {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px;
        border-radius: 13px;
        font-size: 13px;
    }

    .about-final-cta {
        padding: 28px 18px;
        border-radius: 20px;
        margin-bottom: 40px;
    }

}


/* Very small screens */

@media (max-width: 370px) {

    .about-map-overlay {
        display: block;
    }

    .about-map-overlay span:last-child {
        display: block;
        margin-top: 7px;
    }

}
