:root {
    --earth: #2D4A3E;
    --earth-dark: #182E25;
    --gold: #D4933A;
    --clay: #C4603A;
    --cream: #FDFAF6;
    --warm: #F5EFE6;
    --text: #1B1B1B;
    --muted: #6D6D6D;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
}

h1, h2, h3, h4, h5 {
    font-family: 'Fraunces', serif;
}

.main-header .header_top {
    background: var(--earth-dark);
}

.header_top a,
.header_top li {
    color: rgba(255,255,255,.82) !important;
}

.header_bottom {
    background: rgba(253,250,246,.96);
    backdrop-filter: blur(12px);
}

.navigation li a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.btn-1 {
    background: var(--earth);
    color: #fff !important;
    border-radius: 40px;
    padding: 16px 32px;
}

.btn-1.btn-alt,
.btn-1:hover {
    background: var(--gold);
    color: var(--earth-dark) !important;
}

.opportunities-hero {
    position: relative;
    padding: 170px 0 120px;
    background:
        linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.70)),
        url('../images/sitepics/career_banner.png') center/cover no-repeat;
    overflow: hidden;
    color: #fff;
}

.opportunities-hero:after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -80px;
    height: 160px;
    background: var(--cream);
    border-radius: 50% 50% 0 0;
}

.opportunities-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.12);
    color: var(--gold);
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 24px;
}

.hero-eyebrow:before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.opportunities-hero h1 {
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.02;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.opportunities-hero h1 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.opportunities-hero p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,.82);
    max-width: 760px;
    margin: 0 auto 32px;
}

.section-padding {
    padding: 110px 0;
}

.section-title-left span,
.section-title-center span {
    color: var(--clay);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 13px;
    font-weight: 800;
    display: block;
    margin-bottom: 14px;
}

.section-title-left h2,
.section-title-center h2 {
    color: var(--earth);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 500;
}

.section-title-left p,
.section-title-center p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin-top: 18px;
}

.section-title-center {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.story-img {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(45,74,62,.17);
}

.story-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.quote-box {
    font-family: 'Fraunces', serif;
    font-size: 25px;
    line-height: 1.5;
    color: var(--earth);
    border-left: 4px solid var(--gold);
    padding-left: 24px;
    margin: 28px 0;
    font-style: italic;
}

.mission-card,
.benefit-card {
    background: #fff;
    border-radius: 26px;
    padding: 42px;
    height: 100%;
    box-shadow: 0 14px 40px rgba(45,74,62,.08);
    border: 1px solid rgba(45,74,62,.08);
    transition: .3s ease;
}

.mission-card:hover,
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(45,74,62,.16);
}

.mission-card i,
.benefit-card i {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(212,147,58,.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.mission-card h3,
.benefit-card h3 {
    color: var(--earth);
    font-size: 30px;
    margin-bottom: 16px;
}

.mission-card p,
.benefit-card p {
    color: var(--muted);
    line-height: 1.8;
}

.program-section {
    background: var(--warm);
}

.opportunity-card {
    background: #fff;
    border-radius: 24px;
    height: 100%;
    padding: 34px 30px;
    box-shadow: 0 10px 35px rgba(45,74,62,.08);
    transition: .3s ease;
    border: 1px solid rgba(45,74,62,.08);
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(45,74,62,.16);
}

.program-tag {
    color: var(--clay);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.opp-group {
    margin-bottom: 65px;
}

.opp-group:last-child {
    margin-bottom: 0;
}

.opp-group-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.opp-group-header h3 {
    color: var(--earth);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    margin: 6px 0 8px;
}

.opp-group-header p {
    color: var(--muted);
    font-size: 15px;
    font-style: italic;
}

.role-card {
    display: flex;
    flex-direction: column;
}

.role-card i {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: rgba(212,147,58,.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.role-card h4 {
    color: var(--earth);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.role-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.role-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(45,74,62,.08);
}

.role-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.role-info {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14.5px;
    flex: 1;
}

.role-list strong {
    color: var(--earth);
    font-weight: 700;
}

.role-apply {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.role-apply:hover {
    color: var(--clay);
}

.opportunity-card h3 {
    color: var(--earth);
    font-size: 28px;
    margin-bottom: 12px;
}

.opportunity-card p {
    color: var(--muted);
    line-height: 1.7;
}

.apply-link {
    color: var(--earth);
    font-weight: 800;
    display: inline-block;
    margin-top: 12px;
}

.apply-link:hover {
    color: var(--gold);
}

.values-section {
    background:
        linear-gradient(rgba(24,46,37,.84), rgba(24,46,37,.84)),
        url('../images/sitepics/image10.webp') center/cover no-repeat;
    color: #fff;
}

.values-section .section-title-left h2,
.values-section .section-title-left p {
    color: #fff;
}

.value-item {
    border-bottom: 1px solid rgba(255,255,255,.28);
    padding: 24px 0;
}

.value-item h4 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 8px;
}

.value-item p {
    color: rgba(255,255,255,.78);
    margin: 0;
    line-height: 1.7;
}

.cta-premium {
    background: linear-gradient(135deg, var(--earth), var(--earth-dark));
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta-premium h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.1;
    margin-bottom: 22px;
    color: #fff;
}

.cta-premium h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-premium p {
    color: rgba(255,255,255,.78);
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.8;
}

.main__footer {
    background: var(--earth-dark);
}

.footer_bottom {
    background: #102018;
}

@media(max-width: 991px) {
    .opportunities-hero {
        padding: 140px 0 95px;
    }

    .story-img img {
        height: 420px;
        margin-bottom: 35px;
    }

    .section-padding {
        padding: 75px 0;
    }

    .mission-card,
    .benefit-card,
    .opportunity-card {
        padding: 34px;
    }
}

@media(max-width: 575px) {
    .opportunities-hero h1 {
        font-size: 44px;
    }

    .opportunities-hero p {
        font-size: 16px;
    }

    .mission-card,
    .benefit-card,
    .opportunity-card {
        padding: 28px 24px;
    }
}