/* JeFa Group AB — site styles
   Palette (brief): text #1C2D4A · CTA/accent/hover #FF9900 · light bg #E9EAEB / #F7F7F7 · white base */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --navy: #1C2D4A;
  --orange: #FF9900;
  --orange-hover: #E88A00;
  --grey-1: #F7F7F7;
  --grey-2: #E9EAEB;
  --white: #FFFFFF;
  --text: #1C2D4A;
  --muted: rgba(28, 45, 74, 0.74);
  --faint: rgba(28, 45, 74, 0.5);
  --line: #E9EAEB;
  --font-head: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --container: 1160px;
  --narrow: 760px;
  --gutter: 24px;
  --header-h: 76px;
  --radius: 10px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); margin: 0; letter-spacing: -0.02em; line-height: 1.12; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); line-height: 1.06; letter-spacing: -0.028em; }
h2 { font-size: clamp(1.85rem, 3.1vw, 2.6rem); }
h3 { font-size: 1.28rem; letter-spacing: -0.012em; line-height: 1.3; }
.lead { font-size: clamp(1.12rem, 1.5vw, 1.32rem); line-height: 1.55; color: var(--navy); font-weight: 500; }
.muted { color: var(--muted); }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 14px; border-radius: 6px; z-index: 100; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: var(--narrow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 901px) {
  .site-header { background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}
.site-header .container { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.02em; color: var(--navy); }
.brand .brand-mark-img { height: 50px; width: auto; }
.brand .brand-word { height: 20px; width: auto; }
.site-footer .brand .brand-mark-img { height: 56px; }
.site-footer .brand .brand-word { height: 22px; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-list a { position: relative; font-size: 0.95rem; font-weight: 500; color: var(--navy); padding: 6px 0; transition: color .2s var(--ease); }
.nav-list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); forced-color-adjust: none; }
.nav-list a:hover { color: var(--orange); }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.lang { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.06em; }
.lang a { color: var(--faint); padding: 4px 2px; transition: color .2s var(--ease); }
.lang a:hover { color: var(--orange); }
.lang a[aria-current="true"] { color: var(--navy); }
.lang .sep { color: var(--grey-2); font-weight: 400; }
.lang-mobile { display: none; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--navy); }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-block; text-align: left;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1.25;
  padding: 16px 26px; border-radius: 8px; border: 1.5px solid transparent;
  cursor: pointer; transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  forced-color-adjust: none; -webkit-appearance: none; appearance: none;
}
.btn-primary { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border-color: rgba(28, 45, 74, 0.28); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn .arrow { display: inline-block; margin-left: 8px; transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); transition: color .2s var(--ease); }
.link-arrow .arrow { transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--orange); }
.link-arrow:hover .arrow { transform: translateX(3px); }
.on-dark .link-arrow { color: #fff; }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-tight { padding: clamp(56px, 7vw, 96px) 0; }
.bg-grey { background: var(--grey-1); }
.bg-grey-2 { background: var(--grey-2); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .muted { color: rgba(255, 255, 255, 0.78); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { font-weight: 400; color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); forced-color-adjust: none; }

/* ---------- Hero ---------- */
.hero { background: var(--grey-1); padding: clamp(84px, 11vw, 160px) 0 clamp(72px, 9vw, 128px); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--grey-2) 0%, var(--grey-1) 42%, var(--grey-1) 100%); opacity: 0.7; pointer-events: none; }
.hero::after { content: ""; position: absolute; right: -12vw; top: -18vw; width: 62vw; height: 62vw; max-width: 900px; max-height: 900px; border-radius: 50%; background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0) 72%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-rule { display: block; width: 44px; height: 3px; background: var(--orange); margin-bottom: 30px; forced-color-adjust: none; }
.hero-inner { max-width: 820px; }
.hero h1 { margin-bottom: 28px; max-width: 17ch; }
.hero .lead { margin-bottom: 20px; max-width: 34ch; }
.hero .intro { color: var(--muted); max-width: 60ch; margin-bottom: 40px; font-size: 1.06rem; }
.page-hero { background: var(--grey-1); padding: clamp(72px, 9vw, 128px) 0 clamp(56px, 7vw, 96px); }
.page-hero h1 { font-size: clamp(2.2rem, 4.3vw, 3.4rem); margin-bottom: 22px; max-width: 16ch; }
.page-hero .lead { max-width: 62ch; font-weight: 400; color: var(--muted); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px 26px; min-height: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); forced-color-adjust: none; }
.card:hover { border-color: rgba(28, 45, 74, 0.22); box-shadow: 0 10px 28px rgba(28, 45, 74, 0.06); }
.card:hover::before { transform: scaleX(1); }
.card .num { font-family: var(--font-head); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.1em; color: var(--orange); forced-color-adjust: none; }
.card h3 { font-size: 1.16rem; }
.card p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.card .link-arrow { font-size: 0.95rem; margin-top: 6px; }
.card:hover .link-arrow { color: var(--orange); }
.card:hover .link-arrow .arrow { transform: translateX(3px); }
.section-cta { margin-top: clamp(36px, 5vw, 56px); }

