/* About Page Redesign Styles */
.about-hero {
    margin-bottom: 8rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.about-text-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 1.5rem;
}

.about-text-hero p {
    color: var(--secondary-text);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Philosophy Section */
.about-philosophy {
    margin-bottom: 8rem;
    text-align: center;
}

.about-philosophy h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: left;
}

.philosophy-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.philosophy-icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.philosophy-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Lifestyle Section */
.about-lifestyle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-lifestyle h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-lifestyle p {
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
}

.hobby-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.hobby-tag {
    padding: 1rem 1.75rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 99px;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.hobby-tag:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-text-hero h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}