:root {
    --ink: #171717;
    --muted: #656565;
    --paper: #fffdf8;
    --surface: #ffffff;
    --accent: #d94f2b;
    --accent-dark: #96351c;
    --accent-soft: #fff0e8;
    --teal: #176b69;
    --line: #e9e1d8;
    --shadow: 0 18px 46px rgba(37, 26, 20, 0.10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    overflow-wrap: anywhere;
    -webkit-text-size-adjust: 100%;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 248, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: min(1180px, 92%);
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.c2cd66425d3 {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.c2cd66425d3 img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.brand-copy {
    min-width: 0;
}

.brand-name {
    display: block;
    color: var(--accent-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 2.1vw, 1.45rem);
    font-weight: 800;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.brand-tagline {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.c53108265d0 {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    color: var(--ink);
    font-size: 1.35rem;
    cursor: pointer;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #343434;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ffffff;
    background: var(--teal);
}

.page-shell {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.c8fc757848c {
    padding: 48px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 28px;
}

.hero-copy {
    position: relative;
    overflow: hidden;
    min-height: 530px;
    padding: clamp(34px, 6vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 34px;
    background: var(--accent-soft);
}

.hero-copy::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 42px solid rgba(217, 79, 43, 0.13);
}

.eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.c8fc757848c h1,
.page-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--accent-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
}

.c8fc757848c .ce36cbaba64 {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 24px 0 0;
    color: #3f3a36;
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--teal);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.button.alt {
    color: var(--accent-dark);
    background: #ffffff;
    border: 1px solid var(--line);
}

.hero-image {
    min-height: 530px;
    width: 100%;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.section {
    padding: 74px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2,
.content-panel h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.08;
}

.section-heading p {
    margin: 14px 0 0;
    color: var(--muted);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.program-card {
    grid-column: span 6;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.program-card:nth-child(3) {
    grid-column: span 7;
}

.program-card:nth-child(4) {
    grid-column: span 5;
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 26px;
}

.card-body h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.card-body p {
    margin: 12px 0 0;
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: center;
}

.split-section img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.content-panel {
    padding: clamp(28px, 5vw, 58px);
    border-radius: 30px;
    background: var(--teal);
    color: #ffffff;
}

.content-panel p {
    color: rgba(255, 255, 255, 0.84);
}

.stats {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stat {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
}

.stat strong {
    display: block;
    font-size: 1.4rem;
}

.page-hero {
    padding: 70px 0 52px;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.page-hero-copy {
    padding: clamp(34px, 6vw, 70px);
    border-radius: 32px;
    background: var(--accent-soft);
}

.page-hero-copy p {
    margin: 24px 0 0;
    color: #514943;
    font-size: 1.08rem;
}

.page-hero-image {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

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

.text-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
}

.text-card h3 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.text-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.policy-list {
    display: grid;
    gap: 16px;
}

.policy-item {
    padding: 24px;
    border-left: 6px solid var(--accent);
    border-radius: 0 18px 18px 0;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(37, 26, 20, 0.07);
}

.policy-item h3 {
    margin: 0 0 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
}

.contact-card,
.contact-form-wrap {
    padding: clamp(26px, 5vw, 44px);
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-card h2,
.contact-form-wrap h2 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
}

.contact-line {
    margin: 18px 0;
}

.contact-line strong {
    display: block;
    color: var(--accent-dark);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fffdf9;
    font: inherit;
}

.contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.map-wrap {
    margin-top: 28px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.site-footer {
    margin-top: 64px;
    color: #ffffff;
    background: #172f2e;
}

.footer-inner {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
}

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

.footer-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 16px;
    background: #ffffff;
}

.footer-name {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.footer-inner h3 {
    margin-top: 0;
    color: #ffd8c8;
}

.footer-inner p,
.footer-inner a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
    padding: 18px 4%;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .c53108265d0 {
        display: inline-grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .site-nav {
        position: absolute;
        top: 86px;
        left: 4%;
        right: 4%;
        display: none;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        text-align: center;
    }

    .hero-grid,
    .page-hero-inner,
    .split-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-image {
        min-height: auto;
    }

    .hero-image {
        max-height: 520px;
    }

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

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

@media (max-width: 650px) {
    .header-inner {
        min-height: 76px;
        gap: 10px;
    }

    .c2cd66425d3 {
        gap: 10px;
    }

    .c2cd66425d3 img {
        width: 48px;
        height: 48px;
    }

    .brand-tagline {
        display: none;
    }

    .site-nav {
        top: 76px;
    }

    .c8fc757848c,
    .page-hero {
        padding-top: 24px;
    }

    .hero-copy,
    .page-hero-copy {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .c8fc757848c h1,
    .page-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.8rem);
    }

    .hero-image,
    .page-hero-image {
        min-height: 300px;
        border-radius: 24px;
    }

    .section {
        padding: 52px 0;
    }

    .program-grid,
    .text-grid,
    .stats,
    .footer-inner,
    .form-row {
        grid-template-columns: 1fr;
    }

    .program-card,
    .program-card:nth-child(3),
    .program-card:nth-child(4) {
        grid-column: 1 / -1;
    }

    .program-card img {
        height: 220px;
    }

    .split-section img {
        min-height: 300px;
    }

    .hero-actions,
    .hero-actions .button,
    .contact-form button {
        width: 100%;
    }

    .footer-inner {
        padding: 42px 0;
    }
}
