:root {
    --green-900: #073d1f;
    --green-800: #0b5129;
    --green-700: #176c38;
    --green-100: #edf7ec;
    --gold: #d79a16;
    --gold-dark: #ad7808;
    --ink: #1d2a22;
    --muted: #627066;
    --line: #dfe8df;
    --white: #ffffff;
    --shadow: 0 16px 36px rgba(7, 61, 31, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Roboto", Arial, sans-serif;
    background: var(--white);
    line-height: 1.6;
}

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

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

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.top-strip {
    background: var(--green-900);
    color: var(--white);
    font-size: 0.875rem;
}

.top-strip__inner {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 8px 0;
}

.masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand__text {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.brand__text strong {
    color: var(--green-900);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(1.05rem, 2.2vw, 1.62rem);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.brand__text em {
    color: var(--muted);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
}

.contact-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--green-900);
    font-weight: 700;
}

.contact-bar span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.main-nav {
    background: var(--green-800);
    color: var(--white);
}

.main-nav__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.main-nav a {
    padding: 14px 18px;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: var(--green-700);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    padding: 11px 20px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.btn--gold {
    background: var(--gold);
    color: #171104;
}

.btn--gold:hover,
.btn--gold:focus-visible {
    background: var(--gold-dark);
    color: var(--white);
}

.btn--light {
    background: var(--white);
    color: var(--green-900);
}

.btn--full {
    width: 100%;
}

.poster {
    background: #f2f8ef;
}

@media (min-width: 1100px) {
    .poster {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
        background: linear-gradient(90deg, #f2f8ef 0 50%, var(--white) 50% 100%);
    }

    .poster > * {
        min-width: 0;
    }

    .poster > * > .container {
        width: min(100% - 40px, 680px);
    }

    .poster-hero,
    .poster-courses {
        grid-column: 1;
    }

    .poster-hero {
        grid-row: 1;
    }

    .poster-courses {
        grid-row: 2;
        align-self: stretch;
    }

    .poster-block--soft,
    .poster-process,
    .poster-contact {
        grid-column: 2;
    }

    .poster-block--soft {
        grid-row: 1 / 3;
        align-self: start;
    }

    .poster-process {
        grid-row: 1 / 3;
        align-self: start;
        margin-top: 230px;
    }

    .poster-contact {
        grid-column: 1 / -1;
        grid-row: 3;
    }
}

@media (min-width: 1100px) and (max-width: 1320px) {
    .poster-feature-row {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }
}

.poster-hero {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    background:
        linear-gradient(180deg, rgba(7, 61, 31, 0.06), rgba(7, 61, 31, 0.38)),
        linear-gradient(90deg, rgba(7, 61, 31, 0.42), rgba(7, 61, 31, 0.08)),
        url("photos/cultivate-your-land.jpg") center / cover;
}

.poster-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    padding: 72px 0 110px;
    color: var(--white);
    text-align: center;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

.poster-hero h1 {
    max-width: 980px;
    font-size: clamp(2.1rem, 5vw, 4.35rem);
}

.poster-hero h1 span {
    display: block;
    text-transform: uppercase;
}

.poster-hero p {
    margin: 12px 0 20px;
    font-size: clamp(1rem, 2.2vw, 1.42rem);
    font-weight: 700;
}

.poster-pill {
    border-radius: 999px;
    background: var(--white);
    color: #121812;
    padding: 11px 28px;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    text-shadow: none;
    text-transform: uppercase;
}

.poster-courses {
    position: relative;
    margin-top: -58px;
    padding: 0 0 30px;
    background: #edf7ec;
}

.poster-courses__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
    max-width: 900px;
    margin-bottom: 46px;
}

.poster-courses article,
.poster-course-card {
    position: relative;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    min-height: 150px;
    border-radius: 8px;
    background: var(--white);
    padding: 24px 104px 24px 26px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.poster-course-card {
    color: inherit;
}

.poster-course__number {
    color: rgba(7, 61, 31, 0.16);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1;
}

.poster-course__icon {
    position: absolute;
    top: 18px;
    right: 22px;
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-900);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    overflow: hidden;
}

.poster-course__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.poster-courses h2 {
    max-width: 100%;
    color: #101510;
    font-size: 1.34rem;
}

.poster-courses p {
    margin: 2px 0 0;
    color: #101510;
    font-weight: 700;
}

.poster-eligibility {
    margin: 0 16px;
    color: #121812;
    text-align: center;
}

.poster-block {
    padding: 44px 0;
}

.poster-block--soft {
    background: #f7faf5;
}

.poster-block--soft {
    padding-bottom: 0;
}

.poster-title {
    max-width: none;
    margin-bottom: 30px;
    color: #121812;
    text-align: center;
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.poster-feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 16px;
    text-align: center;
}

.poster-feature-row article {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-width: 0;
}

.poster-icon {
    display: inline-grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #dcebd5;
    color: var(--green-900);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.42);
    overflow: hidden;
}

.poster-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.poster-feature-row strong {
    max-width: 100%;
    color: #121812;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.76rem;
    line-height: 1.25;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: manual;
}

.poster-feature-row--gear {
    margin-bottom: 0;
}

.poster-process {
    background: var(--white);
    padding-top: 0;
}

.poster-process__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.poster-process h3 {
    margin-bottom: 16px;
    color: #121812;
    text-align: center;
}

.poster-steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.poster-steps li {
    position: relative;
    min-height: 34px;
    padding-left: 48px;
    color: #121812;
    font-weight: 700;
    counter-increment: steps;
}

.poster-steps li::before {
    content: counter(steps);
    position: absolute;
    top: -2px;
    left: 0;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.9rem;
}

.poster-steps--green li::before {
    background: #4fae39;
}

.poster-steps--blue li::before {
    background: #9dd6e2;
    color: #102a31;
}

.poster-contact {
    background: linear-gradient(180deg, var(--green-900), #062d17);
    color: var(--white);
    padding: 24px 0 28px;
    text-align: center;
}

.poster-contact h2 {
    max-width: none;
    color: var(--white);
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.poster-contact p {
    margin: 8px 0 16px;
    color: rgba(255, 255, 255, 0.82);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 61, 31, 0.94), rgba(23, 108, 56, 0.84)),
        radial-gradient(circle at 80% 20%, rgba(215, 154, 22, 0.24), transparent 32%),
        var(--green-900);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(30deg, rgba(255, 255, 255, 0.18) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.18) 87.5%, rgba(255, 255, 255, 0.18)),
        linear-gradient(150deg, rgba(255, 255, 255, 0.18) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.18) 87.5%, rgba(255, 255, 255, 0.18));
    background-position: 0 0, 34px 20px;
    background-size: 68px 40px;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 34px;
    align-items: center;
    padding: 78px 0 34px;
}

