
/* ============================================
   Brand Page Styles — brand.html
   Supplements style.css (shared variables, navbar, themes)
   ============================================ */

/* ---- Brand Hero ---- */
.brand-hero {
    background: linear-gradient(135deg, #1a3a08 0%, var(--primary-green) 50%, var(--secondary-green) 100%);
    color: var(--pure-white);
    padding: 120px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#brand-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.brand-hero-inner {
    position: relative;
    z-index: 1;
}

.brand-headshot {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.2);
}

.brand-headshot:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.3);
    border-color: var(--pure-white);
}

.brand-headshot-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--secondary-green);
    border: 3px solid var(--accent-gold);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.brand-headshot-placeholder:hover {
    transform: scale(1.05);
    background: var(--primary-green);
}

.brand-eyebrow {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.brand-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    color: var(--pure-white);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.brand-hero .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-secondary);
    color: #000000;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.brand-hero .hero-intro {
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: var(--font-secondary);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Shared Brand Section Layout ---- */
.brand-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.brand-section.alt-bg {
    background: var(--bg-secondary);
}

.brand-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: var(--font-primary);
    position: relative;
}

.brand-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

/* ---- Mission ---- */
.mission-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-style: italic;
    position: relative;
    padding-top: 1rem;
}

.mission-content p::before {
    content: '\201C';
    display: block;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent-gold);
    opacity: 0.45;
    font-family: Georgia, serif;
    margin-bottom: -0.5rem;
}

.mission-content p::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

.mission-quote {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.85;
    padding: 1.5rem 2rem;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-style: italic;
    text-align: center;
    position: relative;
}

.mission-quote::before {
    content: '\201C';
    display: block;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent-gold);
    opacity: 0.45;
    font-family: Georgia, serif;
    margin-bottom: -0.5rem;
}

.mission-quote::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

.mission-sub {
    max-width: 600px;
    margin: 1.75rem auto 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: var(--font-secondary);
}

/* ---- Vision ---- */
.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
}

.vision-content p:last-child {
    margin-bottom: 0;
}

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

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
    border-color: var(--accent-gold);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 2rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: block;
    transform: scale(1);
}

.value-card:hover .value-icon {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.value-card h3 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: var(--accent-gold);
}

.value-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: var(--text-primary);
}

/* ---- CTA Section ---- */
.brand-cta {
    padding: 70px 0;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(212, 175, 55, 0.02) 100%);
    pointer-events: none;
}

.brand-cta .container {
    position: relative;
    z-index: 1;
}

.brand-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-primary);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.brand-cta p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.brand-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.brand-cta-buttons .btn {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.brand-cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.2);
}

.brand-cta-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.brand-cta-buttons .btn-primary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ---- Smooth Scroll ---- */
html {
    scroll-behavior: smooth;
}

/* ---- Enhanced Mobile Experience ---- */
@media (max-width: 768px) {
    .brand-hero {
        padding: 90px 0 50px;
    }

    .brand-hero h1 {
        font-size: 2rem;
    }

    .brand-hero .hero-subtitle {
        font-size: 1rem;
    }

    .brand-hero .hero-intro {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-content {
        padding: 0 1rem;
    }

    .mission-quote {
        font-size: 1.05rem;
        padding-left: 1.25rem;
        margin: 0 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .vision-stats {
        grid-template-columns: 1fr 1fr;
    }

    .brand-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .brand-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .brand-hero {
        padding: 90px 0 50px;
    }

    .brand-hero h1 {
        font-size: 2rem;
    }

    .brand-hero .hero-subtitle {
        font-size: 1rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-quote {
        font-size: 1.05rem;
        padding-left: 1.25rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .vision-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .vision-stats {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .brand-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
