/* ==========================================================================
   About Us page — loaded only by templates/cms/about.template.html
   All rules are scoped to #about-page.
   ========================================================================== */

/* ====== BASE ====== */
#about-page {
    --about-brand: #bbb65e;
    --about-brand-dk: #9a9548;
    --about-dark: #252525;
    --about-text: #2a2a2a;
    --about-text-soft: #555;
    --about-bg-alt: #f7f7f2;
    --about-rule: #e0e0d8;

    /* Cancel the parent .col-xs-12 gutter so sections span the container */
    margin: 0 -15px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: var(--about-text);
}

#about-page h1,
#about-page h2,
#about-page h3 {
    font-family: inherit;
}

#about-page p {
    font-size: 20px;
}

#about-page em {
    font-style: normal;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 36px;
}

.about-container--narrow {
    max-width: 860px;
}

.about-section {
    padding: 64px 0;
}

.about-section--alt {
    background: var(--about-bg-alt);
}

.about-section--dark {
    background: var(--about-dark);
    color: #fff;
}

/* Eyebrow label with leading rule */
.about-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--about-brand);
}

.about-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--about-brand);
}

.about-tag--dark {
    color: var(--about-brand-dk);
}

#about-page .about-h2 {
    margin: 0 0 36px;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--about-dark);
}

#about-page .about-h2 em {
    color: var(--about-brand-dk);
}

#about-page .about-section--dark .about-h2 {
    color: #fff;
}

#about-page .about-section--dark .about-h2 em {
    color: var(--about-brand);
}

/* ====== HERO IMAGE ====== */
.about-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

/* ====== INTRO + USPS ====== */
.about-intro {
    padding: 38px 0 34px;
    background: var(--about-dark);
}

.about-intro .about-tag {
    margin-bottom: 12px;
}

#about-page .about-intro__title {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

#about-page .about-intro__title em {
    color: var(--about-brand);
}

.about-usps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-usps__item {
    padding: 20px 22px 2px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

.about-usps__item:first-child {
    padding-left: 0;
    border-left: 0;
}

.about-usps__item:last-child {
    padding-right: 0;
}

.about-usps__title {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* ====== WHO WE ARE ====== */
.about-who {
    padding: 64px 0;
    background: #fff;
}

#about-page .about-lead {
    margin: 0 0 1.2rem;
    line-height: 1.8;
    color: var(--about-text-soft);
}

/* ====== EQUIP+ BANNER ====== */
.about-equip {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 340px;
    background-size: cover;
    background-position: center;
}

.about-equip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.85) 45%, rgba(20, 20, 20, 0.25) 100%);
}

.about-equip .about-container {
    position: relative;
    width: 100%;
}

.about-equip__panel {
    max-width: 600px;
    padding: 56px 0;
}

#about-page .about-equip__title {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fff;
}

#about-page .about-equip__body {
    max-width: 52ch;
    margin: 0 0 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

#about-page .about-equip__cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border: 2px solid var(--about-brand);
    background: var(--about-brand);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--about-dark);
    transition: background 0.2s, color 0.2s;
}

#about-page .about-equip__cta:hover,
#about-page .about-equip__cta:focus {
    background: transparent;
    color: var(--about-brand);
}

/* ====== MEET THE TEAM ====== */
.about-team__header {
    margin-bottom: 42px;
    text-align: center;
}

.about-team__header .about-tag {
    justify-content: center;
}

#about-page .about-team__header .about-h2 {
    margin-bottom: 0;
}

.about-team__feature {
    max-width: 1000px;
    margin: 0 auto;
}

.about-team__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px 6px 0 0;
}

.about-team__bios {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: #fff;
    border: 1px solid var(--about-rule);
    border-top: 0;
    border-radius: 0 0 6px 6px;
}

.about-team__bio {
    padding: 30px 34px 34px;
}

.about-team__bio + .about-team__bio {
    border-left: 1px solid var(--about-rule);
}

