:root {
 --navy: #001e3d;
 --navy-deep: #001029;
 --navy-soft: #12355f;
 --orange: #fc6b04;
 --orange-deep: #e05a00;
 --orange-soft: #ff8533;
 --white: #ffffff;
 --paper: #f6f7f9;
 --ink: #001e3d;
 --muted: #5b6675;
 --line: rgba(0, 30, 61, 0.12);
 --max: 1120px;
 --ease: cubic-bezier(0.22, 1, 0.36, 1);
 --font-sans: "Manrope", "Segoe UI", sans-serif;
 --font-display: "Instrument Serif", Georgia, serif;
}

*,
*::before,
*::after {
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 margin: 0;
 font-family: var(--font-sans);
 color: var(--ink);
 background: var(--white);
 line-height: 1.6;
 -webkit-font-smoothing: antialiased;
}

img {
 max-width: 100%;
 height: auto;
 display: block;
}

a {
 color: inherit;
 text-decoration: none;
}

h1,
h2,
h3 {
 font-family: var(--font-display);
 font-weight: 400;
 line-height: 1.15;
 letter-spacing: -0.02em;
 margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

p {
 margin: 0 0 1em;
 color: var(--muted);
}

.skip-link {
 position: absolute;
 left: -999px;
 top: 0;
 background: var(--navy);
 color: var(--white);
 padding: 0.75rem 1rem;
 z-index: 1000;
}

.skip-link:focus {
 left: 1rem;
 top: 1rem;
}

.eyebrow {
 margin: 0 0 0.75rem;
 font-family: var(--font-sans);
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--orange);
}

.section {
 padding: clamp(4.5rem, 8vw, 7rem) 1.5rem;
}

.section--soft {
 background: var(--paper);
}

.section__inner {
 max-width: var(--max);
 margin: 0 auto;
}

.section__header {
 max-width: 36rem;
 margin-bottom: 3rem;
}

.section__header--row {
 max-width: none;
 display: flex;
 align-items: end;
 justify-content: space-between;
 gap: 1.5rem;
 flex-wrap: wrap;
}

.content-narrow {
 max-width: 720px;
}

.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 3rem;
 padding: 0.85rem 1.4rem;
 border: 1px solid transparent;
 font-family: var(--font-sans);
 font-size: 0.95rem;
 font-weight: 600;
 letter-spacing: 0.01em;
 transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
 transform: translateY(-2px);
}

.btn--primary {
 background: var(--orange);
 color: var(--white);
}

.btn--primary:hover {
 background: var(--orange-deep);
}

.btn--ghost {
 background: transparent;
 border-color: var(--navy);
 color: var(--navy);
}

.btn--ghost:hover {
 background: var(--navy);
 color: var(--white);
}

.btn--light {
 background: rgba(255, 255, 255, 0.12);
 border-color: rgba(255, 255, 255, 0.55);
 color: var(--white);
 backdrop-filter: blur(6px);
}

.btn--light:hover {
 background: var(--white);
 color: var(--navy);
}

.text-link {
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
 margin-top: 1.25rem;
 font-weight: 600;
 color: var(--orange-deep);
}

.text-link::after {
 content: "→";
 transition: transform 0.35s var(--ease);
}

.audience__item:hover .text-link::after,
.vacancy-row:hover .vacancy-row__arrow {
 transform: translateX(4px);
}

/* Header */
.site-header {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 z-index: 50;
 padding: 1.25rem 1.5rem;
}

.site-header__inner {
 max-width: var(--max);
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1.5rem;
}

.brand__logo,
.custom-logo {
 width: auto;
 height: 64px;
}

.site-nav {
 display: none;
 align-items: center;
 gap: 1.75rem;
}

.nav-list {
 display: flex;
 gap: 1.5rem;
 list-style: none;
 margin: 0;
 padding: 0;
}

.nav-list a {
 color: rgba(255, 255, 255, 0.9);
 font-size: 0.95rem;
 font-weight: 500;
}

.nav-list a:hover {
 color: var(--white);
}

.site-header .btn--ghost {
 border-color: rgba(255, 255, 255, 0.65);
 color: var(--white);
}

