/* Hero */

.workers-hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 6% 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-blue);
}

.workers-hero-bg,
.workers-hero-grid,
.workers-hero-slash {
    position: absolute;
    pointer-events: none;
}

.workers-hero-bg {
    inset: 0;
    background:
        linear-gradient(
            168deg,
            #0c1e34 0%,
            #060e1a 55%,
            #030810 100%
        );
}

.workers-hero-grid {
    inset: 0;
    opacity: 0.045;
    background-image:
        linear-gradient(
            rgba(200, 151, 58, 0.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(200, 151, 58, 0.7) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
}

.workers-hero-slash {
    top: -15%;
    right: -5%;
    width: 65vw;
    height: 140%;
    background:
        linear-gradient(
            165deg,
            rgba(12, 138, 152, 0.09),
            transparent 60%
        );
    transform: skewX(32deg);
}

.workers-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.workers-hero-content {
    max-width: 650px;
}

.workers-eyebrow {
    margin-bottom: 18px;

    font-family: var(--subheading-font);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;

    color: var(--light-blue);
}

.workers-title {
    margin-bottom: 24px;

    font-family: var(--heading-font);
    font-size: clamp(64px, 8vw, 108px);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 0.9;

    color: var(--white);
}

.workers-title span {
    color: var(--gold);
}

.workers-intro {
    margin-bottom: 12px;

    font-family: var(--subheading-font);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--white);
}

.workers-hero-text {
    max-width: 580px;
    margin-bottom: 34px;

    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;

    color: var(--white-soft);
}

.workers-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.workers-hero-buttons .btn-ghost {
    margin-left: 0;
}

.workers-hero-image {
    position: relative;
    overflow: hidden;
    min-height: 650px;

    border-radius: 40px 12px 12px 40px;
    border-bottom: 4px solid var(--gold);

    background: var(--dark-blue-soft);
}

.workers-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            to left,
            transparent 10%,
            rgba(35, 85, 140, 0.28) 48%,
            rgba(6, 14, 26, 0.85) 100%
        );
}

.workers-hero-image img {
    display: block;
    width: 100%;
    height: 650px;

    object-fit: cover;
    object-position: center;
}

/* Shared containers */

.workers-section-container,
.workers-work-container,
.workers-outcome-container,
.workers-rights-container,
.workers-contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Entry section */

.workers-entry-section {
    position: relative;
    overflow: hidden;
    background: var(--dark-blue-soft);
}

.workers-entry-section::before {
    content: "";
    position: absolute;
    right: -200px;
    bottom: -200px;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(200, 151, 58, 0.25);
    border-radius: 50%;
}

.workers-entry-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    margin-top: 45px;
}

.workers-entry-lead h3 {
    margin-bottom: 16px;

    font-family: var(--subheading-font);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--white);
}

.workers-entry-lead p,
.workers-entry-content p {
    margin-bottom: 18px;

    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;

    color: var(--white-soft);
}

.workers-highlight-line {
    padding: 22px 0 22px 24px;

    border-left: 4px solid var(--gold);

    font-family: var(--subheading-font);
    font-weight: 700 !important;
    letter-spacing: 1px;

    color: var(--white) !important;
}

.workers-pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;

    margin-top: 70px;

    background: rgba(200, 151, 58, 0.08);
}

.worker-pathway-card {
    min-height: 270px;
    padding: 32px;

    border-top: 3px solid var(--gold);
    background: var(--dark-blue);
}

.worker-pathway-card span {
    display: block;
    margin-bottom: 30px;

    font-family: var(--heading-font);
    font-size: 3rem;
    letter-spacing: 2px;

    color: rgba(200, 151, 58, 0.3);
}

.worker-pathway-card h3 {
    margin-bottom: 14px;

    font-family: var(--subheading-font);
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--light-blue);
}

.worker-pathway-card p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;

    color: var(--white-soft);
}

/* Work section */

