/* ============================================
   PHILOSOPHY SECTION (two-column)
   ============================================ */
.philosophy {
    background: var(--bg-white);
    padding: 5rem 0;
}

.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy__text p {
    color: var(--grey-warm);
    font-size: 1.05rem;
    line-height: 1.7;
}

.philosophy__values {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.value-card {
    background: var(--bg-white);
    padding: 1.5rem 1.75rem;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.value-card:hover {
    background: var(--accent-muted);
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.value-card__text {
    font-size: 1.08rem;
    color: var(--grey-warm);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.timeline-section__header {
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--border-light);
}

.timeline__item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 6px;
    width: 9px;
    height: 9px;
    background: var(--accent);
    transform: translateX(-4px);
}

.timeline__date {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.timeline__text {
    font-size: 1.03rem;
    color: var(--grey-warm);
    line-height: 1.7;
    max-width: 700px;
}

.timeline__text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background: var(--bg-white);
    padding: 5rem 0;
}

.team__header {
    margin-bottom: 3rem;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.team-card {
    background: var(--bg-white);
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.team-card:hover {
    background: var(--accent-muted);
}

.team-card__role {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    background: var(--bg-light);
    padding: 5rem 0;
}

.location__content {
    max-width: 600px;
}

.location__text {
    font-size: 1.05rem;
    color: var(--grey-warm);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location__address {
    font-family: var(--font-mono);
    font-size: 1.08rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
    .philosophy__grid {
        gap: 3rem;
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .philosophy {
        padding: 3.5rem 0;
    }

    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .timeline-section {
        padding: 3.5rem 0;
    }

    .team {
        padding: 3.5rem 0;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .location {
        padding: 3.5rem 0;
    }
}