.site-header .btn--ghost:hover {
 background: var(--white);
 color: var(--navy);
}

.nav-toggle {
 width: 2.75rem;
 height: 2.75rem;
 border: 1px solid rgba(255, 255, 255, 0.45);
 background: transparent;
 display: inline-flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 5px;
 cursor: pointer;
}

.nav-toggle span {
 width: 1.1rem;
 height: 1.5px;
 background: var(--white);
 transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
 transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
 opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
 transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
 margin-top: 1rem;
 padding: 1.25rem;
 background: rgba(0, 16, 41, 0.94);
 backdrop-filter: blur(10px);
 display: grid;
 gap: 1.25rem;
}

.mobile-nav[hidden] {
 display: none;
}

.nav-list--mobile {
 flex-direction: column;
 gap: 1rem;
}

@media (min-width: 900px) {
 .site-nav { display: flex; }
 .nav-toggle,
 .mobile-nav { display: none !important; }
}

/* Hero */
.hero {
 position: relative;
 min-height: 100svh;
 display: grid;
 align-items: end;
 overflow: hidden;
 color: var(--white);
}

.hero__media,
.hero__overlay {
 position: absolute;
 inset: 0;
 pointer-events: none;
}

.hero__media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 30%;
 transform: scale(1.06);
 animation: hero-zoom 18s var(--ease) forwards;
}

.hero__overlay {
 background:
 linear-gradient(180deg, rgba(0, 16, 41, 0.55) 0%, rgba(0, 16, 41, 0.32) 42%, rgba(0, 16, 41, 0.82) 100%),
 linear-gradient(115deg, rgba(252, 107, 4, 0.22) 0%, transparent 42%),
 linear-gradient(90deg, rgba(0, 30, 61, 0.62) 0%, rgba(0, 30, 61, 0.18) 55%, rgba(0, 30, 61, 0.4) 100%);
}

.hero__content {
 position: relative;
 z-index: 1;
 max-width: var(--max);
 width: 100%;
 margin: 0 auto;
 padding: 8rem 1.5rem 4.5rem;
}

.hero__brand {
 width: min(200px, 52vw);
 height: auto;
 margin-bottom: 1.5rem;
}

.hero__title {
 max-width: 14ch;
 color: var(--white);
 margin-bottom: 0.85rem;
}

.hero__lead {
 max-width: 36rem;
 color: rgba(255, 255, 255, 0.86);
 font-size: 1.05rem;
 margin-bottom: 1.75rem;
}

.hero__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.85rem;
}

@keyframes hero-zoom {
 from { transform: scale(1.06); }
 to { transform: scale(1); }
}

/* Audience */
.audience__grid {
 display: grid;
 gap: 0;
}

.audience__item {
 display: block;
 padding: 2.25rem 0;
 border-top: 1px solid var(--line);
 transition: background 0.35s var(--ease);
}

.audience__item:last-child {
 border-bottom: 1px solid var(--line);
}

.audience__item h2 {
 max-width: 16ch;
 margin-bottom: 0.9rem;
}

.audience__item p {
 max-width: 40rem;
}

.audience__item:hover {
 background: linear-gradient(90deg, rgba(0, 29, 61, 0.03), transparent);
}

@media (min-width: 900px) {
 .audience__grid {
 grid-template-columns: 1fr 1fr;
 gap: 0 4rem;
 }

 .audience__item {
 padding: 2.5rem 0;
 border-top: none;
 border-bottom: none;
 }

 .audience__item:first-child {
 border-right: 1px solid var(--line);
 padding-right: 3rem;
 }

 .audience__item:last-child {
 padding-left: 1rem;
 }
}

/* Process */
.process__list {
 list-style: none;
 margin: 0;
 padding: 0;
 display: grid;
 gap: 2.5rem;
}

.process__num {
 display: block;
 margin-bottom: 0.65rem;
 font-size: 0.8rem;
 font-weight: 700;
 letter-spacing: 0.08em;
 color: var(--orange);
}

.process__item h3 {
 margin-bottom: 0.65rem;
}

