/* ─────────────────────────────────────────────────────────────────────────
   LVW Careers page — extends style.css (brand base)
   ───────────────────────────────────────────────────────────────────────── */

:root {
    --lvw-brand: #7e3f3a;
    --lvw-brand-dark: #5c2e2a;
    --lvw-cream: #faf7f5;
    --lvw-ink: #1a1d23;
    --lvw-muted: #6b7280;
    --lvw-line: #e8eaf0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--lvw-cream);
    color: var(--lvw-ink);
}

/* ── Top bar with logo + language switch ─────────────────────────────── */
.careers-topbar {
    background: var(--lvw-brand-dark);
    padding: 18px 0;
}

.careers-topbar .logo-link img {
    height: 28px;
    width: auto;
    display: block;
}

.lang-switch {
    display: flex;
    gap: 6px;
}

.lang-switch a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.lang-switch a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.lang-switch a.active {
    color: #fff;
    background: rgba(34,197,94,0.25);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.careers-hero {
    background: linear-gradient(160deg, var(--lvw-brand) 0%, var(--lvw-brand-dark) 100%);
    padding: 64px 0 76px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.careers-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.careers-hero-tags {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.careers-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.careers-hero-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ee787;
    display: inline-block;
}

.careers-hero-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 4px 12px 4px 10px;
    border-radius: 20px;
}

.careers-hero-location i {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
}

.careers-hero h1 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.careers-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    /* max-width: 560px; */
    margin-bottom: 0;
    line-height: 1.6;
}

/* ── Section headers ──────────────────────────────────────────────────── */
.careers-section {
    padding: 56px 0;
}

.careers-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--lvw-brand);
    margin-bottom: 8px;
}

.careers-section-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--lvw-ink);
    margin-bottom: 34px;
}

/* ── Job cards ────────────────────────────────────────────────────────── */
.job-card {
    background: #fff;
    border: 1px solid var(--lvw-line);
    border-radius: 16px;
    padding: 1.8rem 1.8rem 1.6rem;
    height: 100%;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.job-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-color: #ddc9c7;
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.job-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lvw-ink);
    margin: 0;
}

.job-hours-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--lvw-brand);
    background: #fbeeed;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.job-hours-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #9ca3af;
    font-style: italic;
    margin-top: 7px;
}

.job-hours-note i {
    font-size: 11px;
    color: var(--lvw-brand);
    font-style: normal;
    flex-shrink: 0;
}

.job-card-divider {
    border: none;
    border-top: 1px solid #f3f4f6;
    margin: 14px 0 16px;
}

.job-task-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-task-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.job-task-list li i {
    color: var(--lvw-brand);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Application card ─────────────────────────────────────────────────── */
.apply-card {
    background: #fff;
    border: 1px solid var(--lvw-line);
    border-radius: 16px;
    padding: 2rem 2rem 2.2rem;
}

.apply-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

@media (max-width: 575.98px) {
    .apply-checklist { grid-template-columns: 1fr; }
}

.apply-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.apply-checklist li i {
    color: var(--lvw-brand);
    font-size: 15px;
    flex-shrink: 0;
}

.apply-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--lvw-cream);
    border-radius: 12px;
    padding: 18px 22px;
}

.apply-cta-text {
    font-size: 13px;
    color: var(--lvw-muted);
}

.apply-cta-email {
    font-size: 15px;
    font-weight: 700;
    color: var(--lvw-ink);
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lvw-brand);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-apply:hover {
    background: var(--lvw-brand-dark);
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.careers-footer {
    padding: 26px 0;
    text-align: center;
    font-size: 12.5px;
    color: var(--lvw-muted);
    border-top: 1px solid var(--lvw-line);
}
