/* -------------------------------------------------------------------------- */
/* About Page CSS                                                             */
/* -------------------------------------------------------------------------- */

/* Utility padding for about sections */
.section-padding {
    padding: 3rem 0;
}

/* 1. Inner Hero */
.inner-hero {
    position: relative;
    padding: 12rem 0 6rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}



.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.inner-hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* 2. Philosophy Section */
.philosophy-section {
    background-color: var(--color-bg-primary);
}

.philosophy-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.philosophy-content {
    flex: 1;
}

.philosophy-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.gold-overline {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.philosophy-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    color: var(--color-text-main);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.check-list {
    list-style: none;
    padding-top: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

/* 3. Founder Section */
.founder-section {
    border-top: 1px solid rgba(200, 155, 95, 0.3);
    border-bottom: 1px solid rgba(200, 155, 95, 0.3);
}

.founder-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.founder-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 1rem;
}

.founder-image-el {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(122, 18, 56, 0.15);
    border: 3px solid rgba(200, 155, 95, 0.8);
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.founder-image-el:hover {
    transform: translateY(-5px);
}

.founder-content {
    flex: 1.2;
}

.founder-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.founder-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.founder-content p {
    color: var(--color-text-main);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

/* 4. Values Section */
.values-section {
    background-color: var(--color-bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #FFFFFF;
    border-radius: 40px 12px 40px 12px;
    border: 1px solid rgba(122, 18, 56, 0.35);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(122, 18, 56, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(122, 18, 56, 0.08);
    border-color: rgba(122, 18, 56, 0.65);
}

.value-card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(122, 18, 56, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.value-card:hover .value-card-icon {
    background-color: rgba(122, 18, 56, 0.1);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.value-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .philosophy-grid, .founder-grid {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
