/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — FOUNDER STORY
   ═══════════════════════════════════════════════════════════ */
.story {
    padding: 6rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.story h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

.story p {
    color: var(--white-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.story p:first-of-type {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — VALUES
   ═══════════════════════════════════════════════════════════ */
.values {
    padding: 6rem 3rem;
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-faint), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border: 1px solid var(--white-faint);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.4s ease;
}

.value-item:hover {
    border-color: rgba(184, 115, 51, 0.3);
    transform: translateY(-4px);
}

.value-number {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--copper-light), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.value-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.value-item p {
    color: var(--white-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — LOCATION
   ═══════════════════════════════════════════════════════════ */
.location {
    padding: 4rem 3rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.location h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.location p {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — WHY SECTION + CTA
   ═══════════════════════════════════════════════════════════ */
.about-why {
    padding: 4rem 3rem 6rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-why p {
    color: var(--white-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.about-why .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — MEET THE FOUNDER
   ═══════════════════════════════════════════════════════════ */
.founder {
    padding: 4rem 3rem 6rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper-glow), transparent);
}

.founder-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
}

.founder-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(184, 115, 51, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    background: var(--navy-deep);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-body h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.founder-body .founder-role {
    color: var(--copper);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.founder-body p {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .founder {
        padding: 3rem 1.5rem 4rem;
    }
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        text-align: center;
    }
    .founder-photo {
        width: 200px;
        height: 200px;
    }
}

[data-theme="light"] .founder::before {
    background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.18), transparent);
}

[data-theme="light"] .founder-body p {
    color: rgba(13, 27, 42, 0.72);
}

[data-theme="light"] .founder-photo {
    border-color: rgba(184, 115, 51, 0.4);
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.12);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .story, .location, .about-why {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .values {
        padding: 4rem 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .value-item {
        padding: 2rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — LIGHT THEME
   ═══════════════════════════════════════════════════════════ */
[data-theme="light"] .story p {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .story p:first-of-type {
    color: #0D1B2A;
}

[data-theme="light"] .values::before {
    background: linear-gradient(90deg, transparent, rgba(13, 27, 42, 0.1), transparent);
}

[data-theme="light"] .value-item {
    background: #FFFFFF;
    border-color: rgba(13, 27, 42, 0.08);
    box-shadow: 0 2px 20px rgba(13, 27, 42, 0.06);
}

[data-theme="light"] .value-item:hover {
    border-color: rgba(184, 115, 51, 0.3);
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.12);
}

[data-theme="light"] .value-item p {
    color: rgba(13, 27, 42, 0.72);
}

[data-theme="light"] .value-number {
    background: linear-gradient(135deg, var(--copper-dark), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .location p {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .about-why p {
    color: rgba(13, 27, 42, 0.65);
}
