/* --- BRAND DNA --- */
:root {
    /* Inherits defaults from main.css */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- HERO VIDEO SECTION --- */
.hero-container {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
}

.manifesto-eyebrow {
    font-family: var(--font-head);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 30px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.1s;
}

.manifesto-title {
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.3s;
}

.manifesto-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 24px;
    color: #e0e0e0;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 50px auto 0;
}

/* --- FOUNDER PROFILE --- */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: -80px auto 100px auto;
    background: #fff;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 20;
    border-radius: 4px;
    overflow: hidden;
}

.founder-image {
    background-color: #1a1a1a;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    transition: 0.5s;
}

.founder-image:hover img {
    filter: grayscale(0%);
}

.founder-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-role {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 40px;
}

.bio-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

/* --- TEAM SECTION --- */
.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-family: var(--font-head);
    font-size: 32px;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid var(--border);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.team-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #1a1a1a;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    transition: 0.4s;
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-family: var(--font-head);
    font-size: 20px;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.team-info p {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0;
}

/* --- STATS BAR --- */
.stats-bar {
    background: var(--primary);
    color: white;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* --- PHILOSOPHY GRID --- */
.philosophy-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

.section-header {
    font-family: var(--font-head);
    font-size: 32px;
    margin-bottom: 60px;
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.phil-card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.phil-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.phil-icon {
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.phil-title {
    font-family: var(--font-head);
    font-size: 20px;
    margin-bottom: 15px;
}

.phil-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* --- CTA --- */
.cta-section {
    text-align: center;
    padding: 100px 20px 140px;
}

.cta-btn {
    background: var(--primary);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .founder-section {
        grid-template-columns: 1fr;
        margin: -40px 20px 60px 20px; /* Reduced negative margin and added horizontal margin */
    }

    .founder-image {
        min-height: 350px;
    }
    
    .founder-content {
        padding: 40px 20px;
    }

    .manifesto-title {
        font-size: clamp(32px, 10vw, 48px) !important;
    }
    
    .manifesto-text {
        font-size: 16px !important;
    }

    .stats-bar {
        gap: 40px;
        flex-direction: column;
        padding: 60px 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-photo {
        aspect-ratio: 4 / 5;
        height: auto;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .phil-card {
        padding: 25px;
    }
    
    .section-header {
        font-size: 26px;
        margin-bottom: 40px;
    }
}