/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --yellow:      #F5B800;
    --yellow-dark: #D9A200;
    --dark:        #111827;
    --dark-mid:    #1a2235;
    --dark-navy:   #0d1117;
    --white:       #ffffff;
    --gray-light:  #f5f7fa;
    --gray-mid:    #e5e7eb;
    --red:         #DC2626;
    --text:        #1f2937;
    --text-muted:  #6b7280;
    --font-head:   'Montserrat', sans-serif;
    --font-body:   'Open Sans', sans-serif;
    --radius:      8px;
    --shadow:      0 4px 24px rgba(0,0,0,0.10);
    --shadow-md:   0 8px 40px rgba(0,0,0,0.18);
    --transition:  0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--yellow);
    margin: 12px auto 0;
    border-radius: 2px;
}

.highlight {
    color: var(--yellow);
    font-style: italic;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
    font-weight: 800;
}
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

.btn-donate {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
    font-size: 0.85rem;
    padding: 10px 22px;
    font-weight: 800;
}
.btn-donate:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-img {
    height: 48px;
    width: auto;
    max-width: none;
}
.logo-img--footer {
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}
.nav-links a {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--yellow-dark); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--dark);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.hero-text {
    padding: 80px 56px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
}

.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 3.8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.hero-heading .highlight {
    display: block;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 400px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}
.hero-photo {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    background: var(--white);
    padding: 80px 0;
    border-top: 4px solid var(--yellow);
}
.how-it-works .section-title { margin-bottom: 52px; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step-icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
}
.step-icon { width: 88px; height: 88px; }
.step-num {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 28px;
    height: 28px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.step h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 220px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   WHY IT MATTERS
   ============================================================ */
.why-it-matters { overflow: hidden; }

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.why-content {
    background: var(--dark-navy);
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.why-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.why-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--yellow);
    margin-top: 10px;
    border-radius: 2px;
}

.why-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.why-stat {
    color: var(--yellow) !important;
    font-weight: 600;
    font-size: 1.05rem !important;
    font-style: italic;
    border-left: 3px solid var(--yellow);
    padding-left: 16px;
    margin-top: 8px;
}

.why-image { position: relative; }
.why-photo {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

/* ============================================================
   BEE TEAM
   ============================================================ */
.bee-team-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.bee-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px 48px;
    align-items: start;
}

.bee-team-content { align-self: center; }
.bee-team-content h2 {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.bee-team-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--yellow);
    margin-top: 10px;
    border-radius: 2px;
}
.bee-team-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.bee-team-image { border-radius: var(--radius); overflow: hidden; }
.team-photo {
    width: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

.bee-team-quote {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 36px 40px;
    position: relative;
    align-self: center;
}
.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--yellow);
    opacity: 0.25;
    position: absolute;
    top: 8px;
    left: 24px;
}
blockquote {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================================
   GET INVOLVED
   ============================================================ */
.get-involved {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--gray-mid);
}
.get-involved .section-title { margin-bottom: 52px; }

.involvement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--gray-mid);
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
}
.card-icon svg { width: 56px; height: 56px; }

.card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.link-more {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
}
.link-more:hover { color: var(--yellow-dark); border-color: var(--yellow-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark-navy);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social-links { display: flex; gap: 14px; }
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--yellow); color: var(--dark); }
.social-link svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--yellow);
    margin-bottom: 16px;
}
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact-list svg { flex-shrink: 0; color: var(--yellow); margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--yellow); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-tagline {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.75rem !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-top: 1px solid var(--gray-mid);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 24px; font-size: 0.9rem; }
    .nav-toggle { display: flex; }
    .btn-donate { display: none; }

    .hero-inner { grid-template-columns: 1fr; min-height: auto; }
    .hero-text { padding: 48px 0 40px; order: 2; }
    .hero-image { order: 1; }
    .hero-photo { min-height: 320px; }
    .hero-heading { font-size: clamp(1.9rem, 6vw, 2.6rem); }

    .steps { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

    .why-inner { grid-template-columns: 1fr; }
    .why-content { padding: 56px 24px; }
    .why-photo { min-height: 280px; }

    .bee-team-grid { grid-template-columns: 1fr; }

    .involvement-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-text { padding: 36px 0 32px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; text-align: center; }
    .why-content { padding: 48px 20px; }
    .bee-team-section { padding: 56px 0; }
    .get-involved { padding: 56px 0; }
    .card { padding: 32px 24px; }
}