/* ---------- OSEG ---------- */
.oseg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; counter-reset: oseg; }
.oseg::before { content: ""; position: absolute; left: 24px; right: 24px; top: 24px; height: 2px; background: var(--grey-2); }
.oseg li { position: relative; padding-top: 0; }
.oseg-mark {
  position: relative; z-index: 1;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  margin-bottom: 22px; box-shadow: 0 0 0 6px var(--white);
  forced-color-adjust: none;
}
.bg-grey .oseg-mark { box-shadow: 0 0 0 6px var(--grey-1); }
.oseg-label { font-family: var(--font-head); font-weight: 800; font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.oseg-label::after { content: ""; display: block; width: 28px; height: 2px; background: var(--orange); margin-top: 10px; forced-color-adjust: none; }
.oseg p { color: var(--muted); font-size: 0.98rem; }
.oseg-large .oseg-mark { width: 60px; height: 60px; font-size: 1.3rem; }
.oseg-large::before { top: 30px; }
.oseg-large .oseg-label { font-size: 0.92rem; }
.oseg-large p { font-size: 1.02rem; }
.oseg-large .oseg-lead { display: block; color: var(--navy); font-weight: 500; margin-bottom: 6px; }

/* ---------- Two-column blocks ---------- */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.split h2 { margin-bottom: 20px; }
.split .cta-row { margin-top: 28px; }
.split p { color: var(--muted); }

/* photo placeholder (neutral, replaced when real photo arrives) */
.photo-frame { width: 100%; max-width: 440px; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; background: var(--grey-2); position: relative; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame.is-placeholder { display: grid; place-items: center; border: 1px dashed rgba(28, 45, 74, 0.25); }
.photo-frame.is-placeholder span { font-size: 0.85rem; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 16px; }

/* ---------- Services page ---------- */
.service { padding: clamp(56px, 7vw, 96px) 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 16px); }
.service:first-of-type { border-top: 0; }
.service-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.service h2 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); margin-bottom: 18px; }
.service p { color: var(--muted); max-width: 60ch; }
.support-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.support { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.support li { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--navy); display: flex; gap: 12px; align-items: baseline; }
.support li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; transform: translateY(-2px); forced-color-adjust: none; }

