.nh-join {
    overflow: hidden;
    background: #fff;
    color: var(--nh-ink);
}

.nh-join :where(h1, h2, h3, p, li, label, legend, a, button, span) {
    overflow-wrap: anywhere;
}

.nh-join-hero {
    position: relative;
    min-height: 750px;
    display: grid;
    align-items: end;
    isolation: isolate;
    background: var(--nh-primary-deep);
}

.nh-join-hero__media,
.nh-join-hero__overlay {
    position: absolute;
    inset: 0;
}

.nh-join-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nh-join-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 41, 26, .97) 0%, rgba(0, 41, 26, .9) 44%, rgba(0, 41, 26, .47) 72%, rgba(0, 41, 26, .22) 100%),
        linear-gradient(0deg, rgba(0, 36, 23, .7), transparent 62%);
}

.nh-join-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: end;
    padding-block: 165px 92px;
}

.nh-join-hero__copy {
    max-width: 830px;
}

.nh-join-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--nh-lime) !important;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.nh-join-hero h1 {
    margin: 0;
    color: #fff !important;
    font-size: clamp(3.2rem, 6.7vw, 7.2rem);
    line-height: .92;
    letter-spacing: -.065em;
}

.nh-join-hero__copy > p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .84) !important;
    font-size: clamp(1rem, 1.45vw, 1.23rem);
    line-height: 1.75;
}

.nh-join-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.nh-join-hero__card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 30px;
    background: rgba(0, 73, 45, .64);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
}

.nh-join-hero__card > span {
    color: var(--nh-lime) !important;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nh-join-hero__card > strong {
    display: block;
    margin-top: 12px;
    color: #fff !important;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.2;
}

.nh-join-hero__card ul {
    display: grid;
    gap: 11px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.nh-join-hero__card li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
    color: rgba(255, 255, 255, .82) !important;
    line-height: 1.5;
}

.nh-join-hero__card li::before {
    color: var(--nh-lime);
    content: "✓";
    font-weight: 900;
}

.nh-join-paths {
    padding: clamp(90px, 10vw, 150px) 0;
    background:
        radial-gradient(circle at 82% 8%, rgba(200, 242, 122, .2), transparent 28%),
        var(--nh-soft);
}

.nh-join-section-heading {
    max-width: 780px;
}

.nh-join-section-heading h2,
.nh-join-membership h2,
.nh-join-impact h2,
.nh-join-application h2,
.nh-join-final h2 {
    margin: 0;
    color: var(--nh-ink) !important;
    font-size: clamp(2.55rem, 5vw, 5.2rem);
    line-height: .97;
    letter-spacing: -.055em;
}

.nh-join-section-heading > p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--nh-body) !important;
    font-size: 1.04rem;
    line-height: 1.75;
}

.nh-join-paths__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 58px;
}

.nh-join-path {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--nh-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--nh-shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.nh-join-path:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 128, 0, .34);
    box-shadow: var(--nh-shadow);
}

.nh-join-path--featured {
    border-color: var(--nh-primary-deep);
    background: var(--nh-primary-deep);
}

.nh-join-path__number {
    color: var(--nh-primary) !important;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.nh-join-path--featured .nh-join-path__number {
    color: var(--nh-lime) !important;
}

.nh-join-path__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-top: 44px;
    border-radius: 18px;
    background: var(--nh-soft-2);
    color: var(--nh-primary-dark) !important;
    font-size: 1.35rem;
}

.nh-join-path--featured .nh-join-path__icon {
    background: rgba(255, 255, 255, .1);
    color: var(--nh-lime) !important;
}

.nh-join-path h3 {
    margin: 22px 0 0;
    color: var(--nh-ink) !important;
    font-size: 1.55rem;
    line-height: 1.12;
}

.nh-join-path--featured h3 {
    color: #fff !important;
}

.nh-join-path p {
    margin: 14px 0 26px;
    color: var(--nh-body) !important;
    line-height: 1.7;
}

.nh-join-path--featured p {
    color: rgba(255, 255, 255, .77) !important;
}

.nh-join-path .nh-text-link {
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--nh-primary) !important;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.nh-join-path--featured .nh-text-link {
    color: var(--nh-lime) !important;
}

.nh-join-membership {
    padding: clamp(90px, 11vw, 160px) 0;
    background: #fff;
}

.nh-join-membership__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(50px, 8vw, 115px);
    align-items: center;
}