.process__item p {
 margin: 0;
 max-width: 28rem;
}

@media (min-width: 900px) {
 .process__list {
 grid-template-columns: repeat(4, 1fr);
 gap: 0;
 }

 .process__item {
 padding: 0 1.5rem;
 }

 .process__item:not(:first-child) {
 border-left: 1px solid var(--line);
 }

 .process__item:first-child {
 padding-left: 0;
 }

 .process__item:last-child {
 padding-right: 0;
 }
}

/* Vacancies */
.vacancy-list {
 list-style: none;
 margin: 0;
 padding: 0;
}

.vacancy-row {
 display: grid;
 gap: 1rem;
 padding: 1.75rem 0;
 border-top: 1px solid var(--line);
 align-items: center;
}

.vacancy-list li:last-child .vacancy-row {
 border-bottom: 1px solid var(--line);
}

.vacancy-row h2,
.vacancy-row h3 {
 margin-bottom: 0.35rem;
 font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.vacancy-row p {
 margin: 0;
 max-width: 42rem;
}

.vacancy-row__meta {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem 1.25rem;
 color: var(--muted);
 font-size: 0.92rem;
}

.vacancy-row__arrow {
 font-size: 1.4rem;
 color: var(--navy);
 transition: transform 0.35s var(--ease);
 justify-self: start;
}

@media (min-width: 800px) {
 .vacancy-row {
 grid-template-columns: 1fr auto auto;
 gap: 2rem;
 }

 .vacancy-row__arrow {
 justify-self: end;
 }
}

.empty-state {
 padding: 2rem 0;
 border-top: 1px solid var(--line);
}

/* CTA */
.cta-band {
 background:
 radial-gradient(circle at 12% 18%, rgba(252, 107, 4, 0.28), transparent 38%),
 radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.06), transparent 32%),
 linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, var(--navy-soft));
 color: var(--white);
 padding: clamp(4.5rem, 8vw, 6.5rem) 1.5rem;
}

.cta-band__inner {
 max-width: 40rem;
}

.cta-band h2 {
 color: var(--white);
}

.cta-band p {
 color: rgba(255, 255, 255, 0.82);
 margin-bottom: 1.75rem;
}

.cta-band .btn--primary {
 background: var(--orange);
 color: var(--white);
}

.cta-band .btn--primary:hover {
 background: var(--orange-soft);
 color: var(--white);
}

/* Footer */
.site-footer {
 background: var(--white);
 border-top: 1px solid var(--line);
 padding: 4rem 1.5rem 1.5rem;
}

.site-footer__inner {
 max-width: var(--max);
 margin: 0 auto 3rem;
 display: grid;
 gap: 2.5rem;
}

.site-footer__brand img {
 width: 150px;
 height: auto;
 margin-bottom: 1rem;
}

.site-footer__brand p,
.site-footer a {
 color: var(--muted);
}

.site-footer .btn--primary,
.site-footer .btn--primary:hover {
 color: var(--white);
}

.footer-list {
 list-style: none;
 margin: 0;
 padding: 0;
 display: grid;
 gap: 0.65rem;
}

.site-footer__contact {
 display: grid;
 gap: 0.85rem;
 justify-items: start;
}

.site-footer .contact-details--footer {
 margin: 0 0 0.5rem;
 gap: 0.9rem;
}

.site-footer .contact-details--footer dt {
 color: var(--navy);
}

.site-footer .contact-details--footer dd,
.site-footer .contact-details--footer a {
 color: var(--muted);
}

.site-footer .contact-details--footer a:hover {
 color: var(--navy);
}

.site-footer__bar {
 max-width: var(--max);
 margin: 0 auto;
 padding-top: 1.25rem;
 border-top: 1px solid var(--line);
 font-size: 0.85rem;
 color: var(--muted);
}

@media (min-width: 800px) {
 .site-footer__inner {
 grid-template-columns: 1.4fr 1fr 1fr;
 gap: 3rem;
 }
}

