

.join-page {
    font-family: 'Inter', sans-serif;
    color: #16332C;
}


.join-hero {
    position: relative;
    background: #91b39a;
    padding: 5rem 6vw 4rem;
    overflow: hidden;
    text-align: center;
}

.join-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #16332C;
    background: rgba(255, 255, 255, 0.55);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.join-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    color: #16332C;
    margin: 0 0 0.9rem;
}

.join-hero p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #1f3832;
    opacity: 0.85;
}

.join-hero-actions {
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.btn-amber {
    display: inline-block;
    background: #F5A623;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.85rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-amber:hover {
    background: #e0941a;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #16332C;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.85rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid #16332C;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
    background: #16332C;
    color: #fff;
    transform: translateY(-2px);
}


.join-mark {
    display: block;
    margin: 1.8rem auto 0;
    width: 120px;
    height: 40px;
}


.join-stats {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.6rem;
    max-width: 760px;
    margin: 2.6rem auto 0;
}

.join-stat {
    text-align: center;
}

.join-stat .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #16332C;
}

.join-stat .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1f3832;
    opacity: 0.75;
}


.join-section {
    padding: 5rem 6vw;
}

.join-section.tint {
    background: #f5f8f6;
}

.section-heading {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #16332C;
    margin: 0 0 0.6rem;
}

.section-heading p {
    font-size: 0.96rem;
    color: #6b7a73;
    line-height: 1.6;
}

.roles-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.role-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(31, 56, 50, 0.06);
    padding: 1.8rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.role-badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 0.4rem;
    background: #eaf1ec;
    color: #1b5e20;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.role-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: #16332C;
    margin: 0 0 0.5rem;
}

.role-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.82rem;
    color: #6b7a73;
    margin-bottom: 1rem;
}

.role-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.role-meta svg {
    width: 14px;
    height: 14px;
    stroke: #6b7a73;
    flex-shrink: 0;
}

.role-card p.role-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7a73;
    margin: 0 0 1.6rem;
    flex: 1;
}

.role-apply {
    display: inline-block;
    background: #F5A623;
    color: #fff;
    font-weight: 700;
    font-size: 0.86rem;
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
}

.role-apply:hover {
    background: #e0941a;
    transform: translateY(-2px);
}


.steps-row {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #91b39a;
    color: #16332C;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #16332C;
    margin: 0 0 0.5rem;
}

.step-card p {
    font-size: 0.88rem;
    color: #6b7a73;
    line-height: 1.6;
    margin: 0;
}


.apply-card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eef2ef;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(31, 56, 50, 0.06);
    padding: 2.6rem;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #16332C;
    margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    padding: 0.85rem 1rem;
    border: 1px solid #dde5e1;
    border-radius: 10px;
    background: #fbfcfb;
    color: #16332C;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field textarea {
    min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #91b39a;
    box-shadow: 0 0 0 3px rgba(145, 179, 154, 0.25);
}

.form-note {
    font-size: 0.84rem;
    margin-bottom: 1.4rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
}

.form-note.success {
    background: #eaf6ec;
    color: #1b5e20;
}

.form-note.error {
    background: #fdecea;
    color: #b3261e;
}

@media (max-width: 980px) {
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-row {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
}

@media (max-width: 600px) {
    .join-hero {
        padding: 4rem 6vw 3.5rem;
    }

    .join-stats {
        gap: 1.6rem;
    }

    .join-section {
        padding: 3.5rem 6vw;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .apply-card {
        padding: 1.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .join-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}
