/* ============================================
   Careers Page Styles
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ============================================ */

/* ── Hero ─────────────────────────────────── */
.careersHero {
    background: linear-gradient(135deg, var(--burgundyDark) 0%, var(--burgundy) 60%, var(--burgundyLight) 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.careersHero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.careersHero .heroLogo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    position: relative;
}
.careersHero .heroSub {
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    opacity: 0.85;
    position: relative;
}
.careersHero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
}
.careersHero p {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.careersHero .heroBtn {
    display: inline-block;
    background: var(--gold);
    color: var(--burgundyDark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.2s;
    position: relative;
}
.careersHero .heroBtn:hover {
    background: #B49534;
}

/* ── Section shared ──────────────────────── */
.careersSection {
    padding: 5rem 2rem;
    font-family: 'DM Sans', sans-serif;
}
.careersSection.white { background: #fff; }
.careersSection.cream { background: var(--cream); }

.careersSectionInner {
    max-width: 1100px;
    margin: 0 auto;
}
.careersSectionHeader {
    text-align: center;
    margin-bottom: 3rem;
}
.careersSectionHeader h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}
.careersSectionHeader p {
    color: var(--charcoalLight);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}
.goldRule {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* ── Benefits grid ───────────────────────── */
.benefitsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.benefitCard {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    border: 1px solid var(--sageLight);
    transition: transform 0.2s, box-shadow 0.2s;
}
.benefitCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(123, 28, 46, 0.1);
}
.benefitIcon {
    width: 52px;
    height: 52px;
    background: rgba(123, 28, 46, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.benefitCard h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.benefitCard p {
    font-size: 0.95rem;
    color: var(--charcoalLight);
    line-height: 1.65;
}

/* ── What We Expect ──────────────────────── */
.expectSection {
    padding: 4rem 2rem;
    background: var(--burgundy);
    font-family: 'DM Sans', sans-serif;
}
.expectInner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.expectInner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.expectInner > p {
    color: #fff;
    opacity: 0.85;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.expectGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.expectItem {
    color: #fff;
}
.expectItem strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.expectItem span {
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.75;
}

/* ── Vacancies ───────────────────────────── */
.vacancyCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.vacancyCard {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--sageLight);
    border-left: 5px solid var(--burgundy);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.vacancyHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.vacancyCard h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--charcoal);
}
.hiringBadge {
    background: #EBF7F1;
    color: #2D7A4F;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
}
.vacancyMeta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.vacancyTag {
    font-size: 0.85rem;
    color: var(--charcoalLight);
}
.vacancyDesc {
    font-size: 0.95rem;
    color: var(--charcoalLight);
    line-height: 1.65;
}
.vacancyApplyBtn {
    display: inline-block;
    align-self: flex-start;
    background: var(--burgundy);
    color: var(--gold);
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
    text-decoration: none;
}
.vacancyApplyBtn:hover {
    background: var(--burgundyDark);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
    .benefitsGrid { grid-template-columns: 1fr 1fr; }
    .vacancyCards { grid-template-columns: 1fr; }
    .expectGrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .benefitsGrid { grid-template-columns: 1fr; }
    .careersHero h1 { font-size: 1.8rem; }
    .careersSectionHeader h2 { font-size: 1.8rem; }
    .expectGrid { grid-template-columns: 1fr; }
}