.nh-join-membership__visual {
    position: relative;
    min-height: 690px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--nh-shadow);
}

.nh-join-membership__visual > img {
    width: 100%;
    height: 100%;
    min-height: 690px;
    object-fit: cover;
}

.nh-join-membership__quote {
    position: absolute;
    inset: auto 22px 22px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(0, 48, 31, .92);
}

.nh-join-membership__quote span,
.nh-join-membership__quote strong {
    display: block;
    color: #fff !important;
}

.nh-join-membership__quote span {
    color: var(--nh-lime) !important;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nh-join-membership__quote strong {
    margin-top: 6px;
    font-size: 1.3rem;
}

.nh-join-membership__content > p {
    margin: 24px 0 0;
    color: var(--nh-body) !important;
    font-size: 1.03rem;
    line-height: 1.8;
}

.nh-join-steps {
    display: grid;
    gap: 14px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.nh-join-steps li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 17px;
    padding: 18px;
    border: 1px solid var(--nh-border);
    border-radius: 18px;
    background: var(--nh-soft);
}

.nh-join-steps li > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--nh-primary);
    color: #fff !important;
    font-weight: 900;
}

.nh-join-steps strong {
    color: var(--nh-ink) !important;
    font-size: 1rem;
}

.nh-join-steps p {
    margin: 5px 0 0;
    color: var(--nh-body) !important;
    line-height: 1.55;
}

.nh-join-membership__notice {
    margin: 26px 0 18px;
    padding: 22px;
    border: 1px solid #e3c76c;
    border-radius: 18px;
    background: #fff8dc;
}

.nh-join-membership__notice strong {
    color: #5d4800 !important;
}

.nh-join-membership__notice p {
    margin: 7px 0 0;
    color: #665a2c !important;
    line-height: 1.6;
}

.nh-join-impact {
    padding: clamp(90px, 10vw, 145px) 0;
    background: var(--nh-primary-deep);
}

.nh-join-impact__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: center;
}

.nh-join-impact h2,
.nh-join-final h2 {
    color: #fff !important;
}

.nh-join-impact__copy > p {
    max-width: 640px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 1.03rem;
    line-height: 1.8;
}

.nh-join-impact__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.nh-join-impact__tags span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #fff !important;
    font-size: .84rem;
    font-weight: 750;
}

.nh-join-impact__image {
    min-height: 540px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.nh-join-impact__image img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.nh-join-application {
    padding: clamp(90px, 11vw, 160px) 0;
    background:
        radial-gradient(circle at 10% 8%, rgba(200, 242, 122, .2), transparent 28%),
        var(--nh-soft);
}

.nh-join-application__grid {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 8vw, 105px);
    align-items: start;
}

.nh-join-application__intro > p {
    margin: 24px 0 0;
    color: var(--nh-body) !important;
    font-size: 1.02rem;
    line-height: 1.8;
}

.nh-join-application__security {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.nh-join-application__security > div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 13px;
    padding: 18px;
    border: 1px solid var(--nh-border);
    border-radius: 18px;
    background: #fff;
}

.nh-join-application__security > div > span {
    grid-row: 1 / 3;
    font-size: 1.2rem;
}

.nh-join-application__security strong {
    color: var(--nh-ink) !important;
}

.nh-join-application__security p {
    margin: 4px 0 0;
    color: var(--nh-body) !important;
    font-size: .88rem;
    line-height: 1.55;
}

.nh-join-form-shell {
    padding: clamp(26px, 4vw, 50px);
    border: 1px solid var(--nh-border);
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--nh-shadow);
}

.nh-join-notice {
    margin-bottom: 24px;
    padding: 17px 19px;
    border-radius: 16px;
    font-weight: 750;
    line-height: 1.55;
}

