/* ========================================================
   LumaScape — About Page Styles
   ======================================================== */

/* Story section */
.story-grid {
    display: grid; grid-template-columns: 1fr; gap: 64px;
    align-items: center;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }

.story-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400; line-height: 1.15;
    color: var(--charcoal); margin-bottom: 32px;
}
.story-text p {
    font-size: 15px; color: rgba(28,28,28,0.55);
    font-weight: 300; line-height: 1.8; margin-bottom: 20px;
}
.story-text p:last-child { margin-bottom: 0; }

.story-img {
    position: relative; border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/5; background: var(--bone);
}
.story-img img {
    width: 100%; height: 100%; object-fit: cover;
}

/* Stats */
.stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 64px; } }

.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400; color: var(--charcoal);
    line-height: 1; margin-bottom: 12px;
}
.stat-label {
    font-size: 13px; color: rgba(28,28,28,0.45);
    font-weight: 400; letter-spacing: 0.05em;
}

/* Philosophy */
.philosophy-content {
    max-width: 800px;
}
.philosophy-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400; line-height: 1.15;
    color: var(--charcoal); margin-bottom: 32px;
}
.philosophy-content p {
    font-size: 16px; color: rgba(28,28,28,0.5);
    font-weight: 300; line-height: 1.8; margin-bottom: 24px;
}
.philosophy-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-style: italic; font-weight: 400;
    color: var(--charcoal); line-height: 1.3;
    border-left: 2px solid var(--sand);
    padding-left: 32px; margin: 48px 0;
}

/* Values */
.values-grid {
    display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; } }

.value-card {
    padding: 40px;
    background: var(--cream);
    border-radius: 16px;
}
.value-icon {
    color: rgba(28,28,28,0.25); margin-bottom: 24px;
}
.value-icon .material-symbols-outlined { font-size: 36px; font-weight: 200; }
.value-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px; color: var(--charcoal); margin-bottom: 16px;
}
.value-desc {
    font-size: 14px; color: rgba(28,28,28,0.5);
    font-weight: 300; line-height: 1.7;
}

/* Team */
.team-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.team-card {
    text-align: center;
}
.team-avatar {
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--sand);
    margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(28,28,28,0.25);
    overflow: hidden;
}
.team-avatar .material-symbols-outlined { font-size: 48px; font-weight: 200; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px; color: var(--charcoal); margin-bottom: 6px;
}
.team-role {
    font-size: 13px; color: rgba(28,28,28,0.45);
    font-weight: 400; letter-spacing: 0.05em;
}