.hero__content {
    color: var(--white);
}

.eyebrow,
.section-kicker {
    margin: 0 0 10px;
    color: var(--gold);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.16;
}

h1 {
    max-width: 720px;
    font-size: clamp(2.35rem, 6vw, 4.8rem);
}

h2 {
    max-width: 760px;
    color: var(--green-900);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
}

h3 {
    color: var(--green-900);
    font-size: 1.28rem;
}

.hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 18px 0 0;
    font-size: 1.18rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    border-left: 4px solid var(--gold);
    padding: 8px 0 8px 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.hero__contact span {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero__contact a {
    color: var(--white);
    font-size: 1.08rem;
}

.hero__panel {
    display: grid;
    gap: 16px;
}

.hero-course,
.hero-eligibility {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.hero-course {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px;
}

.hero-course span {
    color: rgba(23, 108, 56, 0.18);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.82;
}

.hero-course h2 {
    font-size: 1.28rem;
}

.hero-course p,
.hero-eligibility p {
    margin: 6px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.hero-eligibility {
    padding: 18px 22px;
}

.hero-eligibility strong {
    color: var(--green-900);
    font-family: "Poppins", Arial, sans-serif;
}

.hero__features {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.hero__features div {
    min-height: 112px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px;
    color: var(--white);
}

.hero__features strong {
    display: block;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.2;
}

.hero__features span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    line-height: 1.4;
}

.notice-band {
    background: var(--gold);
    color: #1b1404;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    text-align: center;
}

.notice-band .container {
    padding: 12px 0;
}

.section {
    padding: 76px 0;
}

.section--soft {
    background: var(--green-100);
}

.section--green {
    background: var(--green-900);
    color: var(--white);
}

.section--green h2,
.section--green .section-kicker {
    color: var(--white);
}

.overview__grid,
.split,
.dates-grid,
.enquiry-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 42px;
    align-items: start;
}

.overview p,
.split p,
.dates-grid p,
.cta-panel p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section--green p {
    color: rgba(255, 255, 255, 0.78);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-item,
.course-card,
.enquiry-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-item {
    padding: 22px;
}

.feature-item strong,
.date-list strong {
    display: block;
    color: var(--green-900);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1rem;
}

.feature-item span,
.date-list span {
    color: var(--muted);
    font-size: 0.94rem;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.course-card {
    position: relative;
    min-height: 236px;
    padding: 30px;
    overflow: hidden;
}

.course-card__number {
    display: block;
    margin-bottom: 24px;
    color: rgba(23, 108, 56, 0.18);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 0.8;
}

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

.check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 16px 18px 16px 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 18px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green-700);
    box-shadow: inset 0 0 0 4px var(--green-100);
}

.date-list {
    display: grid;
    gap: 12px;
}

.date-list div {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    padding: 18px 20px;
}

.enquiry-section {
    background: linear-gradient(180deg, var(--white), var(--green-100));
}

.cta-panel {
    position: sticky;
    top: 20px;
    border-radius: 8px;
    background: var(--green-900);
    color: var(--white);
    padding: 34px;
}

.cta-panel h2 {
    color: var(--white);
}

.quick-contact {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.quick-contact a {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    padding: 14px 16px;
    color: var(--white);
    font-weight: 700;
}

.video-section {
    background: var(--white);
}

.video-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.video-section p:not(.section-kicker) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.05rem;
}

.enquiry-form {
    padding: 30px;
}

.enquiry-form h2 {
    margin-bottom: 20px;
}

.enquiry-form label {
    display: block;
    margin: 14px 0 6px;
    color: var(--green-900);
    font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid #cfdace;
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--ink);
    font: inherit;
    background: var(--white);
}

.enquiry-form textarea {
    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--green-700);
    outline: 3px solid rgba(23, 108, 56, 0.16);
}

