:root {
    --canvas: #f5f1e8;
    --paper: rgba(255, 250, 242, 0.8);
    --ink: #13293d;
    --muted: #4f6573;
    --line: rgba(19, 41, 61, 0.12);
    --navy: #0d3b66;
    --gold: #f4a259;
    --gold-deep: #dd7f2b;
    --teal: #2a9d8f;
    --white: #fffdf9;
    --shadow: 0 22px 60px rgba(13, 59, 102, 0.14);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(244, 162, 89, 0.32), transparent 33%),
        radial-gradient(circle at right center, rgba(42, 157, 143, 0.18), transparent 28%),
        linear-gradient(180deg, #fbf6ef 0%, #f5f1e8 48%, #f0ece4 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select {
    font: inherit;
}

.site-shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(245, 241, 232, 0.78);
    border-bottom: 1px solid rgba(19, 41, 61, 0.08);
}

.topbar-inner {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(13, 59, 102, 0.25);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy strong,
.brand-copy span {
    display: block;
}

.brand-copy strong {
    font-size: 0.96rem;
    letter-spacing: 0.03em;
}

.brand-copy span {
    font-size: 0.8rem;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--ink);
}

.nav-cta,
.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.92rem 1.35rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button {
    background: linear-gradient(135deg, var(--gold), #f7bd80);
    color: #1d1d1d;
    box-shadow: 0 14px 28px rgba(221, 127, 43, 0.22);
}

.button-secondary {
    background: rgba(255, 253, 249, 0.72);
    color: var(--ink);
    border: 1px solid rgba(255, 253, 249, 0.42);
}

.nav-cta:hover,
.button:hover,
.button-secondary:hover,
.nav-cta:focus-visible,
.button:focus-visible,
.button-secondary:focus-visible {
    transform: translateY(-2px);
}

.hero {
    padding: 3.6rem 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.trust-strip,
.opportunity-shell,
.section-card,
.cta-band,
.site-footer {
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.hero-copy {
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -12% -24% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.22), rgba(42, 157, 143, 0));
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    background: rgba(19, 41, 61, 0.06);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
}

.hero-copy h1,
.section-heading h2,
.cta-band h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-copy h1 {
    margin: 1rem 0 1rem;
    font-size: clamp(3rem, 7vw, 5.3rem);
    line-height: 0.92;
    max-width: 10ch;
}

.hero-copy p {
    margin: 0;
    max-width: 60ch;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.hero-contact-bar {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-contact-bar a,
.hero-contact-bar span {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.72);
    border: 1px solid rgba(19, 41, 61, 0.08);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.metric {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.74);
    border: 1px solid rgba(19, 41, 61, 0.08);
}

.metric strong,
.metric span {
    display: block;
}

.metric strong {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.metric span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-panel {
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(13, 59, 102, 0.98) 0%, rgba(19, 41, 61, 0.98) 100%), var(--navy);
    color: var(--white);
}

.hero-panel h2 {
    margin: 0;
    font-size: 1.45rem;
}

.hero-panel p,
.panel-note,
.panel-list li {
    color: rgba(255, 255, 255, 0.82);
}

.panel-note {
    margin: 0.8rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.85rem;
}

.panel-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.panel-list strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.12rem;
}

.panel-number {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--navy);
    background: var(--gold);
}

.trust-strip {
    margin-top: 1rem;
    border-radius: 24px;
    padding: 1rem 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    margin-bottom: 0.25rem;
    font-size: 0.98rem;
}

.trust-item span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.section {
    padding: 2rem 0 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 0.95;
}

.section-heading p {
    margin: 0;
    max-width: 48ch;
    color: var(--muted);
    line-height: 1.7;
}

.opportunity-shell {
    border-radius: var(--radius-xl);
    padding: 1.35rem;
}

.filters {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.input-wrap,
.select-wrap {
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.82);
    border: 1px solid rgba(19, 41, 61, 0.08);
    padding: 0.3rem;
}

.input-wrap input,
.select-wrap select {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.95rem 1rem;
    outline: none;
    color: var(--ink);
}

.job-grid,
.sector-grid,
.support-grid,
.contact-grid {
    display: grid;
    gap: 1rem;
}

.job-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.job-card {
    position: relative;
    border-radius: 24px;
    padding: 1.3rem;
    background: rgba(255, 253, 249, 0.9);
    border: 1px solid rgba(19, 41, 61, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 260px;
}

.job-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--gold), #2a9d8f);
}

.job-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.42rem 0.72rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(13, 59, 102, 0.08);
}

.job-card h3 {
    margin: 0;
    font-size: 1.28rem;
}

.job-meta,
.job-details span,
.empty-state p,
.timeline-copy p,
.support-card p,
.contact-card p,
.site-footer p,
.footer-links a {
    color: var(--muted);
}

.job-meta {
    margin: 0.25rem 0 0;
    line-height: 1.6;
}

.job-details {
    display: grid;
    gap: 0.55rem;
}

.job-details span {
    display: block;
    font-size: 0.94rem;
}

.job-card .button {
    margin-top: auto;
    width: 100%;
}

.empty-state {
    padding: 2rem;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.84);
    border: 1px dashed rgba(19, 41, 61, 0.18);
}

.sector-grid,
.support-grid,
.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-card,
.support-card,
.contact-card {
    border-radius: 24px;
    padding: 1.4rem;
}

.section-card h3,
.support-card h3,
.contact-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.18rem;
}

.section-card p,
.support-card p,
.contact-card p {
    margin: 0;
    line-height: 1.7;
}

.accent-chip {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    padding: 0.4rem 0.74rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    background: rgba(244, 162, 89, 0.16);
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.timeline-step,
.timeline-copy {
    border-radius: 24px;
    padding: 1.3rem;
}

.timeline-step {
    background: linear-gradient(180deg, var(--navy), #235789);
    color: var(--white);
    display: flex;
    align-items: end;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.timeline-copy {
    background: rgba(255, 253, 249, 0.82);
    border: 1px solid rgba(19, 41, 61, 0.08);
}

.timeline-copy h3 {
    margin: 0 0 0.45rem;
}

.cta-band {
    margin: 2rem 0;
    border-radius: 30px;
    padding: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(125deg, rgba(13, 59, 102, 0.98), rgba(35, 87, 137, 0.94)), var(--navy);
    color: var(--white);
}

.cta-band h2 {
    margin: 0 0 0.45rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.cta-band p {
    margin: 0;
    max-width: 48ch;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.site-footer {
    margin-bottom: 1.5rem;
    border-radius: 30px;
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer p {
    margin: 0;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.92rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 720ms ease forwards;
}

.delay-1 {
    animation-delay: 80ms;
}

.delay-2 {
    animation-delay: 180ms;
}

.delay-3 {
    animation-delay: 280ms;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .job-grid,
    .sector-grid,
    .support-grid,
    .contact-grid,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .topbar-inner,
    .section-heading,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .filters,
    .timeline-row,
    .trust-strip,
    .metrics,
    .job-grid,
    .sector-grid,
    .support-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-panel,
    .opportunity-shell,
    .section-card,
    .support-card,
    .contact-card,
    .site-footer,
    .cta-band {
        border-radius: 22px;
    }

    .hero-copy {
        padding: 1.4rem;
    }

    .hero-copy h1 {
        max-width: 12ch;
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .timeline-step {
        min-height: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fade-in,
    .delay-1,
    .delay-2,
    .delay-3 {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .nav-cta,
    .button,
    .button-secondary {
        transition: none;
    }
}