:root {
    --navy: #0d2947;
    --navy-deep: #071a2d;
    --navy-soft: #153b61;
    --red: #c72f3a;
    --red-dark: #a7232d;
    --cream: #f5efe5;
    --paper: #fbfaf6;
    --gold: #d5ab55;
    --ink: #1d2732;
    --muted: #66707a;
    --line: rgba(13, 41, 71, 0.14);
    --display: "DM Serif Display", Georgia, serif;
    --body: "Manrope", Arial, sans-serif;
    --shadow: 0 28px 70px rgba(7, 26, 45, 0.16);
}

/* =========================================================
   SAMPLE TRIGGER BUTTON
========================================================= */

.admission-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;

    border: 0;
    border-radius: 8px;

    background: #c9303d;
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.admission-trigger:hover {
    background: #ad2531;
    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(201, 48, 61, 0.24);
}

/* =========================================================
   MODAL WRAPPER
========================================================= */

.admission-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.admission-modal.is-open {
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   BACKDROP
========================================================= */

.admission-modal__overlay {
    position: absolute;
    inset: 0;

    background: rgba(5, 18, 31, 0.82);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

/* =========================================================
   DIALOG
========================================================= */

.admission-modal__dialog {
    position: relative;
    z-index: 2;

    width: min(100%, 650px);
    max-height: calc(100vh - 48px);

    overflow-y: auto;

    background: #0f2335;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);

    transform: translateY(18px) scale(0.98);

    transition: transform 0.25s ease;
}

.admission-modal.is-open .admission-modal__dialog {
    transform: translateY(0) scale(1);
}

/* =========================================================
   CLOSE BUTTON
========================================================= */

.admission-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 4;

    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;

    font-size: 26px;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.admission-modal__close:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(4deg);
}

/* =========================================================
   HEADER
========================================================= */

.admission-modal__header {
    padding: 30px 62px 24px;

    text-align: center;

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

.admission-modal__logo {
    width: 76px;
    height: 76px;

    object-fit: contain;

    margin-bottom: 14px;
}

.admission-modal__header h2 {
    margin: 0;

    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;

    text-transform: none;
    letter-spacing: -0.02em;
}

.admission-modal__warning {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 8px;

    color: #f05a66;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admission-modal__warning-icon {
    font-size: 14px;
}

/* =========================================================
   BODY
========================================================= */

.admission-modal__body {
    padding: 26px 30px 20px;
}

.admission-modal__steps {
    display: grid;
    gap: 16px;

    margin: 0;
    padding-left: 24px;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.75;

    color: #d8e1e8;
}

.admission-modal__steps li {
    padding-left: 4px;
}

.admission-modal__steps li::marker {
    color: #ffffff;
    font-weight: 700;
}

.admission-modal__steps strong {
    color: #53c8f2;
    font-weight: 800;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* =========================================================
   AGREEMENT CHECKBOX
========================================================= */

.admission-modal__agreement {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-top: 28px;

    cursor: pointer;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.55;

    color: #dce4ea;
}

.admission-modal__agreement input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.admission-modal__checkbox {
    flex: 0 0 auto;

    width: 21px;
    height: 21px;

    margin-top: 1px;

    border: 2px solid rgba(255, 255, 255, 0.7);

    border-radius: 4px;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.admission-modal__agreement input:checked + .admission-modal__checkbox {
    background: #159447;
    border-color: #159447;
}

.admission-modal__agreement input:checked + .admission-modal__checkbox::after {
    content: "✓";

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}

/* =========================================================
   FOOTER
========================================================= */

.admission-modal__footer {
    padding: 18px 30px 26px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admission-modal__proceed {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 9px;

    background: #1487f6;
    color: #ffffff;

    text-decoration: none;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.admission-modal__proceed:hover {
    background: #0877e5;
    transform: translateY(-1px);
}

.admission-modal__proceed.is-disabled {
    opacity: 0.45;

    pointer-events: none;
    cursor: not-allowed;
}

.admission-modal__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    border-radius: 3px;

    background: #1aa34a;

    font-size: 13px;
}

/* =========================================================
   BODY LOCK
========================================================= */

body.admission-modal-open {
    overflow: hidden;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {
    .admission-modal {
        align-items: flex-end;

        padding: 0;
    }

    .admission-modal__dialog {
        width: 100%;
        max-height: 92vh;

        border-radius: 20px 20px 0 0;
    }

    .admission-modal__header {
        padding: 26px 48px 20px;
    }

    .admission-modal__logo {
        width: 64px;
        height: 64px;
    }

    .admission-modal__header h2 {
        font-size: 29px;
    }

    .admission-modal__body {
        padding: 22px 22px 18px;
    }

    .admission-modal__steps {
        gap: 14px;

        padding-left: 22px;

        font-size: 14px;
        line-height: 1.7;
    }

    .admission-modal__agreement {
        font-size: 13px;
    }

    .admission-modal__footer {
        padding: 16px 22px 22px;
    }

    .admission-modal__proceed {
        min-height: 54px;

        font-size: 14px;
    }
}

/* =========================================================
   ADMISSION TRIGGER
========================================================= */

.admission-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    border: 0;
    border-radius: 8px;

    background: #c82f3d;
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.admission-trigger:hover {
    background: #ad2632;
    transform: translateY(-2px);

    box-shadow: 0 14px 30px rgba(200, 47, 61, 0.2);
}

/* =========================================================
   MODAL
========================================================= */

.admission-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.admission-modal.is-open {
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   BACKDROP
========================================================= */

.admission-modal__backdrop {
    position: absolute;
    inset: 0;

    background: rgba(9, 29, 52, 0.65);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* =========================================================
   DIALOG
========================================================= */

.admission-modal__dialog {
    position: relative;
    z-index: 2;

    width: min(100%, 720px);
    max-height: calc(100vh - 60px);

    overflow-y: auto;

    background: #fbfaf7;
    color: #17293d;

    border: 1px solid rgba(16, 44, 76, 0.1);
    border-radius: 18px;

    box-shadow: 0 40px 100px rgba(9, 29, 52, 0.2);

    transform: translateY(16px) scale(0.985);

    transition: transform 0.25s ease;
}

.admission-modal.is-open .admission-modal__dialog {
    transform: translateY(0) scale(1);
}

/* =========================================================
   CLOSE
========================================================= */

.admission-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(16, 44, 76, 0.1);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.75);
    color: #102c4c;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.admission-modal__close:hover {
    background: #ffffff;
    transform: rotate(4deg);
}

/* =========================================================
   HEADER
========================================================= */

.admission-modal__header {
    padding: 48px 68px 28px;

    border-bottom: 1px solid rgba(16, 44, 76, 0.08);
}

.admission-modal__eyebrow {
    margin-bottom: 10px;

    color: #c82f3d;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.admission-modal__header h2 {
    /* max-width: 520px; */

    margin: 0 0 12px;

    color: #102c4c;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(30px, 4vw, 42px);

    font-weight: 400;
    line-height: 1.08;

    letter-spacing: -0.025em;
}

.admission-modal__header p {
    /* max-width: 570px; */

    margin: 0;

    color: #65717e;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   BODY
========================================================= */

.admission-modal__body {
    padding: 28px 68px 32px;
}

/* =========================================================
   NOTICE
========================================================= */

.admission-modal__notice {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 28px;
    padding: 16px 18px;

    background: #f3eee6;

    border-left: 3px solid #d6a84d;
}

.admission-modal__notice-icon {
    width: 28px;
    height: 28px;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #102c4c;
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.admission-modal__notice div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.admission-modal__notice strong {
    color: #102c4c;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.admission-modal__notice span:last-child {
    color: #66727e;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

/* =========================================================
   STEPS
========================================================= */

.admission-modal__steps {
    display: grid;

    margin: 0;
    padding: 0;

    list-style: none;
}

.admission-modal__steps li {
    display: grid;
    grid-template-columns:
        42px
        1fr;

    gap: 18px;

    padding: 19px 0;

    border-bottom: 1px solid rgba(16, 44, 76, 0.08);
}

.admission-modal__steps li:first-child {
    padding-top: 0;
}

.admission-modal__number {
    padding-top: 2px;

    color: #c82f3d;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.admission-modal__steps strong {
    display: block;

    margin-bottom: 4px;

    color: #102c4c;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.admission-modal__steps p {
    margin: 0;

    color: #697581;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

.admission-modal__steps b {
    color: #102c4c;
    font-weight: 800;
}

/* =========================================================
   AGREEMENT
========================================================= */

.admission-modal__agreement {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-top: 28px;
    padding: 18px;

    background: #ffffff;

    border: 1px solid rgba(16, 44, 76, 0.1);

    border-radius: 10px;

    cursor: pointer;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.55;

    color: #33475a;
}

.admission-modal__agreement input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.admission-modal__checkbox {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border: 1.5px solid #9ba7b2;

    border-radius: 4px;

    color: transparent;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.admission-modal__agreement input:checked + .admission-modal__checkbox {
    background: #102c4c;

    border-color: #102c4c;

    color: #ffffff;
}

/* =========================================================
   FOOTER
========================================================= */

.admission-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;

    padding: 20px 68px 28px;

    background: #f5f0e8;

    border-top: 1px solid rgba(16, 44, 76, 0.08);
}

.admission-modal__secondary,
.admission-modal__proceed {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 7px;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        opacity 0.2s ease;
}

/* SECONDARY */

.admission-modal__secondary {
    border: 1px solid rgba(16, 44, 76, 0.16);

    background: transparent;

    color: #102c4c;

    cursor: pointer;
}

.admission-modal__secondary:hover {
    background: #ffffff;
}

/* PROCEED */

.admission-modal__proceed {
    gap: 10px;

    min-width: 210px;

    background: #c82f3d;
    color: #ffffff;
}

.admission-modal__proceed:hover {
    background: #ae2733;

    transform: translateY(-1px);
}

.admission-modal__proceed.is-disabled {
    opacity: 0.38;

    pointer-events: none;
}

/* =========================================================
   BODY LOCK
========================================================= */

body.admission-modal-open {
    overflow: hidden;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {
    .admission-modal {
        align-items: flex-end;

        padding: 0;
    }

    .admission-modal__dialog {
        width: 100%;
        max-height: 94vh;

        border-radius: 18px 18px 0 0;
    }

    .admission-modal__header {
        padding: 42px 24px 24px;
    }

    .admission-modal__header h2 {
        font-size: 31px;
    }

    .admission-modal__body {
        padding: 24px;
    }

    .admission-modal__steps li {
        grid-template-columns:
            34px
            1fr;

        gap: 12px;
    }

    .admission-modal__footer {
        flex-direction: column-reverse;

        padding: 18px 24px 24px;
    }

    .admission-modal__secondary,
    .admission-modal__proceed {
        width: 100%;
    }

    .admission-modal__close {
        top: 14px;
        right: 14px;
    }
}

/* =========================================================
   MAKE MODAL FIT WITHIN VIEWPORT
========================================================= */

.admission-modal {
    padding: 18px;
}

.admission-modal__dialog {
    width: min(100%, 860px);

    max-height: calc(100vh - 36px);

    overflow: hidden;

    display: flex;
    flex-direction: column;
}

/* =========================================================
   MORE COMPACT HEADER
========================================================= */

.admission-modal__header {
    flex: 0 0 auto;

    padding: 28px 48px 20px;
}

.admission-modal__eyebrow {
    margin-bottom: 6px;
}

.admission-modal__header h2 {
    margin-bottom: 8px;

    font-size: clamp(28px, 3vw, 36px);
}

.admission-modal__header p {
    font-size: 13px;
    line-height: 1.55;
}

/* =========================================================
   COMPACT BODY
========================================================= */

.admission-modal__body {
    flex: 1;

    padding: 20px 48px 18px;
}

/* =========================================================
   SMALLER NOTICE
========================================================= */

.admission-modal__notice {
    margin-bottom: 18px;

    padding: 12px 15px;
}

.admission-modal__notice-icon {
    width: 25px;
    height: 25px;
}

.admission-modal__notice span:last-child {
    font-size: 12px;
}

/* =========================================================
   TWO-COLUMN INSTRUCTION GRID
========================================================= */

.admission-modal__steps {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 34px;
    row-gap: 0;
}

.admission-modal__steps li {
    grid-template-columns:
        34px
        1fr;

    gap: 10px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(16, 44, 76, 0.08);
}

/* remove unnecessary bottom lines */

.admission-modal__steps li:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.admission-modal__number {
    font-size: 11px;
}

.admission-modal__steps strong {
    margin-bottom: 2px;

    font-size: 13px;
}

.admission-modal__steps p {
    font-size: 12.5px;
    line-height: 1.5;
}

/* =========================================================
   COMPACT AGREEMENT
========================================================= */

.admission-modal__agreement {
    margin-top: 17px;

    padding: 12px 14px;

    font-size: 12.5px;
}

/* =========================================================
   COMPACT FOOTER
========================================================= */

.admission-modal__footer {
    flex: 0 0 auto;

    padding: 14px 48px 18px;
}

.admission-modal__secondary,
.admission-modal__proceed {
    min-height: 44px;

    padding: 0 18px;

    font-size: 12.5px;
}

.admission-modal__proceed {
    min-width: 190px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input {
    font: inherit;
}
.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}
.section {
    padding: 120px 0;
}
.skip-link {
    position: fixed;
    left: 12px;
    top: -50px;
    z-index: 999;
    background: white;
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: var(--shadow);
}
.skip-link:focus {
    top: 12px;
}

.utility-bar {
    background: var(--navy-deep);
    color: #dce4ec;
    font-size: 11px;
}
.utility-bar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 700px) {
    .admission-modal {
        align-items: flex-end;

        padding: 0;
    }

    .admission-modal__dialog {
        width: 100%;

        max-height: 94vh;

        overflow-y: auto;

        border-radius: 18px 18px 0 0;
    }

    .admission-modal__header {
        padding: 38px 22px 20px;
    }

    .admission-modal__body {
        padding: 20px 22px;
    }

    #nn {
        text-align: center m !important;
    }

    .admission-modal__steps {
        grid-template-columns: 1fr;
    }

    .admission-modal__steps li:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(16, 44, 76, 0.08);
    }

    .admission-modal__steps li:last-child {
        border-bottom: 0;
    }

    .admission-modal__footer {
        flex-direction: column-reverse;

        padding: 14px 22px 20px;
    }

    .admission-modal__secondary,
    .admission-modal__proceed {
        width: 100%;
    }
}
.utility-bar p,
.utility-bar__inner > div {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #58d58c;
    box-shadow: 0 0 0 4px rgba(88, 213, 140, 0.12);
}
.utility-bar a:hover {
    color: white;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(251, 250, 246, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(13, 41, 71, 0.08);
}
.nav-wrap {
    position: relative;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand__logo {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.brand__logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}
.brand__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.brand__copy strong {
    color: var(--navy);
    font-size: 13px;
    letter-spacing: -0.01em;
}
.brand__copy span {
    color: #7c858f;
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.primary-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    color: #47515b;
    font-size: 11px;
    font-weight: 700;
}
.primary-nav a:hover {
    color: var(--navy);
}
.nav-cta {
    background: var(--navy);
    color: white !important;
    padding: 13px 18px;
    border-radius: 5px;
    transition: 0.2s ease;
}
.nav-cta:hover {
    background: var(--red);
    transform: translateY(-1px);
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 9px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding: 92px 0 28px;
}
.hero__texture {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image: radial-gradient(
        rgba(13, 41, 71, 0.22) 0.55px,
        transparent 0.55px
    );
    background-size: 8px 8px;
    mask-image: linear-gradient(to right, #000, transparent 55%);
}
.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 610px;
    gap: 72px;
    align-items: center;
}
.hero__copy {
    position: relative;
    z-index: 3;
    padding-bottom: 34px;
}
.hero__season {
    margin-bottom: 24px;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero h1 {
    margin: 0;
    color: var(--navy);
    font-family: var(--display);
    font-size: clamp(58px, 5.4vw, 86px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    font-weight: 400;
}
.hero h1 em {
    color: var(--red);
    font-weight: 400;
}
.hero__lead {
    max-width: 610px;
    margin: 30px 0 0;
    color: #5f6871;
    font-size: 15px;
    line-height: 1.85;
}
.hero__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    transition: 0.22s ease;
}
.btn--primary {
    background: var(--red);
    color: white;
    box-shadow: 0 14px 30px rgba(199, 47, 58, 0.2);
}
.btn--primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}
.btn--cream {
    background: var(--cream);
    color: var(--navy);
}
.btn--cream:hover {
    background: white;
    transform: translateY(-2px);
}
.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    border-bottom: 1px solid rgba(13, 41, 71, 0.3);
    padding-bottom: 5px;
}
.text-link--red {
    color: var(--red);
    border-color: rgba(199, 47, 58, 0.35);
}
.hero__meta {
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(13, 41, 71, 0.15);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 590px;
}
.hero__meta div {
    padding-right: 22px;
}
.hero__meta div + div {
    padding-left: 22px;
    border-left: 1px solid rgba(13, 41, 71, 0.13);
}
.hero__meta strong {
    display: block;
    color: var(--navy);
    font-family: var(--display);
    font-size: 23px;
    font-weight: 400;
}
.hero__meta span {
    display: block;
    margin-top: 4px;
    color: #77808a;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero__art {
    position: relative;
    min-height: 570px;
}
.hero-photo {
    position: absolute;
    inset: 0 18px 0 72px;
    margin: 0;
    overflow: hidden;
    background: #d8d1c5;
    box-shadow: var(--shadow);
}
.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 26, 45, 0.28));
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(0.98);
}
.hero-stamp {
    position: absolute;
    right: 0;
    top: 52px;
    z-index: 3;
    width: 178px;
    min-height: 178px;
    padding: 24px;
    background: var(--red);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 22px 45px rgba(117, 25, 33, 0.24);
    transform: rotate(2deg);
}
.hero-stamp span {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero-stamp strong {
    margin: 8px 0;
    font-family: var(--display);
    font-size: 30px;
    line-height: 0.95;
    font-weight: 400;
}
.hero-stamp small {
    color: #ffd9dc;
    font-size: 11px;
}
.hero-mark {
    position: absolute;
    left: -8px;
    bottom: 6px;
    z-index: 0;
    color: rgba(13, 41, 71, 0.09);
    font-family: var(--display);
    font-size: 122px;
    letter-spacing: -0.07em;
    transform: rotate(-90deg) translateX(18px);
    transform-origin: left bottom;
}
.hero-note {
    position: absolute;
    left: 16px;
    bottom: 44px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px 12px 11px;
    background: rgba(251, 250, 246, 0.96);
    border-left: 3px solid var(--gold);
    box-shadow: 0 16px 40px rgba(7, 26, 45, 0.15);
}
.hero-note img {
    width: 41px;
    height: 41px;
    object-fit: contain;
}
.hero-note div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-note small {
    color: #8a9198;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-note strong {
    color: var(--navy);
    font-size: 11px;
}
.hero__ticker {
    position: relative;
    z-index: 4;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: #777f86;
    font-family: var(--display);
    font-size: 15px;
    font-style: italic;
}
.hero__ticker i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}
.kicker--light {
    color: #efc577;
}
.intro {
    background: var(--paper);
}
.intro__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 90px;
    align-items: end;
}
.intro h2,
.requirements h2,
.process h2,
.reporting h2,
.closing h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.025em;
}
.intro h2 {
    max-width: 700px;
    color: var(--navy);
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1;
}
.intro__copy p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}
.intro__photo-wrap {
    margin-top: 72px;
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: end;
    gap: 26px;
}
.intro__photo {
    height: 420px;
    overflow: hidden;
}
.intro__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
}
.intro__caption {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.intro__caption span {
    display: block;
    color: var(--red);
    font-family: var(--display);
    font-size: 34px;
}
.intro__caption p {
    color: #65707a;
    font-size: 11px;
    line-height: 1.75;
}

.requirements {
    background: #efe8dc;
}
.requirements__layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 95px;
}
.requirements__intro {
    position: sticky;
    top: 135px;
    align-self: start;
}
.requirements h2 {
    color: var(--navy);
    font-size: clamp(48px, 4.6vw, 68px);
    line-height: 0.98;
}
.requirements h2 em {
    color: var(--red);
    font-weight: 400;
}
.requirements__intro p {
    max-width: 430px;
    margin-top: 25px;
    color: #69717a;
    font-size: 13px;
    line-height: 1.85;
}
.requirements__list {
    border-top: 1px solid rgba(13, 41, 71, 0.17);
}
.requirement-row {
    display: grid;
    grid-template-columns: 58px 1fr 36px;
    gap: 18px;
    align-items: start;
    padding: 27px 0;
    border-bottom: 1px solid rgba(13, 41, 71, 0.17);
}
.requirement-row__number {
    color: var(--red);
    font-family: var(--display);
    font-size: 23px;
}
.requirement-row h3 {
    margin: 2px 0 7px;
    color: var(--navy);
    font-size: 15px;
}
.requirement-row p {
    max-width: 520px;
    margin: 0;
    color: #69727b;
    font-size: 11px;
    line-height: 1.75;
}
.requirement-row__icon {
    color: var(--navy);
    font-size: 17px;
    opacity: 0.45;
}

.process {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    color: white;
}
.process__photo {
    position: absolute;
    inset: 0;
    opacity: 0.14;
}
.process__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--navy-deep) 0%,
        rgba(7, 26, 45, 0.94) 48%,
        rgba(7, 26, 45, 0.84) 100%
    );
}
.process__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}
.process__inner {
    position: relative;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 95px;
}
.process__heading {
    position: sticky;
    top: 135px;
    align-self: start;
}
.process h2 {
    color: white;
    font-size: clamp(52px, 5vw, 76px);
    line-height: 0.94;
}
.process__heading p {
    max-width: 430px;
    margin: 24px 0 30px;
    color: #aab8c6;
    font-size: 13px;
    line-height: 1.8;
}
.process__steps {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.process-step > span {
    color: #e6bf78;
    font-family: var(--display);
    font-size: 30px;
}
.process-step h3 {
    margin: 3px 0 8px;
    color: white;
    font-size: 15px;
}
.process-step p {
    max-width: 540px;
    margin: 0;
    color: #9eafbf;
    font-size: 11px;
    line-height: 1.75;
}

.reporting {
    background: var(--paper);
    overflow: hidden;
}
.reporting__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 95px;
    align-items: center;
}
.reporting h2 {
    color: var(--navy);
    font-size: clamp(48px, 4.8vw, 70px);
    line-height: 1;
}
.reporting__content p {
    max-width: 500px;
    margin: 24px 0 26px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}