.workers-work-section {
    background: var(--dark-blue);
}

.workers-work-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.workers-work-image {
    overflow: hidden;

    border-radius: 12px 40px 40px 12px;
    border-bottom: 4px solid var(--gold);
}

.workers-work-image img {
    display: block;
    width: 100%;
    height: 620px;

    object-fit: cover;
}

.workers-large-heading {
    margin-bottom: 18px;

    font-family: var(--heading-font);
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 0.95;

    color: var(--white);
}

.workers-large-heading span {
    color: var(--gold);
}

.workers-work-content > p {
    margin-bottom: 18px;

    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;

    color: var(--white-soft);
}

.workers-goal-list {
    margin-top: 32px;
    list-style: none;
}

.workers-goal-list li {
    display: flex;
    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    font-family: var(--subheading-font);
    font-weight: 700;
    letter-spacing: 1px;

    color: var(--white);
}

.workers-goal-list li::before {
    content: "■";
    flex-shrink: 0;
    color: var(--light-blue);
}

/* Structure section */

.workers-structure-section {
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 80px
        ),
        var(--dark-blue-soft);
}

.workers-structure-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    margin-top: 45px;
}

.workers-structure-copy p {
    margin-bottom: 18px;

    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;

    color: var(--white-soft);
}

.workers-feature-statement {
    font-family: var(--heading-font);
    font-size: 3rem !important;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--gold) !important;
}

.workers-structure-items {
    border-left: 1px solid rgba(200, 151, 58, 0.18);
    padding-left: 40px;
}

.workers-structure-item {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.workers-structure-item > span {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: rgba(200, 151, 58, 0.35);
}

.workers-structure-item h3 {
    margin-bottom: 8px;

    font-family: var(--subheading-font);
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--light-blue);
}

.workers-structure-item p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;

    color: var(--white-soft);
}

/* Outcomes section */

.workers-outcome-section {
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 140px;

    background:
        url("./assets/construction-site.jpg")
        center / cover no-repeat;
}

.workers-outcome-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            rgba(6, 14, 26, 0.98) 15%,
            rgba(6, 14, 26, 0.9) 55%,
            rgba(6, 14, 26, 0.75) 100%
        );
}

.workers-outcome-container > h2 {
    max-width: 800px;

    font-family: var(--heading-font);
    font-size: clamp(58px, 8vw, 100px);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 0.9;

    color: var(--white);
}

.workers-outcome-container > h2 span {
    color: var(--gold);
}

.workers-outcome-lead {
    max-width: 650px;
    margin: 30px 0 55px;

    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;

    color: var(--white-soft);
}

.workers-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;

    background: rgba(200, 151, 58, 0.15);
}

.workers-outcome-card {
    min-height: 190px;
    padding: 30px;

    background: rgba(6, 14, 26, 0.88);
    backdrop-filter: blur(8px);
}

.workers-outcome-card span {
    display: block;
    margin-bottom: 14px;

    font-family: var(--subheading-font);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--light-blue);
}

.workers-outcome-card p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;

    color: var(--white-soft);
}

/* Rights section */

.workers-rights-section {
    background: var(--dark-blue-soft);
}

.workers-rights-container {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
}

.workers-rights-content > p {
    margin-bottom: 30px;

    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;

    color: var(--white-soft);
}

.workers-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;

    margin-bottom: 36px;

    background: rgba(200, 151, 58, 0.12);
}

.workers-rights-grid div {
    padding: 24px;

    font-family: var(--subheading-font);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--white);
    background: var(--dark-blue);
}

.workers-rights-grid div::before {
    content: "—";
    margin-right: 12px;
    color: var(--gold);
}

.workers-rights-final {
    padding: 28px;

    border-left: 4px solid var(--gold);
    background: rgba(255, 255, 255, 0.03);

    color: var(--white) !important;
}

.workers-rights-final span {
    display: block;
    margin-top: 8px;

    font-family: var(--subheading-font);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--gold);
}

