/* Story Section */

.about-quote {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 600;
    max-width: 900px;
    margin: 1.5rem auto;
    font-style: italic;
}

.story-content-box {
    max-width: none;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Mission & Vision */

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--primary);
    width: 100%;
    box-sizing: border-box;
}

.mv-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Values Grid */

.values-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--primary-lighter);
}

.value-letter {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 45px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.value-item p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Frame Collection */

.frame-collection-box {
    width: 100%;
    max-width: none;
    margin-top: 4rem;
    padding-top: 3rem;
}

/* Expectations Grid */

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expectation-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    text-align: center;
}

.expectation-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Mission and general mobile layout */

@media (max-width: 700px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* 5 Myths - 3 Across, Then 2 */

section[id="5-myths-about-eye-care"] .expectation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

section[id="5-myths-about-eye-care"] .expectation-card {
    min-width: 0;
    width: auto;
}

@media (max-width: 700px) {
    section[id="5-myths-about-eye-care"] .expectation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    section[id="5-myths-about-eye-care"] .expectation-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Story - Full Width */

#about .story-content-box:first-of-type {
    width: 100%;
    max-width: none;
}

/* =========================================================
   FRAME BRAND GRID
   Requires:
   <div class="values-grid frame-brand-grid">
   ========================================================= */

/* Desktop: 7 brands per row */
#about .story-content-box .frame-brand-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
}

#about .story-content-box .frame-brand-grid .value-item {
    min-width: 0;
    padding: 1rem 0.5rem;
}

/* Tablet: 4 brands per row */
@media (max-width: 992px) {
    #about .story-content-box .frame-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Mobile: 2 brands per row */
@media (max-width: 600px) {
    #about .story-content-box .frame-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    #about .story-content-box .frame-brand-grid .value-item {
        padding: 1rem 0.5rem;
    }
}

/* Small mobile: 1 brand per row */
@media (max-width: 400px) {
    #about .story-content-box .frame-brand-grid {
        grid-template-columns: 1fr;
    }
}
