
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red:      #B22234;
    --red-dk:   #8B1A27;
    --blue:     #3C3B6E;
    --blue-lt:  #4A4990;
    --cream:    #F5F0E8;
    --gold:     #C9A84C;
    --white:    #FFFFFF;
    --ink:      #1A1A2E;
}

html { 
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}


/* BUTTONS
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
.btn {
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1em;
    padding: .85rem 2.2rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .15s, box-shadow .15s;
}
.btn-primary {
    background: var(--red); color: var(--white);
    border: 2px solid var(--red);
    box-shadow: 0 4px 16px rgba(178,34,52,.5);
}
.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(178,34,52,.6);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white);
}
.btn-outline:hover {
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    border: 2px solid var(--white);
    border-radius: 3px;
    color: var(--red);
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1em;
    padding: .85rem 1.8rem;
    text-transform: uppercase;
    transition: transform .15s, background .15s;
}
.btn-white:hover {
    transform: translateY(-2px);
}


/* NAV
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
nav {
    align-items: center;
    background: var(--blue);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,.35);
    display: flex;
    height: 64px;
    justify-content: space-between;
    padding: 0 2.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-logo {
    align-items: center;
    color: var(--white);
    display: flex;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    gap: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nav-logo .star-icon {
    color: var(--gold);
    font-size: 1.3rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,.85);
    font-family: 'Oswald', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s;
}
.nav-links a:hover {
    color: var(--gold);
}


/* HERO
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
.hero {
    align-items: center;
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-lt) 45%, var(--red-dk) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 75vh;
    overflow: hidden;
    padding: 2rem 2rem 7rem;
    position: relative;
    text-align: center;
}
.hero-tagline {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(.85rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: .35em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.hero h1 {
    animation: rise .9s ease both;
    color: var(--white);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.hero-sub {
    animation: rise .9s .2s ease both;
    color: rgba(255,255,255,.88);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 680px;
}
.hero-btns {
    animation: rise .9s .4s ease both;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}


.stars {
    background:
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 10%, rgba(255,255,255,.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 70%, rgba(255,255,255,.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,.3) 0%, transparent 100%);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}
.hero-stars {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
}
.hero-stars::before,
.hero-stars::after {
    color: rgba(201,168,76,.55);
    content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
    font-size: 1rem;
    left: 50%;
    letter-spacing: .6rem;
    position: absolute;
    top: 1.5rem;
    transform: translateX(-50%);
    white-space: nowrap;
}
.hero-stars::after {
    bottom: 2.5rem;
    color: rgba(201,168,76,.3);
    top: auto;
}

.flag-stripes {
    bottom: 0;
    display: flex;
    height: 16px;
    left: 0;
    position: absolute;
    right: 0;
}
.flag-stripes span {
    animation: stripe-wave 3s ease-in-out infinite alternate;
    flex: 1;
}
.flag-stripes span:nth-child(odd) {
    background: var(--red);
}
.flag-stripes span:nth-child(even) {
    background: var(--white);
}

.eagle-icon {
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
    font-size: 5rem; margin-bottom: 1rem;
}

@keyframes stripe-wave {
    0%          { transform: scaleY(1); }
    100%        { transform: scaleY(1.6); }
}
@keyframes float {
    0%, 100%    { transform: translateY(0); }
    50%         { transform: translateY(-10px); }
}
@keyframes rise {
    from        { opacity:0; transform: translateY(30px); }
    to          { opacity:1; transform: translateY(0); }
}


/* DIVIDER
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
section {
    padding: 5rem 2rem;
}

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

.section-label {
    align-items: center;
    color: var(--red);
    display: flex;
    font-family: 'Oswald', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    gap: .5rem;
    letter-spacing: .35em;
    margin-bottom: .6rem;
    text-transform: uppercase;
}
.section-label::after {
    background: var(--red);
    content: '';
    flex: 1;
    height: 1px;
    max-width: 80px;
    opacity: .3;
}

.banner .section-label::after,
.cta .section-label::after {
    display:none;
}

h2 {
    color: var(--blue);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}


/* MISSION
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
.mission {
    background: var(--white);
}
.mission-grid {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}
.mission-text p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}
.mission-quote {
    background: var(--cream);
    border-left: 5px solid var(--red);
    color: var(--blue);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    padding: 1.2rem 1.5rem;
}
.mission-quote cite {
    color: var(--red);
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    font-style: normal;
    letter-spacing: .08em;
    margin-top: .5rem;
    text-transform: uppercase;
}


/* VALUES
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
.values { 
    background: var(--cream);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}
.value-card {
    background: var(--white);
    border-top: 5px solid var(--blue);
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    overflow: hidden;
    padding: 2rem 1.6rem;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.value-card::after {
    background: var(--cream);
    bottom: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    content: '';
    height: 60px;
    position: absolute;
    right: 0;
    width: 60px;
}
.value-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transform: translateY(-4px);
}
.value-icon {
    font-size: 2.2rem;
    margin-bottom: .8rem;
}
.value-card h3 {
    color: var(--blue);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: .6rem;
    text-transform: uppercase;
}
.value-card p {
    color: #444;
    font-size: .95rem;
    line-height: 1.65;
}
.value-card:nth-child(3n+1) { border-top-color: var(--blue); }
.value-card:nth-child(3n+2) { border-top-color: var(--red); }
.value-card:nth-child(3n+3) { border-top-color: var(--gold); }


/* BANNER
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
.banner {
    background: var(--blue);
    overflow: hidden;
    padding: 4rem 2rem;
    position: relative;
    text-align: center;
}
.banner::before {
    color: var(--white);
    content: '★';
    font-size: 20rem;
    left: 50%;
    opacity: .04;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}
.banner h2 { 
    color: var(--white);
    margin-bottom: 1rem;
}
.banner p {
    color: rgba(255,255,255,.82);
    font-size: 1.15rem;
    line-height: 1.75;
    margin: 0 auto 2rem;
    max-width: 700px;
}
.banner-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.pill {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(201,168,76,.5);
    border-radius: 999px;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    letter-spacing: .08em;
    padding: .45rem 1.1rem;
    text-transform: uppercase;
}


/* PRIORITIES
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
.priorities { 
    background: var(--white);
}
.priority-list { 
    margin-top: 2rem;
}
.priority-item {
    align-items: start;
    border-bottom: 1px solid #eee;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 60px 1fr;
    padding: 1.5rem 0;
}
.priority-item:last-child { 
    border-bottom: none;
}
.priority-num {
    color: var(--red);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    opacity: .7;
}
.priority-item h3 {
    color: var(--blue);
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: .4rem;
    text-transform: uppercase;
}
.priority-item p {
    color: #444;
    font-size: .97rem;
    line-height: 1.7;
}


/* CTA
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
.cta {
    background: linear-gradient(135deg, var(--red-dk) 0%, var(--red) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta::before {
    color: rgba(255,255,255,.15);
    content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
    font-size: 1.2rem; 
    left: 50%;
    letter-spacing: .8rem;
    position: absolute;
    top: 1rem;
    transform: translateX(-50%);
    white-space: nowrap;
}
.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}
.cta p {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}
.cta-form {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 520px;
}
.cta-form input {
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 3px;
    color: var(--white);
    flex: 1;
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    min-width: 220px;
    padding: .85rem 1.2rem;
}
.cta-form input::placeholder { 
    color: rgba(255,255,255,.6);
}
.cta-form input:focus {
    border-color: var(--gold);
    outline: none;
}


/* FOOTER
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
footer {
    background: var(--ink);
    color: rgba(255,255,255,.55);
    font-size: .85rem; line-height: 1.7;
    text-align: center; padding: 2.5rem 2rem;
}
footer strong {
    color: var(--gold);
}
.footer-stars {
    color: var(--gold);
    font-size: .75rem;
    letter-spacing: .4rem;
    margin-bottom: .6rem;
}


@media (max-width: 768px) {
    .mission-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
    }
    .nav-links {
        display: none;
    }
}

@media (max-width: 650px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    }
}