.nh-join-notice--success { border: 1px solid #a9d7b4; background: #e9f8ed; color: #145b2a; }
.nh-join-notice--warning { border: 1px solid #e5c878; background: #fff7d9; color: #705400; }
.nh-join-notice--error { border: 1px solid #efaaaa; background: #fff0f0; color: #8b1e1e; }

.nh-join-form {
    display: grid;
    gap: 22px;
}

.nh-join-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nh-join-choice {
    margin: 0;
    padding: 0;
    border: 0;
}

.nh-join-choice legend {
    margin-bottom: 11px;
    color: var(--nh-ink) !important;
    font-size: .91rem;
    font-weight: 850;
}

.nh-join-choice legend span,
.nh-join-check strong {
    color: #b42318 !important;
}

.nh-join-choice__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.nh-join-choice label {
    cursor: pointer;
}

.nh-join-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nh-join-choice label > span {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #cddfd1;
    border-radius: 16px;
    background: #fbfdfb;
    color: var(--nh-body) !important;
    font-weight: 800;
    transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.nh-join-choice label:hover > span,
.nh-join-choice label.is-selected > span,
.nh-join-choice input:checked + span {
    border-color: var(--nh-primary);
    background: var(--nh-soft-2);
    color: var(--nh-primary-dark) !important;
    box-shadow: 0 0 0 3px rgba(0, 128, 0, .09);
}

.nh-join-choice input:focus-visible + span {
    outline: 3px solid var(--nh-gold);
    outline-offset: 3px;
}

.nh-join .nh-field {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.nh-join .nh-field label,
.nh-join .nh-field__label-row label {
    color: var(--nh-ink) !important;
    font-size: .91rem;
    font-weight: 850;
}

.nh-join .nh-field label span,
.nh-join .nh-field__label-row label span {
    color: #b42318 !important;
}

.nh-join .nh-field__label-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.nh-join .nh-field__label-row > span {
    color: var(--nh-muted) !important;
    font-size: .78rem;
}

.nh-join .nh-field :where(input, select, textarea) {
    width: 100%;
    min-height: 54px;
    margin: 0;
    border: 1px solid #cddfd1;
    border-radius: 15px;
    background: #fbfdfb;
    color: var(--nh-ink) !important;
    font: inherit;
    line-height: 1.4;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.nh-join .nh-field input,
.nh-join .nh-field select {
    padding: 0 16px;
}

.nh-join .nh-field textarea {
    min-height: 135px;
    padding: 15px 16px;
    resize: vertical;
}

.nh-join .nh-field :where(input, select, textarea):focus {
    border-color: var(--nh-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 128, 0, .11);
}

.nh-join-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.nh-join-check {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: var(--nh-body) !important;
    font-size: .87rem;
    line-height: 1.55;
    cursor: pointer;
}

.nh-join-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--nh-primary);
}

.nh-join-form__footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding-top: 4px;
}

.nh-join-form__footer p {
    max-width: 350px;
    margin: 0;
    color: var(--nh-muted) !important;
    font-size: .78rem;
    line-height: 1.5;
}

.nh-join-form button:disabled {
    opacity: .65;
    cursor: wait;
}

.nh-join-final {
    padding: clamp(75px, 8vw, 110px) 0;
    background: linear-gradient(125deg, #00472d, #008000);
}

.nh-join-final__inner {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: center;
}

.nh-join-final h2 {
    max-width: 850px;
    font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

@media (max-width: 1120px) {
    .nh-join-paths__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 940px) {
    .nh-join-hero__content,
    .nh-join-membership__grid,
    .nh-join-impact__grid,
    .nh-join-application__grid {
        grid-template-columns: 1fr;
    }

    .nh-join-hero {
        min-height: auto;
    }

    .nh-join-hero__content {
        padding-block: 135px 72px;
    }

    .nh-join-hero__card {
        max-width: 620px;
    }

    .nh-join-membership__visual,
    .nh-join-membership__visual > img {
        min-height: 560px;
    }

    .nh-join-impact__image,
    .nh-join-impact__image img {
        min-height: 450px;
    }
}

@media (max-width: 700px) {
    .nh-join-hero h1 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .nh-join-paths__grid,
    .nh-join-form__row,
    .nh-join-choice__grid {
        grid-template-columns: 1fr;
    }

    .nh-join-path {
        min-height: 340px;
    }

    .nh-join-membership__visual,
    .nh-join-membership__visual > img {
        min-height: 470px;
    }

    .nh-join-form__footer,
    .nh-join-final__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .nh-join-form__footer .nh-button,
    .nh-join-final .nh-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nh-join-hero__content {
        padding-block: 115px 58px;
    }

    .nh-join-hero__actions .nh-button {
        width: 100%;
    }

    .nh-join-path,
    .nh-join-form-shell,
    .nh-join-hero__card {
        border-radius: 22px;
    }

    .nh-join-membership__visual,
    .nh-join-membership__visual > img {
        min-height: 400px;
        border-radius: 24px;
    }
}
