:root {
    --bg: #fffaf2;
    --soft: #f3eadb;
    --primary: #7bb661;
    --primary-dark: #4f8f3a;
    --accent: #f4b942;
    --text: #263326;
    --muted: #6c7769;
    --white: #ffffff;
    --radius: 24px;
    --shadow: 0 18px 45px rgba(54, 72, 45, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 250, 242, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(38, 51, 38, 0.08);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 87px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    flex-shrink: 0;
}

.logo-mark img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

.logo small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.nav {
    display: flex;
    gap: 12px;
    font-size: 15px;
}

.nav a {
    padding: 6px 14px;
    border-radius: 999px;

    color: var(--text);
    font-weight: 500;

    transition:
        background .2s ease,
        color .2s ease;
}

.nav a:hover {
    background: rgba(123, 182, 97, 0.12);
    color: var(--primary-dark);
}

.nav a.is-active {
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.hero {
    padding: 80px 0 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    color: var(--primary-dark);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 13px;
    margin: 0 0 12px;
}

h1, h2, h3 {
    line-height: 1.15;
    margin: 0 0 18px;
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
}

h3 {
    font-size: 22px;
}

.hero-text {
    max-width: 660px;
    font-size: 20px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(38, 51, 38, 0.12);
}

.hero-card,
.card,
.news-placeholder,
.cta {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 32px;
}

.hero-card h2 {
    font-size: 28px;
    margin-bottom: 28px;
}

.hero-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-card li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(38, 51, 38, 0.08);
}

.hero-card li:last-child {
    border-bottom: 0;
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 920px;
    margin-bottom: 32px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    padding: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card p,
.split p,
.news-placeholder p,
.cta p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-dark);
    font-weight: 800;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-list div {
    background: var(--white);
    padding: 22px;
    border-radius: 20px;
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list span {
    color: var(--muted);
    margin-top: 6px;
}

.news-placeholder {
    padding: 32px;
}

.cta-section {
    padding-top: 32px;
}

.cta {
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer {
    background: #263326;
    color: white;
    padding: 32px 0;
}

.footer p {
    color: rgba(255,255,255,0.72);
    margin: 2px 0 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-meta {
    text-align: right;
    line-height: 1.35;
}

.footer-meta p {
    margin: 0;
}

.footer-admin-link {
    display: inline-block;

    margin-top: 0;

    font-size: 14px;

    color: rgba(255,255,255,.68);

    text-decoration: none;
}

.footer-admin-link:hover {
    color: white;
}

@media (max-width: 900px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    .nav {
        flex-wrap: wrap;
    }

    .hero-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta,
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-meta {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .hero:not(.hero-slider) {
        padding-top: 48px;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
}

.news-card h2,
.news-card h3 {
    margin-top: 8px;
}

.news-card p {
    color: var(--muted);
}

.news-meta {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
}

.article-container {
    max-width: 1120px;
}

.article-container h1 {
    font-size: clamp(36px, 5vw, 58px);
}

.lead {
    max-width: none;
    width: 100%;

    font-size: 24px;
    line-height: 1.7;

    font-weight: 700;

    color: var(--text);

    margin-bottom: 36px;
}

.about-story {
    max-width: none;
    width: 100%;
}

.about-story p {
    max-width: none;
    width: 100%;
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 22px;
}

.article-image {
    display: block;

    max-width: 100%;
    width: auto;
    height: auto;

    border-radius: var(--radius);

    margin: 32px auto;

    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.article-content {
    margin-top: 32px;
    font-size: 18px;
}

.article-content p {
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.section-soft {
    background: #f8f5ef;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.feature-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #eef6e8;

    font-size: 30px;

    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-section-heading {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    background: white;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    align-items: start;
}

.timeline-item strong {
    color: var(--primary-dark);
}

.timeline-item span {
    color: var(--muted);
}

@media (max-width: 700px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.contact-location {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 32px;
}

.contact-location-content,
.map-card,
.class-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.contact-location-content {
    padding: 30px;
}

.class-card {
    padding: 20px;
    margin-top: 18px;
    box-shadow: inset 0 0 0 1px rgba(38, 51, 38, 0.08);
}

.class-card h4 {
    font-size: 22px;
    margin: 0 0 10px;
}

.class-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.map-card {
    overflow: hidden;
    min-height: 360px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

@media (max-width: 900px) {
    .contact-location {
        grid-template-columns: 1fr;
    }
}

.activity-list {
    display: grid;
    gap: 22px;
}

.activity-card {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 24px;
    align-items: start;
}

.activity-card h3 {
    margin-bottom: 14px;
}

.activity-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 14px;
}

.activity-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .activity-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.hero-info-list {
    display: grid;
    gap: 16px;
}

.hero-info-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(38, 51, 38, 0.08);
}

.hero-info-item:last-child {
    border-bottom: 0;
}

.hero-info-label {
    display: block;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--primary-dark);

    margin-bottom: 6px;
}

.hero-info-item strong {
    display: block;

    font-size: 16px;
    line-height: 1.5;

    color: var(--text);
}

.article-download {
    margin: 32px 0;
}

.article-download .btn {
    gap: 10px;
}

.article-downloads {
    margin-top: 40px;
}

.article-downloads h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.download-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-grid {
    display: grid;
    gap: 22px;
}

.payment-grid-schools {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 22px;
}

.payment-grid-info {
    grid-template-columns: repeat(2, 1fr);
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.document-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);

    padding: 30px;

    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 24px;

    align-items: start;
}

.document-card h3 {
    margin-bottom: 14px;
}

.document-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

@media (max-width: 900px) {

    .payment-grid-schools,
    .payment-grid-info,
    .document-grid {
        grid-template-columns: 1fr;
    }

    .document-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--white);

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0,0,0,.06);

    transition:
        transform .2s ease,
        box-shadow .2s ease;

    display: flex;
    flex-direction: column;

    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 20px 44px rgba(0,0,0,.10);
}

.news-card-image-wrap {
    display: block;
}

.news-card-image {
    width: 100%;
    height: 240px;

    object-fit: cover;

    display: block;
}

.news-card-content {
    padding: 26px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.news-meta {
    color: var(--primary-dark);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 14px;
}

.news-card-title {
    font-size: 26px;

    line-height: 1.3;

    margin-bottom: 16px;
}

.news-card-title a:hover {
    color: var(--primary-dark);
}

.news-card-excerpt {
    color: var(--muted);

    line-height: 1.7;

    margin-bottom: 24px;

    flex: 1;
}

@media (max-width: 1000px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card-title {
        font-size: 24px;
    }

    .news-card-image {
        height: 220px;
    }
}

.news-list {
    display: grid;
    gap: 24px;
}

.news-row-card {
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
    overflow: hidden;

    display: grid;
    grid-template-columns: 280px 1fr;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.news-row-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0,0,0,.10);
}

.news-row-image-wrap {
    display: block;
    min-height: 100%;
}

.news-row-image {
    width: 100%;
    height: 100%;
    min-height: 190px;

    object-fit: cover;
    display: block;
}

.news-row-content {
    padding: 22px 26px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-row-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.news-row-title a:hover {
    color: var(--primary-dark);
}

.news-row-excerpt {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.news-row-content .text-link {
    margin-top: auto;
}

@media (max-width: 800px) {
    .news-row-card {
        grid-template-columns: 1fr;
    }

    .news-row-image {
        height: 220px;
        min-height: 220px;
    }

    .news-row-title {
        font-size: 24px;
    }
}

.home-news-list {
    display: grid;
    gap: 22px;
}

.home-news-card {
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
}

.home-news-card-no-image {
    grid-template-columns: 1fr;
}

.home-news-image {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    display: block;
}

.home-news-content {
    padding: 22px 26px;
}

.home-news-title {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.home-news-excerpt {
    color: var(--muted);
    margin-bottom: 14px;
}

.home-news-more {
    margin-top: 28px;
}

@media (max-width: 760px) {
    .home-news-card {
        grid-template-columns: 1fr;
    }

    .home-news-image {
        height: 210px;
    }
}

.newsletter-box {
    background: white;

    border-radius: 32px;

    padding: 42px;

    box-shadow: 0 18px 45px rgba(54, 72, 45, 0.10);

    display: grid;
    grid-template-columns: 1fr auto;

    gap: 40px;

    align-items: center;
}

.newsletter-content h2 {
    font-size: clamp(24px, 2.2vw, 32px);
    margin-bottom: 14px;
}

.newsletter-content p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.newsletter-form {
    min-width: 420px;
}

.newsletter-form-row {
    display: flex;
    gap: 14px;
}

.newsletter-form input[type="email"] {
    flex: 1;

    height: 52px;

    border: 1px solid rgba(38, 51, 38, 0.12);

    border-radius: 999px;

    padding: 0 20px;

    font-size: 16px;

    background: white;
}

.newsletter-form input[type="email"]:focus {
    outline: none;

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(123, 182, 97, 0.12);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 14px;

    font-size: 14px;

    color: var(--muted);

    line-height: 1.5;
}

.newsletter-consent input {
    margin-top: 3px;
}

.newsletter-submit-btn {
    white-space: nowrap;
}

.newsletter-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 900px) {

    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        min-width: 0;
        width: 100%;
    }

    .newsletter-form-row {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

.toast-message {
    position: fixed;
    top: 96px;
    right: 24px;
    z-index: 100;

    max-width: 420px;

    padding: 16px 20px;

    background: white;
    color: var(--text);

    border-left: 5px solid var(--primary);
    border-radius: 18px;

    box-shadow: 0 18px 45px rgba(54, 72, 45, 0.18);

    font-weight: 700;

    animation: toastIn .25s ease;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .toast-message {
        left: 16px;
        right: 16px;
        top: 88px;
        max-width: none;
    }
}

.hero-slider {
    position: relative;

    width: 100%;
    max-width: 1643px;
    aspect-ratio: 1643 / 545;

    margin: 0 auto;
    overflow: hidden;
    padding: 0;

    background: #fffaf2;
}

.hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;

    background-image: var(--hero-image);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #fffaf2;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider-content {
    position: relative;
    z-index: 5;
    max-width: 520px;
}

.hero-slider-content h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-slider-content .hero-text {
    max-width: 430px;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.hero-slider-content .eyebrow {
    margin-bottom: .5rem;
}

.hero-slider-content .hero-actions {
    margin-top: 1.25rem;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 999px;

    background: var(--primary-dark);
    color: white;

    font-size: 2rem;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.hero-slider-prev {
    left: 24px;
}

.hero-slider-next {
    right: 24px;
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 6;

    display: flex;
    gap: 10px;

    transform: translateX(-50%);
}

.hero-slider-dots button {
    width: 11px;
    height: 11px;

    border: 0;
    border-radius: 999px;

    background: rgba(255,255,255,.75);

    cursor: pointer;
}

.hero-slider-dots button.is-active {
    background: var(--primary-dark);
}

.home-quick-info {
    padding-top: 3rem;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.quick-info-item {
    text-align: center;
    padding: 1.5rem;
}

.quick-info-icon {
    display: block;

    margin-bottom: .75rem;

    color: var(--primary-dark);

    font-size: 3rem;
    line-height: 1;
}

.quick-info-item h3 {
    margin-bottom: .5rem;
}

.quick-info-item p {
    margin: 0;
    color: var(--text);
}

@media (max-width: 800px) {
    .hero-slider {
        aspect-ratio: 1643 / 545;
        width: 100%;
        max-width: none;
    }

    .hero-slide {
        align-items: flex-start;
        padding-top: 24px;

        background-size: contain;
        background-position: center center;
    }

    .hero-slider-content {
        max-width: 90%;
    }

    .hero-slider-content h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .hero-slider-content .hero-text {
        font-size: .95rem;
    }

    .hero-slider-content .hero-actions {
        margin-top: 1rem;
    }

    .hero-slider-arrow {
        display: none;
    }

    .hero-slider-dots {
        bottom: 12px;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.hero-slider-content,
.hero-slider-content h1,
.hero-slider-content .hero-text,
.hero-slider-content .eyebrow {
    color: white;
}

.hero-slider-content .hero-text {
    color: rgba(255,255,255,.92);
}

.hero-slider-content .eyebrow {
    color: rgba(255,255,255,.82);
}

.hero-slider-content {
    text-shadow:
        0 2px 10px rgba(0,0,0,.35),
        0 6px 24px rgba(0,0,0,.28);
}