/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors */
    --primary-blue: #3867EB;
    --charcoal: #2E2E2E;
    --light-gray: #898B8D;
    --white: #FFFFFF;
    
    /* Accent Colors */
    --gold: #C9A24D;
    --clay: #C56A4A;
    --slate-blue: #5F6F82;
    
    /* Legacy mappings for smooth transition */
    --navy: var(--charcoal);
    --slate: var(--slate-blue);
    --teal: var(--primary-blue);
    --cream: #f7f4ef;
    --gray-light: #e8e5e0;
    --gray-medium: var(--slate-blue);
    --accent: var(--gold);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
}

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

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

/* Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.subhead {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--slate);
    margin-bottom: 2rem;
}

.large-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--slate);
}

.label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

/* Layout */
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--teal);
}

.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    border: 2px solid var(--navy);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--navy);
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 0.5rem 1.5rem;
    background: var(--teal);
    color: var(--white) !important;
    border-radius: 6px;
}

.nav-cta:hover {
    background: var(--navy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
    color: var(--white);
    text-align: center;
}

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

.hero h1 {
    color: var(--white);
    font-size: 3.75rem;
}

.hero-subhead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background: var(--white);
}

.intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.intro-emphasis {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2rem 0;
}

/* Reality Section */
.reality-section {
    padding: 5rem 0;
    background: var(--cream);
}

.reality-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.reality-intro h2 {
    color: var(--navy);
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.reality-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.reality-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    margin: 0;
}

.reality-conclusion {
    text-align: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-top: 3rem;
}

/* Difference Section */
.difference-section {
    padding: 5rem 0;
    background: var(--white);
}

.difference-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.difference-item {
    text-align: center;
}

.difference-item h3 {
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.difference-item p {
    color: var(--slate);
    font-size: 1.05rem;
}

.difference-result {
    text-align: center;
    font-size: 1.25rem;
    color: var(--navy);
    max-width: 800px;
    margin: 3rem auto 0;
}

/* Home Close */
.home-close {
    padding: 4rem 0;
    background: var(--cream);
    text-align: center;
}

.close-text {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Collaborative Cohorts - FLAGSHIP */
.cohorts-flagship {
    padding: 6rem 0;
    background: var(--navy);
    color: var(--white);
}

.flagship-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
}

.flagship-header h2 {
    color: var(--white);
    font-size: 3rem;
}

.flagship-header .subhead {
    color: var(--gray-light);
}

.cohort-what,
.cohort-designed,
.cohort-how,
.cohort-outcomes {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.cohort-what h3,
.cohort-designed h3,
.cohort-how h3,
.cohort-outcomes h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.cohort-what p,
.cohort-designed p,
.cohort-how p,
.cohort-outcomes p {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cohort-clarity {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    margin-top: 2rem;
}

.cohort-clarity p {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
}

.cohort-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.cohort-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--gray-light);
    font-size: 1.05rem;
}

.cohort-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.process-note,
.outcomes-emphasis {
    font-style: italic;
    color: var(--white);
    margin-top: 1.5rem;
}

.cohort-cta {
    text-align: center;
    background: var(--teal);
    padding: 3rem;
    border-radius: 12px;
    max-width: 700px;
    margin: 4rem auto 0;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* Supporting Services */
.services-section {
    padding: 5rem 0;
    background: var(--cream);
}

.services-header {
    max-width: 850px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    color: var(--navy);
}

.services-header .subhead {
    color: var(--slate);
}

.services-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--teal);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--teal);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--slate);
    line-height: 1.7;
}

.services-fit {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
}

.services-fit h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.services-fit p {
    font-size: 1.15rem;
    color: var(--slate);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-content h2 {
    color: var(--navy);
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.about-challenges {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.about-challenges li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--slate);
    font-size: 1.05rem;
}

.about-challenges li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.5rem;
    line-height: 1;
}

.about-emphasis {
    text-align: center;
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--cream);
    border-radius: 8px;
}

.about-belief,
.about-how {
    max-width: 900px;
    margin: 4rem auto;
}

.about-belief h3,
.about-how h3 {
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.belief-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
    margin: 2rem 0;
    line-height: 1.6;
}

.how-list,
.role-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.how-list li,
.role-list li {
    color: var(--slate);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.role-list {
    list-style: decimal;
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
    background: var(--cream);
}

.leadership-layout {
    max-width: 900px;
    margin: 0 auto;
}

.leadership-content h2 {
    color: var(--navy);
    margin-bottom: 2rem;
}

.leadership-content h3 {
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.leadership-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1.25rem;
}

.why-amelia {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid var(--teal);
}

.why-amelia h4 {
    color: var(--teal);
    margin-bottom: 1rem;
}

.amelia-qualities {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.amelia-qualities li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--slate);
    font-size: 1.05rem;
}

.amelia-qualities li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.leadership-close {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.leadership-close p {
    color: var(--gray-light);
    font-size: 1.15rem;
    margin: 0;
}

.leadership-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--navy);
    color: var(--white);
}

.contact-section h2,
.contact-section h4 {
    color: var(--white);
}

.contact-section .large-text {
    color: var(--gray-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item a {
    color: var(--accent);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

#formStatus {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    display: none;
}

#formStatus.success {
    background: rgba(45, 122, 142, 0.2);
    color: var(--white);
    display: block;
}

#formStatus.error {
    background: rgba(220, 53, 69, 0.2);
    color: var(--white);
    display: block;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--gray-light);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-nav h4,
.footer-connect h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--gray-light);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-connect a {
    color: var(--accent);
    transition: color 0.3s ease;
}

.footer-connect a:hover {
    color: var(--white);
}

.social-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent);
    border-radius: 6px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--gray-light);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 8rem 2rem 4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .reality-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        padding: 0 1.5rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .leadership-links {
        flex-direction: column;
    }
}
