:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F8F8F8;
    --light-gray: #EEEEEE;
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--sans);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: clamp(3rem, 8vw, 5rem); }
h2 { font-size: clamp(2.5rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.8rem, 4vw, 2.2rem); }

p {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0,0,0,0.8);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    padding: 8rem 0;
}

/* Hero Section */
.about-hero {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('../assets/basic/about.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: 80px;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero h1 {
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Our Story */
.our-story {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
    height: 500px;
    background: var(--light-gray);
    background-size: cover;
    background-position: center;
}

/* Mission & Vision */
.mission-vision {
    text-align: center;
    background: var(--gray);
}

.mission-vision .container {
    max-width: 800px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-card {
    padding: 3rem;
    border: 1px solid var(--light-gray);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 100%;
    height: 300px;
    background: var(--light-gray);
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.6);
    margin-bottom: 1rem;
}

/* CTA */
.cta-section {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.8);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: var(--white);
    color: var(--black);
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background: var(--black);
    color: var(--white);
}

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

.footer-column h3 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.5);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 3rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Animations */
@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 1024px) {
    .our-story {
        flex-direction: column;
    }
    
    .story-image {
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 6rem 0;
    }
    
    nav ul {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}