/* Reveal motion: only hide when JS is active, so pages stay readable without JS */
html.js [data-reveal] {
 opacity: 0;
 transform: translateY(22px);
 transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

html.js [data-reveal].is-visible {
 opacity: 1;
 transform: none;
}

html.js [data-reveal-delay="1"] { transition-delay: 0.1s; }
html.js [data-reveal-delay="2"] { transition-delay: 0.2s; }
html.js [data-reveal-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
 .hero__media img { animation: none; transform: none; }
 html.js [data-reveal] {
 opacity: 1;
 transform: none;
 transition: none;
 }
 .btn:hover { transform: none; }
}

/* Solid header (inner pages) */
.site-header--solid {
 position: sticky;
 top: 0;
 background: rgba(255, 255, 255, 0.96);
 border-bottom: 1px solid var(--line);
 backdrop-filter: blur(10px);
}

.site-header--solid .nav-list a {
 color: var(--navy);
}

.site-header--solid .nav-list a:hover {
 color: var(--orange-deep);
}

.site-header--solid .btn--ghost {
 border-color: var(--navy);
 color: var(--navy);
}

.site-header--solid .btn--ghost:hover {
 background: var(--navy);
 color: var(--white);
}

.site-header--solid .nav-toggle {
 border-color: var(--line);
}

.site-header--solid .nav-toggle span {
 background: var(--navy);
}

.site-header--solid .mobile-nav {
 background: var(--white);
 border: 1px solid var(--line);
}

.site-header--solid .nav-list--mobile a {
 color: var(--navy);
}

/* Page intro */
.page-intro {
 padding-top: clamp(3rem, 6vw, 4.5rem);
 padding-bottom: 0;
}

.page-intro .section__header {
 margin-bottom: 1.5rem;
}

.page-intro .section__header p:last-child {
 max-width: 36rem;
}

/* Contact layout */
.contact {
 padding-top: clamp(2.5rem, 5vw, 4rem);
}

.contact__grid {
 display: grid;
 gap: 3.5rem;
}

.contact__forms {
 display: grid;
 gap: 3rem;
}

.form-block h2 {
 margin-bottom: 0.4rem;
}

.form-block > p {
 margin-bottom: 1.75rem;
 max-width: 36rem;
}

.contact__aside {
 padding-top: 0.25rem;
}

.contact__aside h2 {
 margin-bottom: 0.75rem;
}

.contact-details {
 margin: 1.75rem 0 1.75rem;
 display: grid;
 gap: 1.25rem;
}

.contact-details dt {
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--navy);
 margin-bottom: 0.25rem;
}

.contact-details dd {
 margin: 0;
 color: var(--muted);
}

.contact-details a {
 color: var(--navy);
 font-weight: 500;
}

.contact-details a:hover {
 text-decoration: underline;
}

@media (min-width: 900px) {
 .contact__grid {
 grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.7fr);
 gap: 4.5rem;
 align-items: start;
 }

 .contact__aside {
 position: sticky;
 top: 6.5rem;
 padding-left: 2rem;
 border-left: 1px solid var(--line);
 }
}

/* Forms */
.dk-form {
 display: grid;
 gap: 1.25rem;
 max-width: 36rem;
}

.dk-form__row {
 display: grid;
 gap: 0.45rem;
 margin: 0;
 padding: 0;
 border: 0;
}

.dk-form label,
.dk-form legend {
 font-size: 0.92rem;
 font-weight: 600;
 color: var(--navy);
}

.label-optional {
 font-weight: 400;
 color: var(--muted);
}

