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

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

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

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

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

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

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

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

.philosophy-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* ═══════════════════════════════════════════════════════════
   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 — RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

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

    .philosophy {
        padding: 4rem 1.5rem;
    }
}

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

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

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

[data-theme="light"] .philosophy-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"] .philosophy-item:hover {
    border-color: rgba(184, 115, 51, 0.3);
}

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

[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);
}