.enquiry-form small {
    display: block;
    margin-top: 5px;
    color: #b22720;
    font-weight: 700;
}

.alert {
    border-radius: 6px;
    margin-bottom: 16px;
    padding: 12px 14px;
    font-weight: 700;
}

.alert--success {
    background: #e6f6e8;
    color: #115b23;
}

.alert--error {
    background: #fdebea;
    color: #9c2019;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.site-footer {
    background: var(--green-900);
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 34px;
    padding: 46px 0;
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
    font-size: 1rem;
}

.site-footer a {
    color: var(--white);
    font-weight: 700;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 16px;
    text-align: center;
    font-size: 0.88rem;
}

@media (max-width: 920px) {
    .masthead,
    .contact-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .overview__grid,
    .split,
    .dates-grid,
    .enquiry-grid,
    .video-section__inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        padding-top: 58px;
    }

    .hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .poster-feature-row,
    .poster-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel {
        position: static;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .top-strip__inner {
        justify-content: center;
    }

    .brand {
        align-items: flex-start;
    }

    .brand img {
        width: 64px;
        height: 64px;
    }

    .main-nav__inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-nav a {
        padding: 12px;
        text-align: center;
    }

    .hero__grid {
        padding: 44px 0 28px;
    }

    .hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-course {
        grid-template-columns: 64px 1fr;
        padding: 20px;
    }

    .hero-course span {
        font-size: 3rem;
    }

    .hero__features {
        grid-template-columns: 1fr;
        margin-top: 8px;
    }

    .poster-hero {
        min-height: 300px;
    }

    .poster-hero__inner {
        padding: 44px 0 92px;
    }

    .poster-courses__grid,
    .poster-feature-row,
    .poster-process__grid {
        grid-template-columns: 1fr;
    }

    .poster-courses {
        margin-top: -44px;
    }

    .poster-courses article,
    .poster-course-card {
        grid-template-columns: 64px minmax(0, 1fr);
        min-height: 132px;
        padding: 20px 82px 20px 20px;
    }

    .poster-course__number {
        font-size: 3.4rem;
    }

    .poster-course__icon {
        width: 46px;
        height: 46px;
        top: 18px;
        right: 18px;
    }

    .section {
        padding: 54px 0;
    }

    .feature-grid,
    .course-grid {
        grid-template-columns: 1fr;
    }

    .course-card,
    .enquiry-form,
    .cta-panel {
        padding: 24px;
    }
}