.dk-form input[type="text"],
.dk-form input[type="email"],
.dk-form input[type="tel"],
.dk-form select,
.dk-form textarea,
.dk-form input[type="file"] {
 width: 100%;
 font: inherit;
 color: var(--ink);
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: 0;
 padding: 0.85rem 0.95rem;
 transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.dk-form textarea {
 resize: vertical;
 min-height: 9rem;
}

.dk-form input:focus,
.dk-form select:focus,
.dk-form textarea:focus {
 outline: none;
 border-color: var(--orange);
 box-shadow: 0 0 0 3px rgba(252, 107, 4, 0.16);
}

.dk-form input[type="file"] {
 padding: 0.75rem;
 background: var(--paper);
}

.field-hint {
 font-size: 0.85rem;
 color: var(--muted);
}

.dk-form__choices {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem;
}

.choice {
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
 min-height: 2.75rem;
 padding: 0.55rem 0.95rem;
 border: 1px solid var(--line);
 cursor: pointer;
 font-weight: 500;
 color: var(--navy);
 transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.choice:has(input:checked) {
 border-color: var(--orange);
 background: rgba(252, 107, 4, 0.06);
}

.choice input {
 accent-color: var(--orange);
}

.form-notice {
 max-width: 40rem;
 margin: 0 0 0.5rem;
 padding: 0.95rem 1.1rem;
 border: 1px solid var(--line);
 font-weight: 500;
}

.form-notice--ok {
 border-color: rgba(0, 29, 61, 0.25);
 background: rgba(0, 29, 61, 0.04);
 color: var(--navy);
}

.form-notice--error {
 border-color: rgba(140, 40, 40, 0.35);
 background: rgba(140, 40, 40, 0.05);
 color: #6b1f1f;
}

/* Check lists (SEO / conversie) */
.check-list {
 margin: 1rem 0 1.5rem;
 padding: 0;
 list-style: none;
 display: grid;
 gap: 0.55rem;
 color: var(--muted);
}

.check-list li {
 position: relative;
 padding-left: 1.5rem;
}

.check-list li::before {
 content: "✓";
 position: absolute;
 left: 0;
 color: var(--orange);
 font-weight: 700;
}

.audience__item h3 {
 margin-top: 1.5rem;
 margin-bottom: 0.75rem;
 font-size: 1.15rem;
 font-family: var(--font-sans);
 font-weight: 700;
 letter-spacing: 0;
}

.content-narrow a {
 color: var(--navy);
 font-weight: 600;
 text-decoration: underline;
 text-underline-offset: 0.15em;
}

/* Services */
.service-list {
 display: grid;
 gap: 0;
}

.service-item {
 padding: 2.25rem 0;
 border-top: 1px solid var(--line);
}

.service-item:last-child {
 border-bottom: 1px solid var(--line);
}

.service-item h2 {
 margin-bottom: 0.75rem;
 max-width: 18ch;
}

.service-item p {
 margin: 0;
 max-width: 40rem;
}

@media (min-width: 900px) {
 .service-list {
 grid-template-columns: 1fr 1fr;
 gap: 0 4rem;
 }

 .service-item {
 border-top: none;
 border-bottom: 1px solid var(--line);
 padding: 2.5rem 0;
 }

 .service-item:nth-child(odd) {
 padding-right: 2rem;
 }

 .service-item:nth-child(even) {
 padding-left: 2rem;
 border-left: 1px solid var(--line);
 }
}

/* Detail pages */
.detail-meta {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem 1.25rem;
 margin-top: 1.25rem;
 color: var(--muted);
 font-size: 0.95rem;
}

.detail-meta .eyebrow a,
.page-intro .eyebrow a {
 color: var(--navy);
}

.detail-layout {
 display: grid;
 gap: 3rem;
}

.detail-body {
 max-width: 42rem;
}

.entry-content > *:first-child {
 margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
 margin-top: 2rem;
}

.entry-content ul,
.entry-content ol {
 color: var(--muted);
 padding-left: 1.25rem;
}

.entry-content li + li {
 margin-top: 0.4rem;
}

.detail-aside {
 display: grid;
 gap: 1rem;
 align-content: start;
 justify-items: start;
 padding-top: 0.25rem;
}

.detail-aside h2 {
 margin-bottom: 0;
 font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.detail-aside p {
 margin: 0;
}

.detail-aside .btn {
 width: 100%;
 max-width: 20rem;
}

@media (min-width: 900px) {
 .detail-layout {
 grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.7fr);
 gap: 4rem;
 align-items: start;
 }

 .detail-aside {
 position: sticky;
 top: 6.5rem;
 padding-left: 2rem;
 border-left: 1px solid var(--line);
 }
}

/* Non-link audience blocks on about page */
.audience__item:not(a) {
 cursor: default;
}

.audience__item:not(a):hover {
 background: transparent;
}