.reporting__papers {
    position: relative;
    min-height: 540px;
}
.paper {
    position: absolute;
    width: min(470px, 90%);
    min-height: 470px;
    background: white;
    border: 1px solid #e2ded6;
    box-shadow: 0 22px 60px rgba(7, 26, 45, 0.09);
}
.paper--back {
    right: 26px;
    top: 5px;
    transform: rotate(7deg);
    background: #eadfcf;
}
.paper--middle {
    right: 14px;
    top: 18px;
    transform: rotate(3deg);
    background: #f4eadc;
}
.paper--front {
    right: 5px;
    top: 28px;
    z-index: 3;
    padding: 34px;
    transform: rotate(-1deg);
}
.paper__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--navy);
}
.paper__head img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.paper__head div {
    display: flex;
    flex-direction: column;
}
.paper__head small {
    color: var(--red);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.paper__head strong {
    color: var(--navy);
    font-family: var(--display);
    font-size: 21px;
    font-weight: 400;
}
.paper ul {
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
}
.paper li {
    position: relative;
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid #ece8e1;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}
.paper li > span {
    position: absolute;
    left: 0;
    top: 13px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf5ef;
    color: #278153;
    font-size: 9px;
}
.paper li small {
    display: block;
    margin-top: 4px;
    color: #8a9198;
    font-size: 9px;
    font-weight: 500;
}

.closing {
    padding-top: 35px;
    background: var(--paper);
}
.closing__panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
    padding: 58px 62px;
    background: var(--cream);
    border-left: 7px solid var(--red);
}
.closing__panel::after {
    content: "CDTI";
    position: absolute;
    right: -15px;
    top: -32px;
    color: rgba(13, 41, 71, 0.05);
    font-family: var(--display);
    font-size: 145px;
    letter-spacing: -0.07em;
}
.closing__copy,
.closing__actions {
    position: relative;
    z-index: 2;
}
.closing__copy > span {
    color: var(--red);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.closing h2 {
    margin-top: 13px;
    color: var(--navy);
    font-size: clamp(42px, 4vw, 61px);
    line-height: 1;
}
.closing p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #69727b;
    font-size: 12px;
    line-height: 1.75;
}
.closing__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
}
.closing__actions > a:last-child {
    text-align: center;
    color: #6a737c;
    font-size: 9px;
}
.closing__actions strong {
    color: var(--navy);
}

