/* =========================================================
   GRITGREEN CAREERS PORTAL
   Premium One-Page Recruitment Experience
   ========================================================= */

:root {
    --forest-950: #03180d;
    --forest-900: #062315;
    --forest-850: #0a2c1b;
    --forest-800: #0d3822;
    --forest-700: #15502f;
    --forest-600: #267045;

    --leaf-500: #70bd36;
    --leaf-400: #8bd54a;
    --leaf-300: #b0e47c;

    --cream-50: #fbfaf4;
    --cream-100: #f4f0e4;
    --cream-200: #e9e2d0;

    --gold-400: #cbb47c;
    --gold-300: #dfca96;

    --white: #ffffff;
    --black: #080b09;

    --text-dark: #102016;
    --text-body: #4e5d53;
    --text-muted: #7a877e;

    --border-light: rgba(8, 35, 20, 0.12);
    --border-dark: rgba(255, 255, 255, 0.13);

    --shadow-soft: 0 24px 70px rgba(4, 28, 15, 0.12);
    --shadow-deep: 0 30px 90px rgba(0, 12, 5, 0.35);

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;
    --font-editorial: "Playfair Display", serif;

    --container: 1240px;
    --header-height: 94px;
}

/* Reset */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream-50);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.panel-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 32px;
    width: 100%;
}

.section {
    padding: 140px 0;
}

/* Cursor light */

.cursor-light {
    background: rgba(137, 211, 73, 0.12);
    border-radius: 50%;
    filter: blur(60px);
    height: 260px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    width: 260px;
    z-index: 99;
}

/* Header */

.site-header {
    height: var(--header-height);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        height 0.35s ease;
    z-index: 100;
}

.site-header.scrolled {
    backdrop-filter: blur(18px);
    background: rgba(251, 250, 244, 0.92);
    box-shadow: 0 1px 0 rgba(6, 35, 21, 0.1);
    height: 78px;
}

.header-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1380px;
    padding: 0 42px;
}

.brand{
    display:flex;
    align-items:center;
    height:120px;
    max-width:360px;
    overflow:visible;
}

.brand-logo{
    height:120px;
    width:auto;
    object-fit:contain;
    object-position:left center;
    display:block;
}