/* Contact */

.workers-contact-section {
    position: relative;
    overflow: hidden;
    text-align: center;

    background:
        linear-gradient(
            168deg,
            #0c1e34 0%,
            #060e1a 55%,
            #030810 100%
        );
}

.workers-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0.045;

    background-image:
        linear-gradient(
            rgba(200, 151, 58, 0.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(200, 151, 58, 0.7) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
}

.workers-contact-container {
    max-width: 850px;
}

.workers-contact-container .lbl {
    text-align: center;
}

.workers-contact-container h2 {
    margin-bottom: 28px;

    font-family: var(--heading-font);
    font-size: clamp(64px, 9vw, 108px);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 0.9;

    color: var(--white);
}

.workers-contact-container h2 span {
    color: var(--gold);
}

.workers-contact-container > p {
    max-width: 680px;
    margin: 0 auto 34px;

    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;

    color: var(--white-soft);
}

.workers-email-button {
    margin-bottom: 24px;
}

.workers-email-link {
    display: block;

    font-family: var(--subheading-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;

    color: var(--gold);
}

/* ==========================================
   FOR WORKERS — TABLET
   ========================================== */

@media (max-width: 1024px) {

    .workers-hero-container {
        gap: 45px;
    }

    .workers-hero-image,
    .workers-hero-image img {
        min-height: 550px;
        height: 550px;
    }

    .workers-pathway-grid,
    .workers-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workers-work-container {
        gap: 50px;
    }

    .workers-work-image img {
        height: 550px;
    }

}

/* For Workers - Responsive*/

@media (max-width: 768px) {

    .workers-hero {
        min-height: auto;
        padding: 105px 6% 80px;
    }

    .workers-hero-container,
    .workers-entry-grid,
    .workers-work-container,
    .workers-structure-grid,
    .workers-rights-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .workers-title {
        font-size: clamp(58px, 17vw, 82px);
    }

    .workers-hero-image {
        min-height: 430px;
        height: 430px;
        border-radius: 12px;
    }

    .workers-hero-image img {
        min-height: 430px;
        height: 430px;
    }

    .workers-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .workers-hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        margin: 0;
        text-align: center;
    }

    .workers-entry-grid {
        margin-top: 30px;
    }

    .workers-pathway-grid,
    .workers-outcomes-grid {
        grid-template-columns: 1fr;
    }

    .worker-pathway-card {
        min-height: auto;
    }

    .workers-work-image {
        border-radius: 12px;
    }

    .workers-work-image img {
        height: 400px;
    }

    .workers-work-content {
        order: -1;
    }

    .workers-structure-items {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(200, 151, 58, 0.18);
    }

    .workers-outcome-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .workers-rights-grid {
        grid-template-columns: 1fr;
    }

}

/* FOR WORKERS — SMALL MOBILE */

@media (max-width: 480px) {

    .workers-hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .workers-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .workers-title {
        font-size: 54px;
        letter-spacing: 2px;
    }

    .workers-intro {
        font-size: 1.2rem;
    }

    .workers-hero-image {
        min-height: 350px;
        height: 350px;
    }

    .workers-hero-image img {
        min-height: 350px;
        height: 350px;
    }

    .worker-pathway-card,
    .workers-outcome-card {
        padding: 25px;
    }

    .workers-large-heading {
        font-size: 50px;
        letter-spacing: 2px;
    }

    .workers-structure-item {
        grid-template-columns: 45px 1fr;
    }

    .workers-outcome-container > h2,
    .workers-contact-container h2 {
        font-size: 54px;
        letter-spacing: 2px;
    }

    .workers-contact-container > p {
        font-size: 1rem;
    }

    .workers-email-link {
        overflow-wrap: anywhere;
    }

}

/* Emergency Footer Section */

.emergency-section {
    min-height: 50px;
    background-color: #cb1827;
    text-align: center;
}

.emergency-container {
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
}