.site-footer {
    background: var(--navy-deep);
    color: white;
    padding: 52px 0 24px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 50px;
    align-items: start;
}
.footer__brand {
    display: flex;
    gap: 13px;
    align-items: center;
}
.footer__brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}
.footer__brand div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__brand strong {
    font-size: 12px;
}
.footer__brand span,
.footer__grid p,
.footer__links a,
.footer__bottom {
    color: #8fa2b5;
    font-size: 10px;
}
.footer__grid p {
    max-width: 320px;
    margin: 0;
    line-height: 1.7;
}
.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}
.footer__links a:hover {
    color: white;
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.mobile-apply {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.reveal--delay,
.reveal--delay-1 {
    transition-delay: 0.08s;
}
.reveal--delay-2 {
    transition-delay: 0.16s;
}
.reveal--delay-3 {
    transition-delay: 0.24s;
}
.reveal--delay-4 {
    transition-delay: 0.32s;
}

@media (max-width: 1050px) {
    .hero__grid {
        gap: 38px;
        grid-template-columns: 1fr 1fr;
    }
    .hero-photo {
        left: 30px;
    }
    .hero-stamp {
        width: 150px;
        min-height: 150px;
    }
    .requirements__layout,
    .process__inner,
    .reporting__grid {
        gap: 55px;
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(100% - 30px, 1180px);
    }
    .section {
        padding: 82px 0;
    }
    .utility-bar__inner > div span:last-child {
        display: none;
    }
    .nav-wrap {
        min-height: 72px;
    }
    .brand__logo {
        width: 46px;
        height: 46px;
    }
    .brand__logo img {
        width: 44px;
        height: 44px;
    }
    .brand__copy strong {
        max-width: 190px;
        font-size: 11px;
    }
    .brand__copy span {
        font-size: 8px;
    }
    .menu-toggle {
        display: block;
    }
    .primary-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        padding: 15px;
        background: var(--paper);
        border: 1px solid #e8e4dc;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .primary-nav.is-open {
        display: flex;
    }
    .primary-nav a {
        padding: 11px 10px;
    }
    .nav-cta {
        text-align: center;
    }
    .hero {
        padding-top: 58px;
    }
    .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero h1 {
        font-size: clamp(54px, 12vw, 76px);
    }
    .hero__art {
        min-height: 520px;
        margin-top: 16px;
    }
    .hero-photo {
        inset: 0 0 0 42px;
    }
    .hero-mark {
        display: none;
    }
    .hero-note {
        left: 0;
    }
    .hero__ticker {
        overflow: hidden;
        gap: 14px;
        white-space: nowrap;
    }
    .intro__grid,
    .requirements__layout,
    .process__inner,
    .reporting__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .intro__photo-wrap {
        grid-template-columns: 1fr;
    }
    .intro__photo {
        height: 330px;
    }
    .intro__caption {
        max-width: 350px;
    }
    .requirements__intro,
    .process__heading {
        position: static;
    }
    .reporting__papers {
        min-height: 520px;
    }
    .paper {
        width: 91%;
    }
    .closing__panel {
        grid-template-columns: 1fr;
        padding: 42px 32px;
    }
    .closing__actions {
        align-items: flex-start;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .mobile-apply {
        position: fixed;
        z-index: 70;
        left: 14px;
        right: 14px;
        bottom: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        min-height: 54px;
        background: var(--red);
        color: white;
        border-radius: 5px;
        box-shadow: 0 18px 35px rgba(135, 26, 35, 0.28);
        font-size: 12px;
        font-weight: 800;
    }
    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 540px) {
    .utility-bar__inner {
        min-height: 40px;
    }
    .utility-bar__inner > div {
        display: none;
    }
    .hero__meta {
        grid-template-columns: 1fr 1fr;
    }
    .hero__meta div:nth-child(3) {
        display: none;
    }
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero__actions .text-link {
        align-self: flex-start;
    }
    .btn {
        width: 100%;
    }
    .hero__art {
        min-height: 450px;
    }
    .hero-photo {
        left: 18px;
    }
    .hero-stamp {
        top: 24px;
        width: 134px;
        min-height: 134px;
        padding: 18px;
    }
    .hero-stamp strong {
        font-size: 25px;
    }
    .hero-note {
        bottom: 23px;
    }
    .requirement-row {
        grid-template-columns: 48px 1fr;
    }
    .requirement-row__icon {
        display: none;
    }
    .process-step {
        grid-template-columns: 54px 1fr;
    }
    .reporting__papers {
        min-height: 500px;
    }
    .paper--front {
        padding: 24px;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
