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

:root {
    --color-primary: #4a6741;
    --color-secondary: #6b8f63;
    --color-accent: #7c9a72;
    --color-bg: #ffffff;
    --color-text: #3a3a3a;
    --color-text-light: #6b6b6b;
    --color-light: #f0f4ef;
    --color-white: #fff;
    --color-border: #d6e2d3;
    --max-width: 1100px;
    --font-main: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.75;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: #3d5636;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: .2px;
}

.logo:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    height: 68px;
}

.main-nav li {
    display: flex;
    align-items: center;
}

.main-nav a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1.3rem;
    color: var(--color-text-light);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: color .25s, border-color .25s;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.main-nav a.active {
    border-bottom-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    background: #3d5636;
    color: var(--color-white);
    text-align: center;
    padding: 5.5rem 1.5rem;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: .5rem;
    letter-spacing: -.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: .3px;
}

.hero p {
    font-size: 1rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto .6rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: .75rem 2rem;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
    text-align: center;
}

.btn:hover {
    background: #3d5636;
    border-color: #3d5636;
    color: var(--color-white);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, .4);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-footer {
    background: var(--color-primary);
    color: var(--white-white);
    border-color: var(--color-primary);
    font-size: .8rem;
    padding: .6rem 1.5rem;
    margin-top: .5rem;
}

.btn-footer:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-white);
}

/* ================================================================
   HIGHLIGHT CARDS
   ================================================================ */
.home-highlights {
    padding: 5rem 0;
    background: var(--color-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    display: block;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 2rem;
    text-align: left;
    transition: box-shadow .3s, transform .3s;
    color: var(--color-text);
}

.highlight-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--color-text);
}

.highlight-card h3 {
    color: var(--color-primary);
    margin-bottom: .5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.highlight-card p {
    color: var(--color-text-light);
    font-size: .93rem;
    margin-bottom: 1rem;
    line-height: 1.65;
}

.card-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ================================================================
   PAGE HEADER
   ================================================================ */
.page-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 3.5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.3px;
}

/* ================================================================
   CONTENT SECTIONS
   ================================================================ */
.content {
    padding: 4.5rem 0;
}

.content h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    margin-top: 3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: .6rem;
}

.content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.content h2:first-child {
    margin-top: 0;
}

.section-alt {
    padding: 4.5rem 0;
    background: var(--color-light);
}

.section-alt h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-weight: 600;
    position: relative;
    padding-bottom: .6rem;
}

.section-alt h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.text-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

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

/* ================================================================
   LISTS
   ================================================================ */
.indications-list,
.session-steps {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.9;
}

.indications-list li,
.session-steps li {
    padding: .15rem 0;
}

/* ================================================================
   AUDIENCE / SERVICES GRID
   ================================================================ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 1.75rem;
    text-align: left;
    transition: box-shadow .3s;
}

.audience-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.audience-card h3 {
    color: var(--color-primary);
    margin-bottom: .4rem;
    font-size: .88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.audience-card p {
    color: var(--color-text-light);
    font-size: .93rem;
    line-height: 1.65;
}

/* ================================================================
   HOME APPROACH
   ================================================================ */
.home-approach {
    padding: 5rem 0;
}

.home-approach h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: .6rem;
}

.home-approach h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.home-approach .text-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.section-title-centered {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* ================================================================
   ENGAGEMENTS
   ================================================================ */
.home-engagements {
    padding: 5rem 0;
}

.home-engagements h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: .6rem;
}

.home-engagements h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

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

.engagement-card {
    background: var(--color-light);
    border-radius: 6px;
    padding: 1.75rem;
    text-align: left;
    transition: box-shadow .3s;
}

.engagement-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.engagement-card h3 {
    color: var(--color-primary);
    margin-bottom: .5rem;
    font-size: .88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.engagement-card p {
    color: var(--color-text-light);
    font-size: .93rem;
    line-height: 1.65;
}

/* ================================================================
   CTA SECTIONS
   ================================================================ */
.home-cta {
    padding: 5rem 0;
    background: var(--color-primary);
}

.cta-box {
    text-align: center;
    color: var(--color-white);
}

.cta-box h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-box p {
    font-size: 1.05rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.cta-box .btn {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    font-size: .95rem;
    padding: .85rem 2.5rem;
}

.cta-box .btn:hover {
    background: var(--color-light);
    border-color: var(--color-light);
    color: var(--color-primary);
}

.cta-inline {
    margin-top: 2rem;
}

/* ================================================================
   ABOUT EXTRAS
   ================================================================ */
.about-tagline {
    color: var(--color-text-light);
    font-size: .95rem;
    margin-bottom: 1rem;
}

.about-closing-section {
    text-align: center;
    padding: 1rem 0;
}

.about-closing-section .btn {
    margin-top: 1rem;
}

/* ================================================================
   VIDEO EMBED
   ================================================================ */
.video-embed {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 2.5rem auto;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 1rem 0;
}

.about-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 200px;
    height: 250px;
    background: var(--color-light);
    border: 2px dashed var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: .85rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.about-summary h2 {
    font-size: 1.7rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about-highlights {
    list-style: none;
}

.about-highlights li {
    padding: .4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-text);
    font-size: 1rem;
}

.about-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .85rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
}

.about-story p {
    font-size: 1.02rem;
}

.about-closing {
    margin-top: 1.5rem;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-primary);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, .75);
    padding: 3.5rem 0 0;
    margin-top: auto;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: .8rem;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col p {
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: .5rem;
}

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

.footer-col li {
    padding: .2rem 0;
}

.footer-col a {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--color-white);
    text-decoration: none;
}

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

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: .75rem 0;
        gap: .5rem;
    }

    .main-nav ul {
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .main-nav a {
        height: auto;
        padding: .5rem .75rem;
        font-size: .72rem;
        border-bottom: none;
    }

    .main-nav a.active {
        border-bottom: 2px solid var(--color-primary);
    }

    .hero {
        padding: 3.5rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .content,
    .section-alt {
        padding: 3rem 0;
    }

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

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

    .about-intro {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .about-highlights li {
        text-align: left;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