#about-page .about-team__name {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--about-dark);
}

#about-page .about-team__copy {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: var(--about-text-soft);
}

/* ====== WHY SHOP WITH US ====== */
.about-why__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.about-why__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.about-why__num {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--about-brand);
    font-size: 12px;
    font-weight: 800;
    color: var(--about-dark);
}

#about-page .about-why__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

#about-page .about-why__body {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

/* ====== TRADE & WHOLESALE ====== */
#about-page .about-wholesale .about-h2 {
    margin-bottom: 28px;
}

.about-wholesale__card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 40px;
    background: #fff;
    border: 1px solid var(--about-rule);
    border-radius: 6px;
}

.about-wholesale__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--about-brand);
    font-size: 1.4rem;
}

#about-page .about-wholesale__title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--about-dark);
}

#about-page .about-wholesale__body {
    margin: 0 0 14px;
    line-height: 1.75;
    color: var(--about-text-soft);
}

#about-page .about-wholesale__link {
    font-weight: 600;
    color: var(--about-brand-dk);
}

/* ====== FAQS ====== */
.about-faq__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-faq__item {
    padding: 22px 0;
    border-top: 1px solid var(--about-rule);
}

.about-faq__item:last-child {
    border-bottom: 1px solid var(--about-rule);
}

#about-page .about-faq__question {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--about-dark);
}

#about-page .about-faq__answer {
    margin: 0;
    line-height: 1.7;
    color: var(--about-text-soft);
}

/* ====== STORE LOCATION & HOURS ====== */
.about-store__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 48px;
}

.about-store__map {
    overflow: hidden;
    border: 1px solid var(--about-rule);
    border-radius: 6px;
}

.about-store__map iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

#about-page .about-store__title {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 700;
    color: var(--about-dark);
}

.about-store__address {
    margin: 0 0 1.8em;
    font-style: normal;
    line-height: 1.8;
}

#about-page .about-store__phone {
    font-weight: 600;
    color: var(--about-brand-dk);
}

.about-store__hours {
    width: 100%;
    margin-top: 24px;
    border-collapse: collapse;
}

.about-store__hours th {
    padding-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: left;
    text-transform: uppercase;
    color: var(--about-text-soft);
}

.about-store__hours td {
    padding: 13px 0;
    border-top: 1px solid var(--about-rule);
}

.about-store__hours td:last-child {
    font-weight: 600;
}

/* ====== TERMS ====== */
.about-terms {
    padding: 32px 0;
    border-top: 1px solid var(--about-rule);
}

#about-page .about-terms p {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--about-text-soft);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
    .about-usps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-usps__item,
    .about-usps__item:first-child,
    .about-usps__item:last-child {
        padding: 18px 18px 18px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-why__grid,
    .about-store__grid {
        grid-template-columns: 1fr;
    }

    .about-store__grid {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    #about-page,
    #about-page p {
        font-size: 17px;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-section,
    .about-who {
        padding: 44px 0;
    }

    #about-page .about-h2 {
        margin-bottom: 24px;
    }

    /* Very wide hero crops too thin on phones */
    .about-hero__image {
        height: 180px;
        object-fit: cover;
    }

    /* Text sits over the whole image on mobile, so darken evenly */
    .about-equip::before {
        background: rgba(20, 20, 20, 0.78);
    }

    .about-equip__panel {
        padding: 44px 0;
    }

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

    .about-team__bio {
        padding: 24px;
    }

    .about-team__bio + .about-team__bio {
        border-left: 0;
        border-top: 1px solid var(--about-rule);
    }

    #about-page .about-team__copy,
    #about-page .about-why__body {
        font-size: 16px;
    }

    .about-why__item {
        padding: 20px;
    }

    .about-wholesale__card {
        flex-direction: column;
        gap: 18px;
        padding: 24px;
    }

    #about-page .about-faq__question {
        font-size: 18px;
    }

    .about-store__map iframe {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .about-usps {
        grid-template-columns: 1fr;
    }
}
