:root {
    --orange: #f36f21;
    --orange-dark: #d95712;
    --amber: #ff9b18;
    --ink: #17212b;
    --ink-soft: #263442;
    --cream: #f8f3eb;
    --warm: #fff6ea;
    --paper: #fffdf9;
    --line: #dfd8ce;
    --muted: #61707a;
    --white: #fff;
    --max: 1200px;
    --radius: 2px;
    --shadow: 0 24px 70px rgba(23, 33, 43, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.7; }
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 5vw, 4.4rem); }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-ink { color: var(--white); background: var(--ink); }
.section-warm { background: var(--warm); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; color: white; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; color: var(--orange-dark); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 32px; height: 2px; content: ""; background: currentColor; }
.eyebrow.light { color: #ffb55c; }

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: 94px; color: white; transition: background .25s, box-shadow .25s, height .25s; }
.site-header.scrolled { height: 80px; color: var(--ink); background: rgba(255,253,249,.96); box-shadow: 0 8px 35px rgba(23,33,43,.08); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { display: grid; width: 100px; height: 76px; place-items: center; overflow: visible; transition: height .25s; }
.brand img { width: 76px; height: 72px; object-fit: contain; }
.scrolled .brand { height: 68px; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a { position: relative; font-size: .88rem; font-weight: 600; text-decoration: none; }
.site-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -5px; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.55); }
.scrolled .nav-cta { color: white; border-color: var(--orange); background: var(--orange); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 820px; height: 100svh; max-height: 980px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,25,33,.98) 0%, rgba(16,25,33,.88) 32%, rgba(16,25,33,.22) 65%, rgba(16,25,33,.08)), url("assets/images/brand/hero-recruitment-2026.png") center/cover; }
.hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(10,17,24,.25), transparent 40%, rgba(10,17,24,.4)); }
.hero-grid { position: relative; z-index: 1; display: grid; min-height: inherit; align-items: center; grid-template-columns: 1fr 1fr; }
.hero-copy { max-width: 710px; padding-top: 72px; }
.hero h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(3.6rem, 7.4vw, 7.2rem); font-weight: 700; letter-spacing: -.065em; }
.hero h1 span { color: #ffab3d; }
.hero-lead { max-width: 610px; margin-bottom: 35px; color: #e6e7e4; font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 54px; padding: 0 24px; align-items: center; justify-content: center; gap: 28px; border: 1px solid transparent; border-radius: var(--radius); font-weight: 700; text-decoration: none; transition: transform .2s, background .2s, color .2s, border .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.button-ghost { color: white; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.button-ghost:hover { color: var(--ink); background: white; }
.button-light { color: var(--ink); background: white; }
.button-ink { color: white; background: var(--ink); }
.hero-proof { display: flex; gap: 42px; margin-top: 64px; }
.hero-proof div { display: flex; padding-left: 16px; flex-direction: column; border-left: 1px solid rgba(255,255,255,.3); }
.hero-proof strong { color: #ffb052; font-family: "Manrope", sans-serif; font-size: 1.18rem; }
.hero-proof span { color: #bfc5c9; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; }
.scroll-cue { position: absolute; z-index: 2; right: 40px; bottom: 36px; display: flex; align-items: center; gap: 14px; color: white; font-size: .73rem; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue i { width: 48px; height: 1px; background: var(--orange); }

.split-heading, .section-heading { display: grid; gap: 9%; align-items: end; grid-template-columns: 1.2fr .8fr; }
.intro-copy { padding-bottom: 12px; color: var(--muted); }
.intro-copy .large-copy { color: var(--ink); font-size: 1.35rem; line-height: 1.55; }
.text-link { display: inline-flex; margin-top: 8px; gap: 30px; color: var(--orange-dark); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--orange); }
.values-grid { display: grid; margin-top: 80px; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.value-card { position: relative; min-height: 330px; padding: 40px; border-right: 1px solid var(--line); background: var(--paper); }
.value-card:last-child { border: 0; }
.value-card.featured { color: white; background: var(--orange); transform: translateY(-18px); box-shadow: var(--shadow); }
.value-number { color: #9c9c98; font-size: .78rem; }
.featured .value-number { color: rgba(255,255,255,.7); }
.value-icon { margin: 48px 0 28px; color: var(--orange); font-size: 2.2rem; }
.featured .value-icon { color: white; }
.value-card h3 { margin-bottom: 14px; font-size: 1.35rem; }
.value-card p { color: var(--muted); line-height: 1.65; }
.featured p { color: rgba(255,255,255,.84); }

.section-heading { margin-bottom: 65px; }
.section-heading > p { max-width: 460px; margin-bottom: 24px; color: var(--muted); font-size: 1.05rem; }
.section-heading.inverse > p { color: #b8c0c6; }
.sector-list { border-top: 1px solid rgba(255,255,255,.16); }
.sector { display: grid; padding: 22px 8px; align-items: center; grid-template-columns: 80px 1fr auto; border-bottom: 1px solid rgba(255,255,255,.16); transition: color .2s, padding .2s, background .2s; }
.sector:hover { padding-inline: 22px; color: var(--ink); background: var(--orange); }
.sector span { color: #8c969f; font-size: .75rem; }
.sector:hover span { color: rgba(23,33,43,.65); }
.sector h3 { margin: 0; font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 500; letter-spacing: -.02em; }
.sector i { font-size: 1.5rem; font-style: normal; }
.role-strip { display: flex; margin-top: 54px; flex-wrap: wrap; gap: 12px; }
.role-strip span { padding: 7px 13px; color: #c7cdd1; border: 1px solid #44505a; border-radius: 999px; font-size: .76rem; }

.process { position: relative; display: grid; grid-template-columns: repeat(4,1fr); }
.process::before { position: absolute; top: 24px; right: 12.5%; left: 12.5%; height: 1px; content: ""; background: var(--line); }
.process article { position: relative; padding: 0 30px; text-align: center; }
.process article > span { position: relative; z-index: 1; display: grid; width: 49px; height: 49px; margin: 0 auto 34px; place-items: center; color: white; border-radius: 50%; background: var(--orange); font-size: .75rem; }
.process h3 { margin-bottom: 12px; font-size: 1.35rem; }
.process p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

.journey { display: grid; min-height: 720px; grid-template-columns: 1fr 1fr; }
.journey-image { min-height: 620px; overflow: hidden; }
.journey-image img { width: 100%; height: 100%; object-fit: cover; }
.candidate .journey-image img { object-position: 48% center; }
.employer .journey-image img { object-position: center; }
.journey-copy { display: flex; padding: clamp(56px, 8vw, 120px); align-items: flex-start; justify-content: center; flex-direction: column; background: var(--cream); }
.journey-copy h2 { max-width: 680px; font-size: clamp(2.4rem, 4.8vw, 4.6rem); }
.journey-copy > p:not(.eyebrow) { max-width: 620px; color: var(--muted); font-size: 1.05rem; }
.employer .journey-copy { color: white; background: var(--ink-soft); }
.employer .journey-copy > p:not(.eyebrow) { color: #bdc5ca; }
.check-list { margin: 20px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 9px 0; padding-left: 28px; color: var(--ink); }
.check-list li::before { position: absolute; left: 0; color: var(--orange); content: "✓"; font-weight: 800; }
.light-list li { color: #eef0f1; }

.story-grid { display: grid; gap: 9%; align-items: center; grid-template-columns: .7fr 1.3fr; }
.story-mark { position: relative; display: flex; height: 410px; align-items: flex-end; gap: 12px; justify-content: center; overflow: hidden; background: var(--cream); }
.story-mark span { width: 52px; border-radius: 60px 60px 0 0; background: linear-gradient(var(--amber), var(--orange)); transform: rotate(38deg); transform-origin: bottom; }
.story-mark span:nth-child(1) { height: 160px; }
.story-mark span:nth-child(2) { height: 250px; }
.story-mark span:nth-child(3) { height: 340px; }
.story-mark strong { position: absolute; top: 15px; right: 32px; color: rgba(243,111,33,.18); font: 12rem/1 Georgia, serif; }
blockquote { margin: 0 0 28px; font-family: "Manrope", sans-serif; font-size: clamp(2rem, 3.7vw, 3.5rem); font-weight: 600; line-height: 1.25; letter-spacing: -.045em; }
.story-grid > div:last-child > p:last-child { max-width: 700px; color: var(--muted); }

.contact-grid { display: grid; gap: 9%; grid-template-columns: .85fr 1.15fr; }
.contact-lead { max-width: 530px; color: var(--muted); font-size: 1.08rem; }
.contact-details { display: grid; margin-top: 48px; gap: 18px; }
.contact-details a, .contact-details p { display: grid; margin: 0; font-weight: 600; text-decoration: none; }
.contact-details span { color: var(--orange-dark); font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-form { padding: 42px; background: white; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
label { display: grid; margin-bottom: 18px; gap: 7px; color: var(--ink); font-size: .82rem; font-weight: 700; }
label > span { color: var(--orange-dark); }
input, textarea { width: 100%; padding: 13px 0; color: var(--ink); border: 0; border-bottom: 1px solid #bfc2c3; border-radius: 0; outline: 0; background: transparent; transition: border .2s; }
input:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 1px var(--orange); }
textarea { resize: vertical; }
.consent { display: flex; margin: 8px 0 24px; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 400; line-height: 1.45; }
.consent input { width: 16px; height: 16px; margin-top: 3px; }
.consent span { color: inherit; }

.site-footer { padding: 72px 0 26px; color: #cad0d4; background: #101820; }
.footer-grid { display: grid; gap: 56px; grid-template-columns: 2fr 1fr 1fr 1.4fr; }
.footer-grid h3 { margin-bottom: 18px; color: white; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a, .footer-grid > div > p { display: block; margin: 0 0 10px; color: #9fa9b0; font-size: .9rem; text-decoration: none; }
.footer-grid a:hover { color: #ffad50; }
.logo-card { display: grid; width: 118px; height: 118px; margin-bottom: 20px; place-items: center; }
.logo-card img { width: 105px; }
.footer-brand > p { color: white !important; }
.footer-bottom { display: flex; margin-top: 58px; padding-top: 24px; align-items: center; justify-content: space-between; border-top: 1px solid #34404a; font-size: .78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #ffad50; text-decoration: none; }

.profile-dialog { width: min(620px, calc(100% - 32px)); max-height: calc(100vh - 40px); padding: 42px; border: 0; color: var(--ink); background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.profile-dialog::backdrop { background: rgba(12,20,27,.82); backdrop-filter: blur(5px); }
.profile-dialog h2 { margin-bottom: 12px; font-size: 2.2rem; }
.profile-dialog > p:not(.eyebrow) { color: var(--muted); }
.profile-dialog form { margin-top: 24px; }
.dialog-close { position: absolute; top: 15px; right: 18px; width: 42px; height: 42px; border: 0; color: var(--ink); background: transparent; font-size: 2rem; }
.form-note { padding: 12px; color: var(--muted); background: var(--cream); font-size: .78rem; }

@media (max-width: 1000px) {
    .site-nav { position: fixed; top: 80px; right: 20px; left: 20px; display: none; padding: 24px; align-items: stretch; flex-direction: column; color: var(--ink); background: white; box-shadow: var(--shadow); }
    .site-nav.open { display: flex; }
    .menu-toggle { display: block; }
    .nav-cta { color: white; border-color: var(--orange); background: var(--orange); text-align: center; }
    .hero-media { background: linear-gradient(90deg, rgba(16,25,33,.96), rgba(16,25,33,.72) 65%, rgba(16,25,33,.38)), url("assets/images/brand/hero-recruitment-2026.png") 60% center/cover; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 680px; }
    .journey { min-height: 0; }
    .journey-copy { padding: 72px 48px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 32px), var(--max)); }
    .section { padding: 82px 0; }
    .site-header { height: 80px; }
    .brand { width: 84px; height: 70px; }
    .brand img { width: 66px; height: 65px; }
    .hero { min-height: 760px; height: auto; }
    .hero-copy { padding: 150px 0 100px; }
    .hero h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
    .hero-proof { gap: 20px; margin-top: 48px; flex-wrap: wrap; }
    .hero-proof div { min-width: 125px; }
    .scroll-cue { display: none; }
    .split-heading, .section-heading, .story-grid, .contact-grid { gap: 36px; grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { min-height: 275px; border-right: 0; border-bottom: 1px solid var(--line); }
    .value-card.featured { transform: none; }
    .value-icon { margin: 32px 0 20px; }
    .process { gap: 24px; grid-template-columns: 1fr 1fr; }
    .process::before { display: none; }
    .process article { padding: 0 12px; }
    .journey { grid-template-columns: 1fr; }
    .journey-image { min-height: 410px; }
    .journey-copy { padding: 64px 28px; }
    .employer .journey-image { order: -1; }
    .story-mark { height: 320px; }
    .contact-form { padding: 28px 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    h2 { font-size: 2.45rem; }
    .hero h1 { font-size: 3.55rem; }
    .hero-lead { font-size: 1rem; }
    .button-row, .button-row .button { width: 100%; }
    .process { grid-template-columns: 1fr; }
    .process article { text-align: left; }
    .process article > span { margin: 0 0 18px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-bottom { gap: 14px; align-items: flex-start; flex-direction: column; }
    .profile-dialog { padding: 34px 22px 26px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
