/* --- Base Styling --- */
.section-padding {
    padding: 120px 10%;
}

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

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

.gold-text {
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* --- Hero Section --- */
.about-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #070707 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.about-hero .subtitle {
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--text-muted);
}

.about-hero .hero-title {
    font-size: 5rem;
    font-family: var(--font-heading);
    margin: 20px 0;
}

.gold-subheading {
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- Story Section --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-weight: 300;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* --- Founders Section --- */
.founder-row {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    flex: 0 0 400px;
    height: 500px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-premium);
}

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

.founder-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 10px 0;
}

.founder-info .role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- Board Section --- */
.board { background: #0a0a0a; }

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.board-member {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-premium);
}

.board-member h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.board-member p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.board-member:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.02);
}

/* --- Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.value-card {
    background: #111;
    padding: 50px 30px;
    border-top: 3px solid var(--accent-gold);
    transition: transform 0.4s ease;
}

.value-icon {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-10px);
    background: #161616;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .story-grid, .founder-row {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-image { flex: 0 0 100%; width: 100%; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .board-grid { grid-template-columns: 1fr; }
    .about-hero .hero-title { font-size: 3.5rem; }
}

@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 80px 5%; }
}