@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --fud-green: #0b6b34;
    --fud-gold: #c78a2b;
    --fud-rust: #9e3a2b;
    --fud-cream: #f3c37a;
    --fud-ink: #1d1a17;
    --fud-olive: #1f4f33;
    --fud-sand: #f7ead4;
    --surface: #ffffff;
    --surface-muted: rgba(255, 255, 255, 0.85);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at 8% 10%, rgba(11, 107, 52, 0.16), transparent 36%),
        radial-gradient(circle at 85% 5%, rgba(199, 138, 43, 0.2), transparent 34%),
        radial-gradient(circle at 80% 80%, rgba(158, 58, 43, 0.12), transparent 30%),
        #f8f5ef;
    color: #1d1a17;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.hidden {
    display: none !important;
}

.container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(248, 245, 239, 0.86);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.nav--scrolled {
    background: linear-gradient(90deg, rgba(11, 107, 52, 0.95), rgba(15, 110, 60, 0.95));
    box-shadow: 0 18px 36px -26px rgba(15, 23, 42, 0.45);
}

.nav.nav--scrolled .brand-title {
    color: #fff;
}

.nav.nav--scrolled .brand-subtitle,
.nav.nav--scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.nav.nav--scrolled .nav-cta {
    background: #fff;
    color: #0b6b34;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px -18px rgba(15, 23, 42, 0.4);
}

.brand-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.brand-subtitle {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.6);
}

.nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.72);
}

.nav-links a:hover {
    color: var(--fud-green);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--fud-green), var(--fud-gold));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 12px 30px -20px rgba(11, 107, 52, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    height: 40px;
    width: 44px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 999px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 30;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: min(320px, 86vw);
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 40;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.drawer-close {
    border: none;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.drawer-links {
    display: grid;
    gap: 10px;
    font-weight: 700;
}

.drawer-links a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(11, 107, 52, 0.08);
    color: #0b6b34;
}

body.drawer-open .mobile-overlay {
    opacity: 1;
    pointer-events: all;
}

body.drawer-open .mobile-drawer {
    transform: translateX(0);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px -18px rgba(11, 107, 52, 0.7);
}

.hero {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 48px;
    margin-top: 24px;
    background:
        radial-gradient(circle at 12% 22%, rgba(247, 234, 212, 0.38), transparent 45%),
        radial-gradient(circle at 88% 8%, rgba(199, 138, 43, 0.35), transparent 40%),
        linear-gradient(135deg, #0b6b34 0%, #0b5b2f 45%, #1f4f33 100%);
    color: #fff;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -20% auto auto -10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(30px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 10% -20% auto;
    width: 280px;
    height: 280px;
    border-radius: 40%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(20px);
    animation: float 8s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    position: relative;
    z-index: 1;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 5vw, 52px);
    margin: 18px 0 10px;
    line-height: 1.1;
}

.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn-primary {
    background: #fff;
    color: #1f2937;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-1px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 22px;
    font-size: 13px;
}

.hero-stats strong {
    display: block;
    font-size: 24px;
    color: #fff;
}

.hero-card {
    background: var(--surface-muted);
    border-radius: 28px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.5);
    animation: float 6s ease-in-out infinite;
}

.hero-card img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.section {
    margin-top: 50px;
    scroll-margin-top: 96px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.about-subtitle {
    margin: 0 0 12px;
    color: rgba(15, 23, 42, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

.section-subtitle {
    color: rgba(15, 23, 42, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.surface {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 240, 0.85));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.surface:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -28px rgba(15, 23, 42, 0.5);
}

.feature-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--fud-rust);
}

.feature-label.gold { color: var(--fud-gold); }
.feature-label.green { color: var(--fud-green); }

.about-grid {
    display: grid;
    gap: 24px;
    align-items: center;
    grid-template-columns: 1fr;
}

.leadership-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.leadership-members {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 18px;
}

.member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease;
}

.member-card:hover {
    transform: translateY(-2px);
}

.member-actions {
    margin-top: 6px;
    display: flex;
    gap: 8px;
    color: rgba(15, 23, 42, 0.6);
}

.member-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: inherit;
    background: #fff;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.member-actions a:hover {
    color: var(--fud-green);
    border-color: rgba(11, 107, 52, 0.3);
}

.member-avatar {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    overflow: hidden;
    background: #f2f2f2;
}

.cta-card {
    background: linear-gradient(120deg, #c78a2b, #9e3a2b);
    color: #fff;
    border-radius: 28px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.6);
}

.cta-card .btn-primary {
    width: fit-content;
}

.updates-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.updates-grid .surface {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(245, 233, 212, 0.65));
}

.section--tint {
    background: linear-gradient(120deg, rgba(11, 107, 52, 0.08), rgba(199, 138, 43, 0.08));
    border-radius: 26px;
    padding: 26px;
}

.section--glass {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 26px;
    padding: 26px;
    backdrop-filter: blur(14px);
}

.list-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.list-item:last-child {
    border-bottom: none;
}

.list-item p {
    margin: 4px 0 0;
    color: rgba(15, 23, 42, 0.6);
    font-size: 13px;
}

.footer {
    margin-top: 60px;
    padding: 26px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    font-size: 12px;
    color: rgba(15, 23, 42, 0.6);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: rgba(15, 23, 42, 0.6);
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
    transform: translateY(-1px);
    color: var(--fud-green);
    border-color: rgba(11, 107, 52, 0.35);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 107, 52, 0.12);
    color: var(--fud-green);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mobile-nav {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, calc(100% - 24px));
    display: none;
    gap: 8px;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    box-shadow: 0 16px 32px -24px rgba(15, 23, 42, 0.5);
    z-index: 20;
}

.mobile-nav a {
    color: rgba(15, 23, 42, 0.6);
}

.mobile-nav a:last-child {
    color: var(--fud-green);
}

@media (max-width: 900px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 32px 24px;
    }
    .nav-inner {
        flex-direction: row;
        align-items: center;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    .brand-title {
        font-size: 11px;
    }
    .brand-subtitle {
        font-size: 11px;
    }
    .mobile-nav {
        display: flex;
    }
}
