/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;600&display=swap');

/* Hero */
.about-hero {
    background-color: #1a1a1a;
    padding: 80px 40px 70px 40px;
    text-align: center;
    border-bottom: 1px solid #D4AF37;
}

.about-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.about-hero h1 span {
    color: #D4AF37;
    font-style: italic;
}

.about-tagline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: #888;
    margin: 0;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Cards section */
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    background-color: #fafafa;
}

.about-card {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    background-color: white;
    padding: 50px 40px;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    transition: background-color 0.3s;
}

.about-card:last-child {
    border-right: none;
}

.about-card:hover {
    background-color: #fafafa;
}

.about-card-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.about-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    border: none;
    padding: 0;
    display: block;
    line-height: 1.2;
}

.about-card p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* Stats section */
.about-stat-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    padding: 70px 40px;
    border-top: 1px solid #D4AF37;
    border-bottom: 1px solid #D4AF37;
    gap: 0;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 250px;
}

.about-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: white;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 12px;
}

.about-stat-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-stat-divider {
    width: 1px;
    height: 80px;
    background-color: #333;
    flex-shrink: 0;
}

/* Fair use section */
.fair-use-section {
    padding: 60px 40px;
    background-color: #fafafa;
}

.fair-use-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: white;
    border-left: 3px solid #D4AF37;
    border-bottom: 1px solid #e4e4e4;
    border-top: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
}

.fair-use-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    border: none;
    padding: 0;
    display: block;
}

.fair-use-card p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 50px 20px 40px 20px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-card {
        flex: 0 0 100%;
        max-width: 100%;
        border-right: none;
        padding: 35px 25px;
    }

    .about-stat-section {
        padding: 50px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .about-stat-divider {
        width: 80px;
        height: 1px;
    }

    .about-stat-number {
        font-size: 44px;
    }

    .fair-use-section {
        padding: 35px 20px;
    }

    .fair-use-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .about-tagline {
        font-size: 14px;
    }

    .about-card h2 {
        font-size: 24px;
    }

    .about-stat-number {
        font-size: 36px;
    }

    .fair-use-card h2 {
        font-size: 22px;
    }
}