/* continuum (flexible way of working) */
.continuum { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 8px; }
.continuum::before { content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 2px; background: linear-gradient(90deg, var(--grey-2), var(--orange)); forced-color-adjust: none; }
.continuum li { position: relative; padding: 32px 24px 0 0; }
.continuum li::before { content: ""; position: absolute; left: 0; top: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 2px solid var(--navy); forced-color-adjust: none; }
.continuum li:last-child::before { background: var(--orange); border-color: var(--orange); }
.continuum .step { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--navy); }
.continuum .step-n { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.continuum li::after { content: "→"; position: absolute; right: 16px; top: 58px; color: var(--faint); font-size: 1.1rem; }
.continuum li:last-child::after { content: none; }

/* ---------- Partnerships ---------- */
.partners { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 22px; }
.partner p { color: var(--muted); flex: 1; }
.logo-box { height: 72px; display: flex; align-items: center; }
.logo-box img { max-height: 56px; width: auto; max-width: 240px; }
.logo-box.is-placeholder { border: 1px dashed rgba(28, 45, 74, 0.25); border-radius: 6px; padding: 0 18px; width: max-content; max-width: 100%; }
.logo-box.is-placeholder span { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--navy); letter-spacing: -0.01em; }
.partner-teaser { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.partner-teaser .logo-box { flex: none; }

/* ---------- About page ---------- */
.timeline { position: relative; padding-left: 0; }
.tl-item { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); position: relative; }
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-year { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1rem; letter-spacing: 0.01em; display: flex; gap: 14px; align-items: baseline; }
.tl-year::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex: none; transform: translateY(-1px); forced-color-adjust: none; }
.tl-roles { display: flex; flex-direction: column; gap: 14px; }
.tl-role .title { display: block; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.08rem; line-height: 1.3; }
.tl-role .org { display: block; color: var(--muted); font-size: 0.98rem; margin-top: 2px; }
.edu { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; }
.edu li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.edu .deg { font-weight: 600; color: var(--navy); }
.edu .inst { color: var(--muted); font-size: 0.96rem; }
.cv-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: clamp(28px, 4vw, 40px); background: var(--grey-1); border-radius: var(--radius); }
.cv-row p { color: var(--navy); font-weight: 500; font-size: 1.08rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-card { display: flex; flex-direction: column; gap: 6px; }
.contact-card .name { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--navy); }
.contact-card .org { color: var(--muted); margin-bottom: 22px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; padding: 14px 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .k { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact-list a { font-weight: 600; color: var(--navy); transition: color .2s var(--ease); }
.contact-list a:hover { color: var(--orange); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.field label .opt { font-weight: 400; color: var(--faint); }
.field input, .field textarea {
  font: inherit; color: var(--navy); background: var(--white);
  border: 1px solid rgba(28, 45, 74, 0.28); border-radius: 8px;
  padding: 14px 16px; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  color-scheme: light; forced-color-adjust: none;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2); }
.form-footer { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.form-footer .gdpr { font-size: 0.86rem; color: var(--muted); max-width: 60ch; }
.form-status { grid-column: 1 / -1; padding: 14px 16px; border-radius: 8px; font-size: 0.95rem; display: none; }
.form-status.ok { display: block; background: rgba(28, 45, 74, 0.06); color: var(--navy); }
.form-status.err { display: block; background: rgba(255, 153, 0, 0.14); color: var(--navy); }
.btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }

/* ---------- Final CTA ---------- */
.cta-band { padding: clamp(72px, 9vw, 120px) 0; }
.cta-band .container { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: 40px; align-items: center; }
.cta-band h2 { margin-bottom: 14px; max-width: 20ch; }
.cta-band p { max-width: 48ch; }
.cta-band .cta-side { display: flex; justify-content: flex-end; }
.cta-band.center .container { display: block; text-align: center; }
.cta-band.center h2 { margin: 0 auto 28px; max-width: 26ch; }
.oseg-eyebrow { margin-bottom: 44px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 36px; background: var(--white); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-grid .brand { margin-bottom: 14px; }
.footer-grid .muted { max-width: 34ch; }
.footer-title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--navy); transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 0.88rem; }

/* ---------- Privacy policy / prose ---------- */
.page-hero .updated { margin-top: 18px; font-size: 0.9rem; color: var(--faint); }
.prose { max-width: var(--narrow); }
.prose-section { padding: 28px 0; border-top: 1px solid var(--line); }
.prose-section:first-child { border-top: 0; padding-top: 0; }
.prose h2 { font-size: 1.3rem; margin-bottom: 12px; }
.prose p { color: var(--muted); }
.prose a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(28, 45, 74, 0.3); text-underline-offset: 3px; transition: color .2s var(--ease); }
.prose a:hover { color: var(--orange); }
.footer-policy { color: var(--navy); transition: color .2s var(--ease); }
.footer-policy:hover { color: var(--orange); }
.gdpr a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.gdpr a:hover { color: var(--orange); }

/* ---------- Reveal (driven by JS + rAF; no CSS animations) ---------- */
.reveal { will-change: opacity, transform; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .oseg { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .oseg::before { display: none; }
}
@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .nav-toggle { display: block; }
  .lang-mobile { display: flex; margin-left: auto; margin-right: 4px; }
  .nav .lang { display: none; }
  .nav { position: absolute; left: 0; right: 0; top: var(--header-h); background: var(--white); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 20px; display: none; box-shadow: 0 20px 40px rgba(28, 45, 74, 0.08); }
  .nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { display: block; padding: 14px var(--gutter); font-size: 1.05rem; }
  .nav-list a::after { display: none; }
  .nav-list a[aria-current="page"] { color: var(--orange); }
  .nav .lang { padding: 14px var(--gutter) 0; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .photo-frame { order: -1; }
  .service-grid { grid-template-columns: 1fr; gap: 28px; }
  .partners { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band .cta-side { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .edu { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --gutter: 16px; }
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .oseg { grid-template-columns: 1fr; gap: 0; }
  .oseg li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding-bottom: 32px; }
  .oseg li::before { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: var(--grey-2); }
  .oseg li:last-child::before { display: none; }
  .oseg li:last-child { padding-bottom: 0; }
  .oseg-mark { margin-bottom: 0; }
  .oseg-large li { grid-template-columns: 56px 1fr; }
  .oseg-large .oseg-mark { width: 56px; height: 56px; }
  .oseg-large li::before { left: 27px; top: 56px; }
  .oseg-body { padding-top: 10px; }
  .continuum { grid-template-columns: 1fr; padding-left: 28px; }
  .continuum::before { left: 7px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--grey-2), var(--orange)); }
  .continuum li { padding: 0 0 28px 0; }
  .continuum li::before { left: -28px; top: 4px; }
  .continuum li::after { content: none; }
  .continuum li:last-child { padding-bottom: 0; }
  .tl-item { grid-template-columns: 1fr; gap: 10px; }
  .form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero h1 { max-width: none; }
}