.desktop-nav {
    align-items: center;
    display: flex;
    gap: 38px;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    background: var(--leaf-400);
    bottom: -8px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    width: 100%;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header.scrolled .desktop-nav a {
    color: var(--forest-900);
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 18px;
}

.outline-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: var(--white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 13px 22px;
    transition: 0.3s ease;
}

.outline-button:hover {
    background: var(--white);
    color: var(--forest-900);
}

.site-header.scrolled .outline-button {
    border-color: var(--forest-800);
    color: var(--forest-900);
}

.site-header.scrolled .outline-button:hover {
    background: var(--forest-900);
    color: var(--white);
}

.menu-button {
    background: transparent;
    cursor: pointer;
    display: none;
    height: 44px;
    position: relative;
    width: 44px;
}

.menu-button span {
    background: var(--white);
    height: 1px;
    left: 10px;
    position: absolute;
    transition: 0.3s ease;
    width: 24px;
}

.menu-button span:first-child {
    top: 18px;
}

.menu-button span:last-child {
    top: 25px;
}

.site-header.scrolled .menu-button span {
    background: var(--forest-900);
}

.menu-button.active span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.menu-button.active span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

.mobile-menu {
    background: var(--cream-50);
    display: flex;
    flex-direction: column;
    gap: 12px;
    left: 0;
    opacity: 0;
    padding: 30px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-12px);
    transition: 0.3s ease;
    visibility: hidden;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu a {
    border-bottom: 1px solid var(--border-light);
    color: var(--forest-900);
    font-family: var(--font-heading);
    font-size: 22px;
    padding: 14px 0;
}

/* Buttons */

.primary-button,
.light-button {
    align-items: center;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 28px;
    justify-content: center;
    letter-spacing: 0.02em;
    min-height: 58px;
    padding: 0 28px;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.primary-button {
    background: var(--leaf-400);
    color: var(--forest-950);
}

.primary-button:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.light-button {
    background: var(--cream-50);
    color: var(--forest-900);
}

.light-button:hover {
    background: var(--leaf-400);
    transform: translateY(-3px);
}

/* Hero */

.hero {
    align-items: flex-end;
    color: var(--white);
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding: calc(var(--header-height) + 80px) 0 72px;
    position: relative;
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("./assets/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(1, 18, 9, 0.96) 0%,
            rgba(2, 27, 14, 0.80) 43%,
            rgba(2, 24, 12, 0.26) 78%,
            rgba(1, 15, 7, 0.35) 100%
        ),
        linear-gradient(
            0deg,
            rgba(1, 18, 9, 0.75) 0%,
            transparent 58%
        );
    inset: 0;
    position: absolute;
}

.hero-glow {
    background: rgba(112, 189, 54, 0.13);
    border-radius: 50%;
    filter: blur(100px);
    height: 520px;
    left: 28%;
    position: absolute;
    top: 20%;
    width: 520px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-topline {
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    font-size: 13px;
    font-weight: 600;
    gap: 12px;
    letter-spacing: 0.11em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.status-dot {
    background: var(--leaf-400);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(139, 213, 74, 0.12);
    height: 8px;
    width: 8px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(58px, 7.5vw, 112px);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.94;
    max-width: 1000px;
}

.hero-title span {
    color: var(--leaf-400);
    display: block;
    font-family: var(--font-editorial);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.hero-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    line-height: 1.75;
    margin-top: 34px;
    max-width: 650px;
}

.hero-actions {
    align-items: center;
    display: flex;
    gap: 34px;
    margin-top: 44px;
}

.text-link {
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    gap: 12px;
}

.text-link span {
    transition: transform 0.25s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.hero-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    gap: 72px;
    margin-top: 90px;
    max-width: 800px;
    padding-top: 26px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.scroll-indicator {
    align-items: center;
    bottom: 74px;
    display: flex;
    gap: 18px;
    position: absolute;
    right: 42px;
    transform: rotate(90deg);
    transform-origin: right bottom;
    z-index: 3;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.scroll-line {
    background: rgba(255, 255, 255, 0.4);
    height: 1px;
    overflow: hidden;
    position: relative;
    width: 66px;
}

.scroll-line::after {
    animation: scrollLine 2s infinite ease-in-out;
    background: var(--leaf-400);
    content: "";
    inset: 0;
    position: absolute;
    transform: translateX(-100%);
}

@keyframes scrollLine {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

/* Shared headings */

.section-eyebrow {
    align-items: center;
    color: var(--forest-700);
    display: flex;
    font-size: 12px;
    font-weight: 700;
    gap: 14px;
    letter-spacing: 0.15em;
    margin-bottom: 48px;
    text-transform: uppercase;
}

.section-eyebrow span {
    align-items: center;
    border: 1px solid rgba(21, 80, 47, 0.25);
    border-radius: 50%;
    display: flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.section-eyebrow.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-eyebrow.light span {
    border-color: rgba(255, 255, 255, 0.22);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 75px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.section-title em {
    color: var(--forest-600);
    display: block;
    font-family: var(--font-editorial);
    font-weight: 500;
}

/* Intro */

.intro-section {
    background: var(--cream-50);
}

.intro-grid {
    display: grid;
    gap: 80px;
    grid-template-columns: 1.1fr 0.9fr;
}

.intro-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.intro-heading em {
    color: var(--forest-600);
    display: block;
    font-family: var(--font-editorial);
    font-weight: 500;
}

.intro-copy {
    padding-top: 8px;
}

.intro-copy p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 22px;
}

.intro-copy .large-copy {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.5;
}

.image-story-grid {
    align-items: end;
    display: grid;
    gap: 24px;
    grid-template-columns: 1.3fr 0.8fr;
    margin-top: 100px;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.story-image:hover img {
    transform: scale(1.035);
}

.story-image-large {
    grid-row: span 2;
    height: 720px;
}

.story-image-small {
    height: 350px;
}

.story-quote {
    background: var(--forest-900);
    color: var(--white);
    min-height: 345px;
    padding: 46px;
}

.quote-mark {
    color: var(--leaf-400);
    display: block;
    font-family: var(--font-editorial);
    font-size: 70px;
    line-height: 0.8;
}

.story-quote blockquote {
    font-family: var(--font-editorial);
    font-size: 25px;
    font-style: italic;
    line-height: 1.45;
    margin-top: 24px;
}

.story-quote p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-top: 38px;
    text-transform: uppercase;
}

/* Values strip */

.values-strip {
    background: var(--leaf-400);
    overflow: hidden;
    padding: 26px 0;
}

.values-track {
    align-items: center;
    animation: ticker 24s linear infinite;
    color: var(--forest-950);
    display: flex;
    gap: 32px;
    width: max-content;
}

.values-track span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.values-track i {
    background: var(--forest-900);
    border-radius: 50%;
    height: 5px;
    width: 5px;
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

/* Vacancies */

.vacancies-section {
    background: #f1eee4;
}

.section-header {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.section-header .section-eyebrow {
    margin-bottom: 28px;
}

.section-side-copy {
    color: var(--text-body);
    line-height: 1.75;
    max-width: 380px;
}

.job-card {
    background: var(--forest-900);
    color: var(--white);
    overflow: hidden;
}

.job-card-top {
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    padding: 24px 34px;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-badge {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.job-badge.featured {
    background: var(--leaf-400);
    border-color: var(--leaf-400);
    color: var(--forest-950);
}

.job-number {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    letter-spacing: 0.12em;
}

.job-card-content {
    align-items: end;
    display: flex;
    justify-content: space-between;
    padding: 62px 58px 58px;
}

.job-main {
    max-width: 820px;
}

.job-department {
    color: var(--leaf-400);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.job-main h3 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.02;
    max-width: 800px;
}

.job-summary {
    color: rgba(255, 255, 255, 0.64);
    font-size: 17px;
    line-height: 1.75;
    margin-top: 28px;
    max-width: 710px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 55px;
    margin-top: 46px;
}

.job-meta span {
    color: rgba(255, 255, 255, 0.63);
    display: flex;
    flex-direction: column;
    font-size: 13px;
    gap: 6px;
}

.job-meta strong {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.job-open-button {
    align-items: center;
    background: var(--leaf-400);
    border-radius: 50%;
    color: var(--forest-950);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    height: 150px;
    justify-content: center;
    transition: 0.35s ease;
    width: 150px;
}

.job-open-button:hover {
    background: var(--white);
    transform: rotate(-5deg) scale(1.04);
}

.job-arrow {
    font-size: 28px;
    margin-top: 8px;
    transition: transform 0.35s ease;
}

.job-open-button.active .job-arrow {
    transform: rotate(180deg);
}

.job-details {
    background: var(--cream-50);
    color: var(--text-dark);
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.job-details.active {
    grid-template-rows: 1fr;
}

.job-details-inner {
    overflow: hidden;
}

.job-details.active .job-details-inner {
    padding: 70px 58px 58px;
}

.job-details-inner {
    display: grid;
    gap: 54px;
    grid-template-columns: repeat(3, 1fr);
}

.detail-number {
    color: var(--forest-600);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}

.job-detail-column h4 {
    font-family: var(--font-heading);
    font-size: 25px;
    letter-spacing: -0.025em;
    margin: 14px 0 20px;
}

.job-detail-column p,
.job-detail-column li {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.8;
}

.job-detail-column p + p {
    margin-top: 16px;
}

.job-detail-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-detail-column li {
    padding-left: 20px;
    position: relative;
}

.job-detail-column li::before {
    color: var(--leaf-500);
    content: "•";
    left: 0;
    position: absolute;
}

.job-details-action {
    align-items: center;
    border-top: 1px solid var(--border-light);
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 40px;
}

.job-details-action p {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.job-details-action div span {
    color: var(--text-muted);
    display: block;
    font-size: 13px;
    margin-top: 7px;
}

.talent-community {
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    padding: 38px 8px;
}

.talent-label {
    color: var(--forest-600);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.talent-community h3 {
    font-family: var(--font-heading);
    font-size: 27px;
    margin-top: 8px;
}

.talent-community p {
    color: var(--text-body);
    line-height: 1.7;
}

/* Process */

.process-section {
    background: var(--forest-950);
    color: var(--white);
}

.process-heading {
    align-items: end;
    display: grid;
    gap: 100px;
    grid-template-columns: 1.2fr 0.8fr;
}

.process-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(52px, 6vw, 84px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.process-heading h2 em {
    color: var(--leaf-400);
    display: block;
    font-family: var(--font-editorial);
    font-weight: 500;
}

.process-heading > p {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.8;
}

.process-grid {
    border-top: 1px solid var(--border-dark);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 90px;
}

.process-item {
    border-right: 1px solid var(--border-dark);
    min-height: 370px;
    padding: 32px 34px;
    position: relative;
}

.process-item:last-child {
    border-right: 0;
}

.process-number {
    color: rgba(255, 255, 255, 0.32);
    font-size: 11px;
    letter-spacing: 0.12em;
}

.process-icon {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--leaf-400);
    display: flex;
    font-size: 24px;
    height: 62px;
    justify-content: center;
    margin-top: 70px;
    width: 62px;
}

.process-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-top: 32px;
}

.process-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.75;
    margin-top: 14px;
}

/* Culture */

.culture-section {
    background: var(--cream-100);
}

.culture-layout {
    align-items: center;
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 0.95fr;
}

.culture-image {
    height: 860px;
    overflow: hidden;
    position: relative;
}

.culture-image img {
    height: 100%;
    object-fit: cover;
}

.culture-image-caption {
    background: var(--forest-900);
    bottom: 0;
    color: var(--white);
    left: 0;
    padding: 28px 32px;
    position: absolute;
    right: 18%;
}

.culture-image-caption span {
    color: var(--leaf-400);
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.culture-content .section-eyebrow {
    margin-bottom: 36px;
}

.culture-content > h2 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.culture-content > h2 em {
    color: var(--forest-600);
    display: block;
    font-family: var(--font-editorial);
    font-weight: 500;
}

.culture-lead {
    color: var(--text-body);
    font-size: 18px;
    line-height: 1.75;
    margin-top: 28px;
}

.culture-points {
    margin-top: 58px;
}

.culture-point {
    border-top: 1px solid var(--border-light);
    display: grid;
    gap: 24px;
    grid-template-columns: 40px 1fr;
    padding: 28px 0;
}

.culture-point > span {
    color: var(--forest-600);
    font-size: 11px;
    font-weight: 700;
}

.culture-point h3 {
    font-family: var(--font-heading);
    font-size: 20px;
}

.culture-point p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.75;
    margin-top: 8px;
}

/* Final CTA */

.final-cta {
    color: var(--white);
    min-height: 720px;
    overflow: hidden;
    padding: 150px 0;
    position: relative;
}

.final-cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.02);
    z-index: 1;
}
.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 24, 13, 0.78) 0%,
            rgba(6, 35, 21, 0.58) 48%,
            rgba(6, 35, 21, 0.28) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 24, 13, 0.28),
            rgba(3, 24, 13, 0.08)
        );
    z-index: 2;
    pointer-events: none;
}

.final-cta-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    z-index: 3;
}

.cta-kicker {
    color: var(--leaf-300);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(52px, 6.7vw, 94px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.98;
    margin: 34px auto 48px;
    max-width: 1050px;
}

.final-cta h2 em {
    color: var(--leaf-400);
    display: block;
    font-family: var(--font-editorial);
    font-weight: 500;
}

/* Footer */

.site-footer {
    background: var(--cream-50);
    padding: 82px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
}

.footer-brand img {
    height: 80px;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.footer-brand p {
    color: var(--text-body);
    font-family: var(--font-editorial);
    font-size: 20px;
    font-style: italic;
    margin-top: 24px;
}

.footer-links {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links span {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-links a {
    color: var(--forest-900);
    font-size: 14px;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--forest-600);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    display: flex;
    font-size: 11px;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 25px;
}

/* Application panel */

.application-overlay {
    background: rgba(0, 18, 8, 0.75);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.45s ease;
    z-index: 199;
}

.application-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.application-panel {
    background: var(--cream-50);
    bottom: 0;
    box-shadow: var(--shadow-deep);
    max-width: 780px;
    overflow-y: auto;
    padding: 48px 56px 54px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
    width: 100%;
    z-index: 200;
}

.application-panel.active {
    transform: translateX(0);
}

.application-panel-header {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

.application-kicker {
    color: var(--forest-600);
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.application-panel-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.045em;
    margin-top: 8px;
}

.close-application {
    align-items: center;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--forest-900);
    cursor: pointer;
    display: flex;
    font-size: 27px;
    height: 46px;
    justify-content: center;
    transition: 0.25s ease;
    width: 46px;
}

.close-application:hover {
    background: var(--forest-900);
    color: var(--white);
    transform: rotate(90deg);
}

.application-progress {
    margin-top: 45px;
}

.application-progress-top {
    color: var(--text-muted);
    display: flex;
    font-size: 11px;
    justify-content: space-between;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.progress-track {
    background: var(--cream-200);
    height: 3px;
    margin-top: 13px;
}

.progress-fill {
    background: var(--leaf-500);
    height: 100%;
    transition: width 0.45s ease;
    width: 25%;
}

#applicationForm {
    margin-top: 52px;
}

.form-step {
    display: none;
}

.form-step.active {
    animation: formFade 0.45s ease;
    display: block;
}

@keyframes formFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section-heading {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    margin-bottom: 34px;
}

.form-section-heading > span {
    align-items: center;
    background: var(--forest-900);
    border-radius: 50%;
    color: var(--leaf-400);
    display: flex;
    flex-shrink: 0;
    font-size: 10px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.form-section-heading h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: -0.03em;
}

.form-section-heading p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 6px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    color: var(--forest-900);
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 9px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: 1px solid rgba(7, 38, 21, 0.18);
    border-radius: 0;
    color: var(--text-dark);
    outline: none;
    padding: 15px 16px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    width: 100%;
}

.form-group textarea {
    line-height: 1.6;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-600);
    box-shadow: 0 0 0 3px rgba(38, 112, 69, 0.08);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #aa3a35;
}

.field-note {
    color: var(--text-muted);
    display: block;
    font-size: 10px;
    margin-top: 7px;
}

.upload-grid {
    display: grid;
    gap: 14px;
}

.upload-box {
    align-items: center;
    border: 1px dashed rgba(7, 38, 21, 0.25);
    cursor: pointer;
    display: grid;
    gap: 6px 14px;
    grid-template-columns: 46px 1fr;
    padding: 22px;
    transition: 0.25s ease;
}

.upload-box:hover {
    background: rgba(112, 189, 54, 0.06);
    border-color: var(--forest-600);
}

.upload-box input {
    display: none;
}

.upload-icon {
    align-items: center;
    background: var(--forest-900);
    border-radius: 50%;
    color: var(--leaf-400);
    display: flex;
    grid-row: span 3;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.upload-box strong {
    font-size: 13px;
}

.upload-box small {
    color: var(--text-muted);
    font-size: 10px;
}

.file-name {
    color: var(--forest-600);
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.declaration {
    align-items: flex-start;
    color: var(--text-body);
    cursor: pointer;
    display: flex;
    font-size: 12px;
    gap: 13px;
    line-height: 1.65;
    margin-top: 26px;
}

.declaration input {
    accent-color: var(--forest-700);
    flex-shrink: 0;
    height: 18px;
    margin-top: 2px;
    width: 18px;
}

.privacy-note {
    background: var(--cream-100);
    margin-top: 25px;
    padding: 20px;
}

.privacy-note strong {
    color: var(--forest-900);
    font-size: 11px;
}

.privacy-note p {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.6;
    margin-top: 5px;
}

.form-error {
    color: #a8322f;
    display: none;
    font-size: 12px;
    margin-top: 18px;
}

.form-error.active {
    display: block;
}

.form-navigation {
    align-items: center;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    margin-top: 42px;
    padding-top: 26px;
}

.form-back-button,
.form-next-button,
.form-submit-button {
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    min-height: 52px;
    padding: 0 24px;
}

.form-back-button {
    background: transparent;
    color: var(--forest-900);
    margin-right: auto;
}

.form-back-button:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.form-next-button,
.form-submit-button {
    align-items: center;
    background: var(--forest-900);
    color: var(--white);
    display: flex;
    gap: 22px;
    justify-content: center;
}

.form-next-button:hover,
.form-submit-button:hover {
    background: var(--forest-700);
}

.form-submit-button {
    display: none;
}

.application-success {
    align-items: flex-start;
    display: none;
    flex-direction: column;
    padding-top: 60px;
}

.application-success.active {
    animation: formFade 0.5s ease;
    display: flex;
}

.success-icon {
    align-items: center;
    background: var(--leaf-400);
    border-radius: 50%;
    color: var(--forest-950);
    display: flex;
    font-size: 32px;
    font-weight: 700;
    height: 76px;
    justify-content: center;
    margin-bottom: 34px;
    width: 76px;
}

.application-success h2 {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 500;
    letter-spacing: -0.045em;
    margin-top: 12px;
}

.application-success > p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.8;
    margin-top: 22px;
    max-width: 570px;
}

.reference-box {
    background: var(--forest-900);
    color: var(--white);
    margin: 35px 0;
    padding: 24px 28px;
    width: 100%;
}

.reference-box span {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reference-box strong {
    color: var(--leaf-400);
    display: block;
    font-family: var(--font-heading);
    font-size: 25px;
    margin-top: 8px;
}

/* Scroll reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet responsiveness */

@media (max-width: 1050px) {
    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .intro-grid,
    .process-heading,
    .culture-layout {
        gap: 60px;
    }

    .job-card-content {
        align-items: flex-start;
        gap: 45px;
    }

    .job-open-button {
        height: 125px;
        width: 125px;
    }

    .job-details-inner {
        grid-template-columns: 1fr 1fr;
    }

    .job-detail-column:last-of-type {
        grid-column: 1 / -1;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        border-right: 0;
    }

    .process-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border-dark);
    }

    .culture-image {
        height: 720px;
    }
}

/* Mobile responsiveness */

@media (max-width: 760px) {
    :root {
        --header-height: 78px;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 95px 0;
    }

    .header-container {
        padding: 0 18px;
    }

    .brand,
    .brand-logo {
        height: 48px;
    }

    .header-actions .outline-button {
        display: none;
    }

    .hero {
        min-height: 820px;
        padding-bottom: 48px;
    }

    .hero-background {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(1, 18, 9, 0.94) 0%,
                rgba(2, 27, 14, 0.72) 70%,
                rgba(2, 24, 12, 0.48) 100%
            ),
            linear-gradient(
                0deg,
                rgba(1, 18, 9, 0.88) 0%,
                transparent 70%
            );
    }

    .hero-topline {
        font-size: 10px;
        margin-bottom: 22px;
    }

    .hero-title {
        font-size: clamp(51px, 15vw, 72px);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .hero-footer {
        gap: 22px;
        justify-content: space-between;
        margin-top: 58px;
    }

    .hero-stat-label {
        font-size: 9px;
        max-width: 80px;
    }

    .scroll-indicator {
        display: none;
    }

    .intro-grid,
    .image-story-grid,
    .section-header,
    .culture-layout,
    .footer-grid,
    .talent-community {
        display: grid;
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 36px;
    }

    .intro-heading h2 {
        font-size: 55px;
    }

    .image-story-grid {
        margin-top: 65px;
    }

    .story-image-large {
        height: 500px;
    }

    .story-image-small {
        height: 320px;
    }

    .story-quote {
        min-height: auto;
        padding: 38px 30px;
    }

    .values-strip {
        padding: 20px 0;
    }

    .section-header {
        gap: 30px;
    }

    .job-card-top {
        padding: 20px;
    }

    .job-card-content {
        align-items: stretch;
        flex-direction: column;
        padding: 42px 24px 30px;
    }

    .job-main h3 {
        font-size: 42px;
    }

    .job-meta {
        gap: 24px;
        justify-content: space-between;
    }

    .job-open-button {
        border-radius: 999px;
        flex-direction: row;
        gap: 14px;
        height: 58px;
        width: 100%;
    }

    .job-arrow {
        font-size: 20px;
        margin-top: 0;
    }

    .job-details.active .job-details-inner {
        padding: 46px 24px 30px;
    }

    .job-details-inner {
        grid-template-columns: 1fr;
    }

    .job-detail-column:last-of-type {
        grid-column: auto;
    }

    .job-details-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .talent-community {
        gap: 20px;
    }

    .process-heading {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .process-item {
        border-bottom: 1px solid var(--border-dark);
        border-right: 0;
        min-height: auto;
        padding: 35px 10px;
    }

    .process-item:last-child {
        border-bottom: 0;
    }

    .process-icon {
        margin-top: 35px;
    }

    .culture-layout {
        gap: 60px;
    }

    .culture-image {
        height: 560px;
    }

    .culture-image-caption {
        right: 0;
    }

    .final-cta {
        min-height: 650px;
        padding: 110px 0;
    }

    .footer-grid {
        gap: 55px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .application-panel {
        max-width: none;
        padding: 30px 20px 40px;
    }

    .application-panel-header h2 {
        font-size: 34px;
    }

    .two-columns {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        gap: 10px;
    }

    .form-back-button,
    .form-next-button,
    .form-submit-button {
        padding: 0 18px;
    }

    .application-success h2 {
        font-size: 39px;
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 49px;
    }

    .hero-footer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .primary-button,
    .light-button {
        gap: 18px;
        padding: 0 22px;
    }

    .section-title {
        font-size: 46px;
    }

    .intro-heading h2 {
        font-size: 49px;
    }

    .job-main h3 {
        font-size: 38px;
    }

    .job-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .process-heading h2,
    .culture-content > h2,
    .final-cta h2 {
        font-size: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   PREMIUM PAGE LOADER
   ========================================================= */

.page-loader {
    align-items: center;
    background:
        radial-gradient(
            circle at center,
            rgba(112, 189, 54, 0.12),
            transparent 42%
        ),
        var(--forest-950);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 1;
    position: fixed;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
    visibility: visible;
    z-index: 9999;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.page-loader-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
}

.page-loader-logo {
    animation: loaderLogoReveal 1s ease forwards;
    display: block;
    height: auto;
    max-width: 330px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(18px);
    width: 78vw;
}

.page-loader-content p {
    animation: loaderTextReveal 0.8s ease 0.35s forwards;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--font-editorial);
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-top: 26px;
    opacity: 0;
}

.page-loader-line {
    background: rgba(255, 255, 255, 0.12);
    height: 2px;
    margin-top: 28px;
    overflow: hidden;
    width: 210px;
}

.page-loader-line span {
    animation: loaderProgress 1.8s ease forwards;
    background: var(--leaf-400);
    display: block;
    height: 100%;
    transform: translateX(-100%);
    width: 100%;
}

@keyframes loaderLogoReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderTextReveal {
    to {
        opacity: 1;
    }
}

@keyframes loaderProgress {
    0% {
        transform: translateX(-100%);
    }

    55% {
        transform: translateX(-30%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 600px) {
    .page-loader-logo {
        max-width: 260px;
        width: 82vw;
    }

    .page-loader-content p {
        font-size: 16px;
    }

    .page-loader-line {
        width: 170px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader-logo,
    .page-loader-content p,
    .page-loader-line span {
        animation-duration: 0.01ms;
    }
}
/* =========================================================
   ACTIVE NAVIGATION & SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
    background: var(--leaf-400);
    bottom: 0;
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.08s linear;
    width: 100%;
    z-index: 5;
}

/* Active desktop navigation link */

.desktop-nav a.active {
    color: var(--white);
}

.site-header.scrolled .desktop-nav a.active {
    color: var(--forest-700);
}

.desktop-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active mobile navigation link */

.mobile-menu a.active {
    color: var(--forest-700);
    padding-left: 20px;
    position: relative;
}

.mobile-menu a.active::before {
    background: var(--leaf-500);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
}

/* Slightly smoother navigation interaction */

.desktop-nav a,
.mobile-menu a {
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-progress {
        transition: none;
    }
}
/* =========================================================
   PREMIUM BACK-TO-TOP CONTROL
   ========================================================= */

.back-to-top {
    align-items: center;
    background: rgba(6, 35, 21, 0.94);
    border-radius: 50%;
    bottom: 28px;
    box-shadow:
        0 16px 45px rgba(0, 18, 8, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
    display: flex;
    height: 58px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 28px;
    transform: translateY(18px) scale(0.92);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background 0.25s ease;
    visibility: hidden;
    width: 58px;
    z-index: 120;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.back-to-top:hover {
    background: var(--forest-700);
    transform: translateY(-4px) scale(1.03);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(139, 213, 74, 0.42);
    outline-offset: 4px;
}

.back-to-top-progress {
    height: 100%;
    inset: 0;
    position: absolute;
    transform: rotate(-90deg);
    width: 100%;
}

.back-to-top-track,
.back-to-top-indicator {
    fill: none;
    stroke-width: 2;
}

.back-to-top-track {
    stroke: rgba(255, 255, 255, 0.14);
}

.back-to-top-indicator {
    stroke: var(--leaf-400);
    stroke-dasharray: 169.65;
    stroke-dashoffset: 169.65;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.08s linear;
}

.back-to-top-arrow {
    align-items: center;
    display: flex;
    font-size: 21px;
    height: 100%;
    justify-content: center;
    position: relative;
    transition: transform 0.25s ease;
    width: 100%;
    z-index: 2;
}

.back-to-top:hover .back-to-top-arrow {
    transform: translateY(-3px);
}

@media (max-width: 760px) {
    .back-to-top {
        bottom: 18px;
        height: 52px;
        right: 18px;
        width: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top,
    .back-to-top-indicator,
    .back-to-top-arrow {
        transition: none;
    }
}
/* =========================================================
   PREMIUM APPLICATION SUCCESS EXPERIENCE
   ========================================================= */

.application-success {
    align-items: center;
    display: none;
    flex-direction: column;
    margin: auto;
    max-width: 680px;
    opacity: 0;
    padding: 48px 28px 56px;
    text-align: center;
    transform: translateY(24px);
    width: 100%;
}

.application-success.visible {
    animation: applicationSuccessReveal 0.65s ease forwards;
    display: flex;
}

.application-success-icon {
    height: 92px;
    margin-bottom: 28px;
    width: 92px;
}

.application-success-icon svg {
    display: block;
    height: 100%;
    overflow: visible;
    width: 100%;
}

.success-circle {
    fill: rgba(111, 190, 67, 0.08);
    stroke: var(--leaf-500);
    stroke-dasharray: 202;
    stroke-dashoffset: 202;
    stroke-width: 2.5;
}

.success-check {
    fill: none;
    stroke: var(--leaf-500);
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.application-success.visible .success-circle {
    animation: successCircleDraw 0.8s ease 0.2s forwards;
}

.application-success.visible .success-check {
    animation: successCheckDraw 0.55s ease 0.85s forwards;
}

.application-success-eyebrow {
    color: var(--leaf-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.application-success h2 {
    color: var(--forest-950);
    font-family: var(--font-editorial);
    font-size: clamp(34px, 5vw, 55px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0;
    max-width: 600px;
}

.application-success-message {
    color: rgba(18, 47, 32, 0.72);
    font-size: 16px;
    line-height: 1.75;
    margin: 24px auto 0;
    max-width: 590px;
}

.application-reference {
    align-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(111, 190, 67, 0.11),
            rgba(111, 190, 67, 0.035)
        );
    border: 1px solid rgba(65, 133, 55, 0.16);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding: 18px 22px;
    text-align: left;
    width: 100%;
}

.application-reference span {
    color: rgba(18, 47, 32, 0.62);
    font-size: 13px;
}

.application-reference strong {
    color: var(--forest-800);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.application-next-steps {
    border-top: 1px solid rgba(18, 47, 32, 0.11);
    margin-top: 38px;
    padding-top: 32px;
    text-align: left;
    width: 100%;
}

.application-next-steps h3 {
    color: var(--forest-950);
    font-family: var(--font-editorial);
    font-size: 25px;
    font-weight: 500;
    margin: 0 0 25px;
}

.application-next-step {
    align-items: flex-start;
    display: grid;
    gap: 18px;
    grid-template-columns: 42px 1fr;
    padding: 14px 0;
}

.application-next-step > span {
    align-items: center;
    background: var(--forest-950);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    font-size: 11px;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    letter-spacing: 0.06em;
    width: 38px;
}

.application-next-step strong {
    color: var(--forest-900);
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.application-next-step p {
    color: rgba(18, 47, 32, 0.66);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.application-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 38px;
    width: 100%;
}

.application-success-primary,
.application-success-secondary {
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    min-height: 52px;
    padding: 14px 25px;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.application-success-primary {
    background: var(--forest-950);
    border: 1px solid var(--forest-950);
    box-shadow: 0 14px 32px rgba(5, 39, 22, 0.16);
    color: var(--white);
}

.application-success-primary:hover {
    box-shadow: 0 18px 38px rgba(5, 39, 22, 0.24);
    transform: translateY(-3px);
}

.application-success-secondary {
    background: transparent;
    border: 1px solid rgba(18, 47, 32, 0.2);
    color: var(--forest-800);
}

.application-success-secondary:hover {
    background: rgba(111, 190, 67, 0.08);
    border-color: rgba(65, 133, 55, 0.34);
    transform: translateY(-3px);
}

@keyframes applicationSuccessReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successCircleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes successCheckDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 600px) {
    .application-success {
        padding: 35px 18px 44px;
    }

    .application-success-icon {
        height: 76px;
        width: 76px;
    }

    .application-reference {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .application-success-actions {
        flex-direction: column;
    }

    .application-success-primary,
    .application-success-secondary {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .application-success.visible,
    .application-success.visible .success-circle,
    .application-success.visible .success-check {
        animation-duration: 0.01ms;
    }

    .application-success-primary,
    .application-success-secondary {
        transition: none;
    }
}
/* =========================================================
   CINEMATIC HERO EXPERIENCE — CORRECTED
   ========================================================= */

.cinematic-hero {
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
}

/* Fallback background image */

.cinematic-hero .hero-background {
    background-position: center;
    background-size: cover;
    inset: 0;
    position: absolute;
    transform: scale(1.04);
    z-index: 0;
}

/* Background video */

.cinematic-hero .hero-video {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    position: absolute;
    transform: scale(1.02);
    width: 100%;
    z-index: 1;
}

/* Main cinematic overlay */

.cinematic-hero .hero-video-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(2, 23, 13, 0.88) 0%,
            rgba(2, 23, 13, 0.68) 40%,
            rgba(2, 23, 13, 0.28) 72%,
            rgba(2, 23, 13, 0.4) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 20, 12, 0.2) 0%,
            rgba(2, 20, 12, 0.08) 48%,
            rgba(2, 20, 12, 0.78) 100%
        );
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

/*
   The original hero overlay already exists earlier in the CSS.
   This correction places it above the video without hiding it.
*/

.cinematic-hero .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(1, 18, 9, 0.48) 0%,
            rgba(2, 27, 14, 0.22) 46%,
            rgba(2, 24, 12, 0.05) 78%,
            rgba(1, 15, 7, 0.12) 100%
        ),
        linear-gradient(
            0deg,
            rgba(1, 18, 9, 0.42) 0%,
            transparent 58%
        );
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 3;
}

/* Soft green atmospheric light */

.cinematic-hero .hero-glow {
    background: rgba(112, 189, 54, 0.12);
    border-radius: 50%;
    filter: blur(100px);
    height: 520px;
    left: 28%;
    pointer-events: none;
    position: absolute;
    top: 20%;
    width: 520px;
    z-index: 4;
}

/* Premium grain */

.cinematic-hero .hero-grain {
    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.1) 0.7px,
            transparent 0.7px
        );
    background-size: 5px 5px;
    inset: 0;
    mix-blend-mode: soft-light;
    opacity: 0.1;
    pointer-events: none;
    position: absolute;
    z-index: 5;
}

/* Keep hero information above all visual layers */

.cinematic-hero .hero-content {
    position: relative;
    z-index: 10;
}

.cinematic-hero .scroll-indicator {
    z-index: 10;
}

/* Improve text visibility */

.cinematic-hero .hero-description {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.cinematic-hero .hero-title {
    text-shadow: 0 5px 35px rgba(0, 0, 0, 0.2);
}

/* Premium button shine */

.cinematic-hero .primary-button {
    overflow: hidden;
    position: relative;
}

.cinematic-hero .primary-button::before {
    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.26) 48%,
            transparent 76%
        );
    content: "";
    height: 100%;
    left: -120%;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: skewX(-18deg);
    transition: left 0.75s ease;
    width: 75%;
}

.cinematic-hero .primary-button:hover::before {
    left: 145%;
}

.cinematic-hero .primary-button > span {
    position: relative;
    z-index: 2;
}

.button-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cinematic-hero .primary-button:hover .button-arrow {
    transform: translate(3px, -3px);
}

/* Optional subtle video movement */

.cinematic-hero .hero-video.is-playing {
    animation: heroCinematicMovement 18s ease-in-out infinite alternate;
}

@keyframes heroCinematicMovement {
    0% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.06) translate3d(-0.5%, -0.3%, 0);
    }

    100% {
        transform: scale(1.04) translate3d(0.4%, -0.5%, 0);
    }
}

/* Tablet */

@media (max-width: 1000px) {
    .cinematic-hero .hero-video-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2, 23, 13, 0.86),
                rgba(2, 23, 13, 0.46)
            ),
            linear-gradient(
                180deg,
                rgba(2, 20, 12, 0.15),
                rgba(2, 20, 12, 0.76)
            );
    }
}

/* Mobile */

@media (max-width: 760px) {
    .cinematic-hero .hero-video {
        object-position: 58% center;
        transform: none;
    }

    .cinematic-hero .hero-video.is-playing {
        animation: none;
    }

    .cinematic-hero .hero-video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 23, 13, 0.52) 0%,
                rgba(2, 23, 13, 0.68) 48%,
                rgba(2, 23, 13, 0.9) 100%
            );
    }

    .cinematic-hero .hero-glow {
        height: 360px;
        left: 5%;
        top: 25%;
        width: 360px;
    }

    .cinematic-hero .hero-grain {
        opacity: 0.06;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .cinematic-hero .hero-video.is-playing {
        animation: none;
    }

    .cinematic-hero .primary-button::before {
        display: none;
    }

    .button-arrow {
        transition: none;
    }
}
/* =========================================================
   CAREER BENEFITS
   ========================================================= */

.career-benefits-section {
    background: var(--cream-50);
    overflow: hidden;
}

.career-benefits-header {
    align-items: end;
    display: grid;
    gap: 80px;
    grid-template-columns: 1.2fr 0.8fr;
    margin-bottom: 75px;
}

.career-benefits-header .section-eyebrow {
    margin-bottom: 28px;
}

.career-benefits-intro {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    max-width: 470px;
}

.career-benefits-grid {
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.career-benefit-card {
    background: transparent;
    border-bottom: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    min-height: 390px;
    overflow: hidden;
    padding: 38px 38px 42px;
    position: relative;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

.career-benefit-card::before {
    background:
        radial-gradient(
            circle at top right,
            rgba(139, 213, 74, 0.22),
            transparent 48%
        );
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.4s ease;
}

.career-benefit-card:hover {
    background: var(--forest-900);
    color: var(--white);
    transform: translateY(-8px);
}

.career-benefit-card:hover::before {
    opacity: 1;
}

.career-benefit-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.career-benefit-number {
    color: var(--forest-600);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.career-benefit-icon {
    align-items: center;
    border: 1px solid rgba(21, 80, 47, 0.18);
    border-radius: 50%;
    color: var(--forest-700);
    display: flex;
    font-size: 22px;
    height: 58px;
    justify-content: center;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
    width: 58px;
}

.career-benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.035em;
    margin-top: 125px;
    position: relative;
    z-index: 2;
}

.career-benefit-card p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 17px;
    max-width: 330px;
    position: relative;
    transition: color 0.4s ease;
    z-index: 2;
}

.career-benefit-card:hover .career-benefit-number {
    color: var(--leaf-400);
}

.career-benefit-card:hover .career-benefit-icon {
    background: var(--leaf-400);
    border-color: var(--leaf-400);
    color: var(--forest-950);
    transform: rotate(8deg);
}

.career-benefit-card:hover p {
    color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 900px) {
    .career-benefits-header {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .career-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .career-benefit-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .career-benefits-header {
        margin-bottom: 50px;
    }

    .career-benefits-grid {
        grid-template-columns: 1fr;
    }

    .career-benefit-card,
    .career-benefit-card:last-child {
        grid-column: auto;
        min-height: 330px;
        padding: 30px 26px 34px;
    }

    .career-benefit-card h3 {
        margin-top: 88px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .career-benefit-card,
    .career-benefit-icon,
    .career-benefit-card p {
        transition: none;
    }
}
/* =========================================================
   RECRUITMENT FAQ
   ========================================================= */

.career-faq-section {
    background: var(--cream-100);
    overflow: hidden;
}

.career-faq-layout {
    align-items: start;
    display: grid;
    gap: 110px;
    grid-template-columns: 0.8fr 1.2fr;
}

.career-faq-introduction {
    position: sticky;
    top: 130px;
}

.career-faq-introduction .section-eyebrow {
    margin-bottom: 30px;
}

.career-faq-description {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 30px;
    max-width: 430px;
}

.career-faq-apply {
    margin-top: 38px;
}

.career-faq-list {
    border-top: 1px solid var(--border-light);
}

.career-faq-item {
    border-bottom: 1px solid var(--border-light);
}

.career-faq-question {
    align-items: center;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    display: grid;
    gap: 22px;
    grid-template-columns: 42px 1fr 42px;
    padding: 30px 0;
    text-align: left;
    width: 100%;
}

.career-faq-number {
    color: var(--forest-600);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.career-faq-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.4;
}

.career-faq-toggle {
    border: 1px solid rgba(21, 80, 47, 0.2);
    border-radius: 50%;
    height: 40px;
    position: relative;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
    width: 40px;
}

.career-faq-toggle::before,
.career-faq-toggle::after {
    background: var(--forest-700);
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.35s ease;
}

.career-faq-toggle::before {
    height: 1px;
    width: 14px;
}

.career-faq-toggle::after {
    height: 14px;
    width: 1px;
}

.career-faq-item.active .career-faq-toggle {
    background: var(--forest-900);
    border-color: var(--forest-900);
    transform: rotate(180deg);
}

.career-faq-item.active .career-faq-toggle::before,
.career-faq-item.active .career-faq-toggle::after {
    background: var(--leaf-400);
}

.career-faq-item.active .career-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.career-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.career-faq-item.active .career-faq-answer {
    grid-template-rows: 1fr;
}

.career-faq-answer-inner {
    overflow: hidden;
}

.career-faq-answer p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.85;
    max-width: 650px;
    padding:
        0
        64px
        32px;
}

.career-faq-question:hover .career-faq-title {
    color: var(--forest-600);
}

.career-faq-question:hover .career-faq-toggle {
    border-color: var(--forest-600);
}

@media (max-width: 900px) {
    .career-faq-layout {
        gap: 65px;
        grid-template-columns: 1fr;
    }

    .career-faq-introduction {
        position: static;
    }
}

@media (max-width: 600px) {
    .career-faq-layout {
        gap: 50px;
    }

    .career-faq-question {
        gap: 14px;
        grid-template-columns: 28px 1fr 38px;
        padding: 25px 0;
    }

    .career-faq-title {
        font-size: 18px;
    }

    .career-faq-toggle {
        height: 36px;
        width: 36px;
    }

    .career-faq-answer p {
        padding:
            0
            0
            28px
            42px;
    }

    .career-faq-apply {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .career-faq-answer,
    .career-faq-toggle,
    .career-faq-toggle::before,
    .career-faq-toggle::after {
        transition: none;
    }
}
/* =========================================================
   RECRUITMENT FAQ ACCORDION
   ========================================================= */


/* =========================================================
   APPLICATION DRAFT NOTIFICATION
   ========================================================= */

.application-draft-notice {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(6, 35, 21, 0.96);
    border: 1px solid rgba(139, 213, 74, 0.24);
    border-radius: 14px;
    bottom: 28px;
    box-shadow: 0 20px 55px rgba(0, 18, 8, 0.28);
    color: var(--white);
    display: flex;
    gap: 14px;
    left: 50%;
    max-width: calc(100% - 40px);
    opacity: 0;
    padding: 15px 18px;
    pointer-events: none;
    position: fixed;
    transform: translate(-50%, 24px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
    visibility: hidden;
    width: max-content;
    z-index: 10000;
}

.application-draft-notice.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.application-draft-notice-icon {
    align-items: center;
    background: var(--leaf-400);
    border-radius: 50%;
    color: var(--forest-950);
    display: flex;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.application-draft-notice-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.application-draft-notice-content strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}

.application-draft-notice-content span {
    color: rgba(255, 255, 255, 0.63);
    font-size: 11px;
}

.application-draft-notice-close {
    align-items: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 30px;
    justify-content: center;
    margin-left: 8px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
    width: 30px;
}

.application-draft-notice-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

@media (max-width: 600px) {
    .application-draft-notice {
        bottom: 18px;
        padding: 13px 14px;
        width: calc(100% - 36px);
    }

    .application-draft-notice-content {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .application-draft-notice,
    .application-draft-notice-close {
        transition: none;
    }
}
/* =========================================================
   CONNECTION STATUS NOTIFICATION
   ========================================================= */

.connection-status {
    align-items: center;
    backdrop-filter: blur(18px);
    border: 1px solid transparent;
    border-radius: 14px;
    box-shadow: 0 18px 55px rgba(0, 18, 8, 0.25);
    display: flex;
    gap: 13px;
    left: 50%;
    max-width: calc(100% - 36px);
    opacity: 0;
    padding: 14px 18px;
    pointer-events: none;
    position: fixed;
    top: 24px;
    transform: translate(-50%, -22px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
    visibility: hidden;
    width: max-content;
    z-index: 10001;
}

.connection-status.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.connection-status.offline {
    background: rgba(68, 25, 18, 0.97);
    border-color: rgba(255, 176, 144, 0.22);
    color: #ffffff;
}

.connection-status.online {
    background: rgba(6, 49, 27, 0.97);
    border-color: rgba(139, 213, 74, 0.25);
    color: #ffffff;
}

.connection-status-icon {
    align-items: center;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 800;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.connection-status.offline .connection-status-icon {
    background: rgba(255, 176, 144, 0.16);
    color: #ffb090;
}

.connection-status.online .connection-status-icon {
    background: var(--leaf-400);
    color: var(--forest-950);
}

.connection-status-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.connection-status-copy strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}

.connection-status-copy span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    line-height: 1.45;
}

.connection-status-close {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 30px;
    justify-content: center;
    margin-left: 8px;
    padding: 0;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
    width: 30px;
}

.connection-status-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

@media (max-width: 600px) {
    .connection-status {
        top: 14px;
        width: calc(100% - 28px);
    }

    .connection-status-copy {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .connection-status,
    .connection-status-close {
        transition: none;
    }
}
/* =========================================================
   APPLICATION AUTOSAVE STATUS
   ========================================================= */

.application-save-status {
    align-items: center;
    color: var(--text-body);
    display: flex;
    font-size: 11px;
    gap: 8px;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    min-height: 20px;
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.application-save-status-dot {
    background: rgba(21, 80, 47, 0.28);
    border-radius: 50%;
    flex-shrink: 0;
    height: 7px;
    position: relative;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
    width: 7px;
}

.application-save-status.saving {
    color: var(--forest-600);
}

.application-save-status.saving .application-save-status-dot {
    animation: applicationSavePulse 0.9s ease infinite;
    background: var(--forest-600);
}

.application-save-status.saved {
    color: var(--forest-700);
}

.application-save-status.saved .application-save-status-dot {
    background: var(--leaf-400);
    box-shadow: 0 0 0 4px rgba(139, 213, 74, 0.14);
}

.application-save-status.empty {
    opacity: 0.65;
}

@keyframes applicationSavePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(21, 80, 47, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(21, 80, 47, 0);
        transform: scale(1.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .application-save-status,
    .application-save-status-dot {
        animation: none;
        transition: none;
    }
}
/* =========================================================
   APPLICATION VALIDATION
   ========================================================= */

.application-field-error {
    border-color: #b94336 !important;
    box-shadow: 0 0 0 3px rgba(185, 67, 54, 0.1) !important;
}

.application-error-message {
    color: #b94336;
    display: block;
    font-size: 11px;
    line-height: 1.45;
    margin-top: 7px;
}

.application-field-error:focus {
    border-color: #b94336 !important;
    outline: none;
}
/* =========================================================
   SUPABASE SUBMISSION MESSAGE
   ========================================================= */

.supabase-submission-message {
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 22px;
    padding: 14px 16px;
}

.supabase-submission-message.loading {
    background: rgba(21, 80, 47, 0.08);
    border: 1px solid rgba(21, 80, 47, 0.15);
    color: var(--forest-700);
}

.supabase-submission-message.success {
    background: rgba(71, 145, 74, 0.12);
    border: 1px solid rgba(71, 145, 74, 0.24);
    color: var(--forest-700);
}

.supabase-submission-message.error {
    background: rgba(185, 67, 54, 0.1);
    border: 1px solid rgba(185, 67, 54, 0.22);
    color: #a53c31;
}

#applicationForm button[type="submit"]:disabled,
#applicationForm input[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}
@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}
.story-image-large img{
    object-fit: cover;
    object-position: center 35%;
}

.story-image-small img{
    object-fit: cover;
    object-position: center;
}
.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.story-image{
    overflow:hidden;
    border-radius:28px;
}

.story-image img{
    transition:transform .8s ease;
}

.story-image:hover img{
    transform:scale(1.04);
}

.story-image{
    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}