/* ==========================================================================
   Workers Without Borders — design system
   Palette sampled from the printed company presentation.
   ========================================================================== */

:root {
	/* Brand */
	--ink:          #14222D;
	--ink-2:        #0A212F;
	--navy:         #1C3054;
	--navy-2:       #103056;
	--blue:         #1074AF;
	--azure:        #0CA3DC;
	--azure-lt:     #4FC3F0;
	--magenta:      #9D005D;
	--sand:         #EBEBEA;
	--paper:        #FFFFFF;

	/* Text */
	--text:         #1B2A36;
	--text-muted:   #5A6B7A;
	--text-on-dark: #E7EEF5;
	--text-on-dark-muted: rgba(231, 238, 245, .72);

	/* Surfaces */
	--surface:      #FFFFFF;
	--surface-alt:  #F5F8FB;
	--line:         #E2E9F0;
	--line-dark:    rgba(255, 255, 255, .14);

	/* Gradients */
	--grad-brand:   linear-gradient(135deg, var(--ink) 0%, var(--navy) 45%, var(--blue) 100%);
	--grad-accent:  linear-gradient(135deg, var(--blue) 0%, var(--azure) 100%);
	--grad-tab:     linear-gradient(120deg, var(--blue) 0%, var(--azure) 100%);

	/* Type */
	--font-head: "Montserrat", "Segoe UI", system-ui, sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	/* Space & shape */
	--shell:      1200px;
	--gutter:     clamp(1.25rem, 4vw, 2.5rem);
	--section-y:  clamp(4rem, 8vw, 7.5rem);
	--radius:     14px;
	--radius-lg:  22px;

	--shadow-sm:  0 2px 10px rgba(20, 34, 45, .06);
	--shadow:     0 12px 32px rgba(20, 34, 45, .09);
	--shadow-lg:  0 24px 60px rgba(20, 34, 45, .16);

	--header-h:   84px;
}

/* --------------------------------------------------------------- Reset ---- */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
	line-height: 1.65;
	color: var(--text);
	background: var(--paper);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
	font-family: var(--font-head);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.015em;
	margin: 0 0 .6em;
	color: var(--ink);
	text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--azure); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; cursor: pointer; }

:focus-visible {
	outline: 3px solid var(--azure);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: .75rem 1.25rem;
	background: var(--ink);
	color: #fff;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* -------------------------------------------------------------- Layout ---- */

.shell {
	width: min(100% - (var(--gutter) * 2), var(--shell));
	margin-inline: auto;
}

.section {
	position: relative;
	padding-block: var(--section-y);
}

.section--services,
.section--why,
.section--partners,
.section--mvv,
.section--service-blocks { background: var(--surface-alt); }

.section__actions {
	display: flex;
	justify-content: center;
	margin-top: clamp(2rem, 4vw, 3rem);
}

/* Column counts are fixed at the wide breakpoints so six- and eight-item
   sections never leave an orphan cell dangling on the last row. */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--5 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

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

/* ------------------------------------------------------------ Section head - */

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }

.section-title {
	font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);
	margin-bottom: .5em;
}
.section-title--sm { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); }
.section-title em { font-style: normal; color: var(--blue); }

.section-lead {
	font-size: clamp(1.02rem, .98rem + .25vw, 1.15rem);
	color: var(--text-muted);
	margin: 0;
}

.is-light .section-title { color: #fff; }
.is-light .section-lead { color: var(--text-on-dark-muted); }

/* The angled tab from the brochure. */
.tab-label {
	display: inline-block;
	margin-bottom: 1.1rem;
	padding: .5rem 1.6rem .5rem 1.1rem;
	background: var(--grad-tab);
	color: #fff;
	font-family: var(--font-head);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

/* -------------------------------------------------------------- Buttons ---- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;      /* keeps the label centred when a button stretches */
	gap: .6rem;
	padding: .95rem 1.6rem;
	border: 2px solid transparent;
	border-radius: 999px;
	/* The 2px transparent border keeps every variant the same height. Any
	   gradient fill must be painted `border-box` (see .btn--primary) or it is
	   sized to the padding box and tiles into that ring as a mismatched edge. */
	font-family: var(--font-head);
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1;
	text-align: center;
	transform-origin: center;
	/* No will-change here: promoting the button to its own compositing layer
	   rasterises a visible seam against the shadow. Transform transitions are
	   composited fine without it. */
	transition:
		transform .28s cubic-bezier(.34, 1.42, .64, 1),
		box-shadow .28s ease,
		background .2s ease,
		color .2s ease,
		border-color .2s ease;
}

/* Grow on hover, press in on click — the press is quick so it feels physical. */
.btn:hover,
.btn:focus-visible { transform: scale(1.045); }
.btn:active { transform: scale(.965); transition-duration: .08s; }

.btn--sm { padding: .7rem 1.2rem; font-size: .85rem; }
.btn--sm:hover, .btn--sm:focus-visible { transform: scale(1.06); }

.btn__icon {
	width: 18px; height: 18px;
	flex: none;
	transition: transform .28s cubic-bezier(.34, 1.42, .64, 1);
}
.btn:hover .btn__icon { transform: translateX(4px); }
.btn:active .btn__icon { transform: translateX(1px); }

.btn--primary {
	/* `border-box` sets both background-origin and -clip: the gradient spans the
	   full border box in one continuous sweep, with no tiled sliver at the edge. */
	background: var(--grad-accent) border-box;
	color: #fff;
	box-shadow: 0 10px 24px rgba(16, 116, 175, .3);
}
.btn--primary:hover { color: #fff; box-shadow: 0 16px 32px rgba(16, 116, 175, .38); }

.btn--ghost {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .55);
	color: #fff;
	backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.btn--outline {
	border-color: var(--blue);
	color: var(--blue);
	background: transparent;
}
.btn--outline:hover { background: var(--blue); color: #fff; }

.btn--light {
	background: #fff;
	color: var(--navy);
	box-shadow: var(--shadow);
}
.btn--light:hover { color: var(--blue); }

/* --------------------------------------------------------------- Header ---- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: transparent;
	transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
	border-bottom: 1px solid transparent;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: var(--header-h);
}

.brand { display: block; flex: none; }
.brand__mark { width: clamp(150px, 18vw, 200px); height: auto; }
.brand__mark--dark { display: none; }

/* Solid header once scrolled, or on any page with a light hero. */
.site-header.is-stuck {
	background: rgba(255, 255, 255, .94);
	backdrop-filter: saturate(160%) blur(12px);
	border-bottom-color: var(--line);
	box-shadow: var(--shadow-sm);
}
.site-header.is-stuck .brand__mark--dark { display: block; }
.site-header.is-stuck .brand__mark--light { display: none; }
.site-header.is-stuck .nav__link { color: var(--text); }
.site-header.is-stuck .nav__link.is-current { color: var(--blue); }
.site-header.is-stuck .langs { border-color: var(--line); }
.site-header.is-stuck .langs__item { color: var(--text-muted); }
.site-header.is-stuck .langs__item.is-current { background: var(--blue); color: #fff; }
.site-header.is-stuck .burger span { background: var(--ink); }

.nav {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.5rem);
	margin-left: auto;
}

.nav__list { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.75rem); }

.nav__link {
	position: relative;
	display: block;
	padding: .4rem 0;
	color: rgba(255, 255, 255, .92);
	font-family: var(--font-head);
	font-size: .92rem;
	font-weight: 600;
	white-space: nowrap;
}
.nav__link::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--azure);
	transition: width .2s ease;
}
.nav__link:hover::after,
.nav__link.is-current::after { width: 100%; }
.nav__link.is-current { color: #fff; }

.nav__tail { display: flex; align-items: center; gap: 1rem; }

.langs {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
}
.langs__item {
	padding: .3rem .6rem;
	border-radius: 999px;
	color: rgba(255, 255, 255, .82);
	font-family: var(--font-head);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .06em;
	transition: background .18s ease, color .18s ease;
}
.langs__item:hover { color: #fff; background: rgba(255, 255, 255, .14); }
.langs__item.is-current { background: #fff; color: var(--navy); }

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px; height: 44px;
	padding: 0;
	background: none;
	border: 0;
}
.burger span {
	display: block;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------- Hero ---- */

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(92vh, 820px);
	margin-top: calc(var(--header-h) * -1);
	padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
	padding-bottom: clamp(6rem, 12vw, 10rem);
	overflow: hidden;
	isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(105deg, rgba(10, 33, 47, .95) 0%, rgba(20, 34, 45, .88) 42%, rgba(16, 48, 86, .62) 72%, rgba(12, 163, 220, .32) 100%);
}

.hero__inner { position: relative; max-width: 62ch; color: #fff; }

.hero__eyebrow {
	margin-bottom: 1.25rem;
	color: var(--azure-lt);
	font-family: var(--font-head);
	font-size: clamp(.78rem, .74rem + .2vw, .88rem);
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hero__title {
	font-size: clamp(2.1rem, 1.3rem + 3.6vw, 4rem);
	color: #fff;
	margin-bottom: .5em;
}
.hero__title em {
	font-style: normal;
	background: linear-gradient(100deg, var(--azure-lt), var(--azure));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__lead {
	max-width: 56ch;
	font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem);
	color: rgba(255, 255, 255, .88);
	margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }

.hero__note {
	font-size: .88rem;
	color: rgba(255, 255, 255, .68);
	letter-spacing: .01em;
}

/* Curved dividers. */
.wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: clamp(50px, 7vw, 110px);
	pointer-events: none;
}
.wave--bottom { bottom: -1px; }
.wave--top { top: -1px; transform: rotate(180deg); }

/* ---------------------------------------------------------------- Stats ---- */

.stats-strip {
	margin-top: calc(clamp(2rem, 5vw, 4rem) * -1);
	position: relative;
	z-index: 2;
}

.stats {
	display: grid;
	/* 4 across on desktop, 2×2 on phones — never a stranded empty cell. */
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .35rem;
	padding: clamp(1.5rem, 3vw, 2.25rem) 1rem;
	background: #fff;
	text-align: center;
}

.stats__value {
	font-family: var(--font-head);
	font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem);
	font-weight: 800;
	line-height: 1;
	background: var(--grad-accent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.stats__label {
	font-size: .86rem;
	color: var(--text-muted);
	letter-spacing: .02em;
}

@media (min-width: 760px) {
	.stats { grid-template-columns: repeat(4, 1fr); }
}

/* ---------------------------------------------------------------- Cards ---- */

.card {
	position: relative;
	padding: clamp(1.5rem, 2.5vw, 2rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	overflow: hidden;
}
.card::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 3px;
	background: var(--grad-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }

.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	margin-bottom: 1.1rem;
	border-radius: 14px;
	background: rgba(12, 163, 220, .1);
	color: var(--blue);
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--accent { background: var(--grad-accent); color: #fff; }
.card__icon--magenta { background: rgba(157, 0, 93, .09); color: var(--magenta); }

.card__title { font-size: 1.12rem; margin-bottom: .5em; }
.card__text { color: var(--text-muted); font-size: .96rem; margin: 0; }

.card--problem .card__icon { background: rgba(157, 0, 93, .08); color: var(--magenta); }

/* ---------------------------------------------------------------- Split ---- */

.split {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: clamp(2rem, 5vw, 4.5rem);
}
.split--wide { grid-template-columns: 1.25fr .75fr; }

.split__media {
	position: relative;
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(12, 163, 220, .12), rgba(20, 34, 45, .12));
	pointer-events: none;
}

.lead-text { font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem); color: var(--text-muted); }

.slogan {
	margin-top: 1.5rem;
	font-family: var(--font-head);
	font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem);
	font-weight: 700;
	font-style: italic;
	color: var(--blue);
}

/* ---------------------------------------------------------------- Ticks ---- */

.ticks { display: grid; gap: .85rem; margin: 1.75rem 0 2rem; }
.ticks--tight { gap: .6rem; margin-bottom: 0; }

.ticks__item, .notes__item {
	display: grid;
	grid-template-columns: 24px 1fr;
	align-items: start;
	gap: .75rem;
	font-size: .98rem;
}

.icon--tick {
	width: 22px; height: 22px;
	padding: 4px;
	border-radius: 50%;
	background: rgba(12, 163, 220, .12);
	color: var(--blue);
	stroke-width: 2.4;
}
.icon--sm { width: 18px; height: 18px; }

/* ----------------------------------------------------------- Industries ---- */

.industries {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.industries__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .85rem;
	padding: clamp(1.5rem, 3vw, 2.25rem) 1rem;
	background: #fff;
	text-align: center;
	font-family: var(--font-head);
	font-size: .95rem;
	font-weight: 600;
	color: var(--ink);
	transition: background .2s ease, color .2s ease;
}
.industries__item:hover { background: var(--grad-accent); color: #fff; }
.industries__icon { width: 30px; height: 30px; color: var(--blue); transition: color .2s ease; }
.industries__item:hover .industries__icon { color: #fff; }

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

/* ---------------------------------------------------------------- Reach ---- */

.section--reach {
	position: relative;
	background: var(--ink);
	color: var(--text-on-dark);
	isolation: isolate;
	overflow: hidden;
}
.reach__bg { position: absolute; inset: 0; z-index: -2; }
.reach__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.section--reach::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(120deg, rgba(10, 33, 47, .95) 0%, rgba(20, 34, 45, .82) 55%, rgba(16, 48, 86, .78) 100%);
}

.reach__text { max-width: 70ch; color: var(--text-on-dark-muted); margin-bottom: 2.5rem; }

.regions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.region {
	padding: clamp(1.35rem, 2.5vw, 1.75rem);
	background: rgba(255, 255, 255, .05);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
}

.region__name {
	display: flex;
	align-items: center;
	gap: .55rem;
	font-size: 1.05rem;
	color: #fff;
	margin-bottom: 1rem;
}
.region__name .icon { color: var(--azure); }

.region__list { display: flex; flex-wrap: wrap; gap: .45rem; }

.chip {
	padding: .32rem .75rem;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 999px;
	font-size: .82rem;
	color: rgba(255, 255, 255, .88);
	background: rgba(255, 255, 255, .04);
}

.notes { display: grid; gap: .85rem; max-width: 90ch; }
.notes__item { color: var(--text-on-dark-muted); font-size: .95rem; }
.notes .icon--tick { background: rgba(12, 163, 220, .2); color: var(--azure-lt); }

/* ------------------------------------------------------------ Companies ---- */

.company {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(1.75rem, 2.5vw, 2.25rem) clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 2.5vw, 2rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}
.company::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: var(--grad-accent);
}
.company__name { font-size: 1.1rem; margin-bottom: .25em; }
.company__role {
	margin-bottom: 1.25rem;
	color: var(--blue);
	font-family: var(--font-head);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
/* Homepage variant: identity only, detail lives on the inner pages. */
.company--compact { align-items: flex-start; text-align: left; }
.company--compact .company__role { margin-bottom: 1.5rem; }
.company__count {
	display: flex;
	align-items: baseline;
	gap: .5rem;
	margin: auto 0 0;
	font-family: var(--font-head);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	background: var(--grad-accent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.company__count span {
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--text-muted);
	-webkit-text-fill-color: var(--text-muted);
}

.company__list { display: grid; gap: .7rem; }
.company__list li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: .7rem;
	font-size: .93rem;
	color: var(--text-muted);
}

/* --------------------------------------------------------------- Events ---- */

.events {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: start;
	gap: clamp(2rem, 5vw, 4rem);
}

.events__media {
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: sticky;
	top: calc(var(--header-h) + 2rem);
}
.events__media img { width: 100%; object-fit: cover; }

.highlight {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.1rem;
	padding: clamp(1.35rem, 2.5vw, 1.85rem);
	margin-bottom: 2rem;
	background: var(--grad-brand);
	border-radius: var(--radius);
	color: #fff;
	box-shadow: var(--shadow);
}
.highlight__icon { width: 34px; height: 34px; color: var(--azure-lt); }
.highlight__title { font-size: 1.05rem; color: #fff; margin-bottom: .4em; }
.highlight__text { font-size: .93rem; color: rgba(255, 255, 255, .82); margin: 0; }

.timeline { display: grid; gap: 0; border-left: 2px solid var(--line); padding-left: 1.5rem; }
.timeline__item {
	position: relative;
	display: grid;
	gap: .35rem;
	padding: 0 0 1.75rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
	content: "";
	position: absolute;
	left: calc(-1.5rem - 7px);
	top: .45rem;
	width: 12px; height: 12px;
	border-radius: 50%;
	background: var(--azure);
	box-shadow: 0 0 0 4px rgba(12, 163, 220, .16);
}
.timeline__year {
	font-family: var(--font-head);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
}
.timeline__title { font-size: 1rem; margin-bottom: .2em; }
.timeline__text { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* Quiet supporting block — used for the reputation note and the FAQ footer. */
.note-block {
	margin-top: 2rem;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	background: var(--surface-alt);
	border-left: 3px solid var(--azure);
	border-radius: 0 var(--radius) var(--radius) 0;
}
.note-block__title {
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: .6rem;
}
.note-block p { color: var(--text-muted); font-size: .95rem; margin: 0; }
.note-block--wide { margin-top: clamp(2rem, 4vw, 3rem); }
.note-block--wide .btn { margin-top: 1.25rem; }

/* Homepage events: full width, no sidebar. Highlight banner → cards → closing. */
.highlight--wide {
	max-width: 100%;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
	padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
}
.highlight--wide .highlight__icon { width: 42px; height: 42px; }
.highlight--wide .highlight__title { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); }

.event-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.event-card {
	position: relative;
	padding: clamp(1.4rem, 2.5vw, 1.85rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.event-card__year {
	display: inline-block;
	margin-bottom: .75rem;
	padding: .28rem .7rem;
	border-radius: 999px;
	background: rgba(12, 163, 220, .1);
	font-family: var(--font-head);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--blue);
}
.event-card__title { font-size: 1.05rem; margin-bottom: .4em; }
.event-card__text { font-size: .93rem; color: var(--text-muted); margin: 0; }

.events__closing {
	max-width: 78ch;
	margin: clamp(2.5rem, 5vw, 4rem) auto 0;
	text-align: center;
}
.events__closing-title {
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: .9rem;
}
.events__closing-text { color: var(--text-muted); }

.events__closing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(1.25rem, 3vw, 2.5rem);
	margin-top: clamp(1.75rem, 3vw, 2.5rem);
	padding-top: clamp(1.75rem, 3vw, 2.5rem);
	border-top: 1px solid var(--line);
	text-align: left;
}
.events__closing-grid p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ------------------------------------------------------------- Partners ---- */

.partners__subtitle {
	margin: clamp(2rem, 4vw, 3rem) 0 1.5rem;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text-muted);
	text-align: center;
}

.logo-wall {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.logo-wall__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	padding: 1.5rem;
	background: #fff;
}
.logo-wall__item img {
	max-height: 56px;
	width: auto;
	filter: grayscale(1);
	opacity: .68;
	transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.logo-wall__item:hover img { filter: none; opacity: 1; transform: scale(1.04); }

.logo-wall__item--placeholder {
	background:
		repeating-linear-gradient(135deg, #fff 0 10px, #FAFCFE 10px 20px);
}
.logo-wall__item--placeholder::after {
	content: "";
	width: 96px; height: 28px;
	border: 2px dashed var(--line);
	border-radius: 6px;
}

.clients {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.clients__name {
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: .9rem;
}

.clients__list { display: flex; flex-wrap: wrap; gap: .45rem; }

.clients__chip {
	padding: .38rem .8rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: .85rem;
	color: var(--text);
	transition: border-color .2s ease, color .2s ease;
}
.clients__chip:hover { border-color: var(--azure); color: var(--blue); }

.partners__note {
	margin-top: 2rem;
	font-size: .85rem;
	color: var(--text-muted);
	text-align: center;
}

/* ------------------------------------------------------------------ FAQ ---- */

.faq {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.faq__intro .section-head { margin-bottom: 1.5rem; }

.accordion {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
}
.accordion__item + .accordion__item { border-top: 1px solid var(--line); }
.accordion__heading { margin: 0; font-size: inherit; }

.accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1.15rem clamp(1rem, 2vw, 1.5rem);
	background: none;
	border: 0;
	text-align: left;
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	transition: background .2s ease, color .2s ease;
}
.accordion__trigger:hover { background: var(--surface-alt); color: var(--blue); }
.accordion__trigger[aria-expanded="true"] { color: var(--blue); }

.accordion__sign {
	position: relative;
	flex: none;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(12, 163, 220, .12);
}
.accordion__sign::before,
.accordion__sign::after {
	content: "";
	position: absolute;
	left: 50%; top: 50%;
	width: 10px; height: 2px;
	background: var(--blue);
	transform: translate(-50%, -50%);
	transition: transform .25s ease;
}
.accordion__sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__trigger[aria-expanded="true"] .accordion__sign::after { transform: translate(-50%, -50%) rotate(0); }

.accordion__panel { overflow: hidden; }
.accordion__body {
	padding: 0 clamp(1rem, 2vw, 1.5rem) 1.35rem;
	color: var(--text-muted);
	font-size: .96rem;
}

/* ------------------------------------------------------------------ CTA ---- */

.section--cta {
	background: var(--grad-brand);
	color: #fff;
	overflow: hidden;
}
.section--cta::before {
	content: "";
	position: absolute;
	left: -10%; bottom: -60%;
	width: 50vw; height: 140%;
	background: radial-gradient(closest-side, rgba(157, 0, 93, .3), transparent);
	pointer-events: none;
}

.cta {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
}
.cta__title { font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem); color: #fff; }
.cta__lead { color: rgba(255, 255, 255, .82); margin: 0; max-width: 52ch; }

.cta__actions { display: grid; gap: 1rem; justify-items: start; }
.cta__phone { display: grid; gap: .15rem; margin: 0; font-size: .92rem; color: rgba(255, 255, 255, .7); }
.cta__phone a { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.cta__phone a:hover { color: var(--azure-lt); }

/* ------------------------------------------------------------- Page hero --- */

.page-hero {
	position: relative;
	margin-top: calc(var(--header-h) * -1);
	padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 6.5rem));
	padding-bottom: clamp(5rem, 10vw, 8rem);
	background: var(--ink);
	color: #fff;
	isolation: isolate;
	overflow: hidden;
}
.page-hero--slim { padding-bottom: clamp(4rem, 8vw, 6.5rem); }

.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(110deg, rgba(10, 33, 47, .95) 0%, rgba(20, 34, 45, .9) 45%, rgba(16, 116, 175, .58) 100%);
}

.page-hero__inner { max-width: 64ch; }
.page-hero__title { font-size: clamp(1.9rem, 1.3rem + 2.8vw, 3.1rem); color: #fff; }
.page-hero__lead { color: rgba(255, 255, 255, .85); font-size: clamp(1rem, .96rem + .35vw, 1.15rem); margin: 0; }

/* -------------------------------------------------------- Service blocks --- */

.service-blocks { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }

.service-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	padding: clamp(1.6rem, 3vw, 2.5rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: box-shadow .25s ease;
}
.service-block:hover { box-shadow: var(--shadow); }

/* Blocks that are a bare service list run full width instead of two columns. */
.service-block--nolead { grid-template-columns: 1fr; }
.service-block__head { display: flex; align-items: flex-start; gap: 1.1rem; grid-column: 1 / -1; }

.service-block__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px; height: 58px;
	flex: none;
	border-radius: 16px;
	background: var(--grad-accent);
	color: #fff;
}
.service-block__icon svg { width: 28px; height: 28px; }

.service-block__index {
	display: block;
	font-family: var(--font-head);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--azure);
}
.service-block__title { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); margin: .15em 0 0; }
.service-block__text { color: var(--text-muted); margin: 0; }


/* ---------------------------------------------------------------- About ---- */

.mvv {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.mvv__item {
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}
.mvv__item p { color: var(--text-muted); margin: 0; }

.values__grid { margin-top: 1.5rem; }

.value {
	padding: clamp(1.25rem, 2vw, 1.6rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-align: center;
}
.value__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	margin-bottom: .85rem;
	border-radius: 50%;
	background: var(--grad-accent);
	color: #fff;
}
.value__title { font-size: 1rem; margin-bottom: .35em; }
.value__text { font-size: .88rem; color: var(--text-muted); margin: 0; }

.team {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.member {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.25rem;
	padding: clamp(1.5rem, 2.5vw, 2rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

.member__avatar {
	display: grid;
	place-items: center;
	width: 72px; height: 72px;
	border-radius: 50%;
	background: var(--grad-brand);
	color: #fff;
	font-family: var(--font-head);
	font-size: 1.9rem;
	font-weight: 800;
}

.member__name { font-size: 1.15rem; margin-bottom: .15em; }
.member__role { color: var(--blue); font-weight: 600; font-size: .92rem; margin-bottom: .15em; }
.member__extra { color: var(--text-muted); font-size: .86rem; margin-bottom: .75rem; }
.member__text { color: var(--text-muted); font-size: .94rem; margin-bottom: .9rem; }
.member__phone {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .95rem;
}

.section--closing { padding-block: clamp(3rem, 6vw, 5rem); background: var(--surface-alt); }
.closing { max-width: 70ch; margin-inline: auto; text-align: center; }
.closing__text { color: var(--text-muted); font-size: 1.05rem; }
.closing__claim {
	margin: 1.25rem 0 0;
	font-family: var(--font-head);
	font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
	font-weight: 800;
	color: var(--navy);
}

/* ------------------------------------------------------------- FAQ page ---- */

.faq-page {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.faq-page__nav {
	position: sticky;
	top: calc(var(--header-h) + 1.5rem);
	padding: 1.25rem;
	background: var(--surface-alt);
	border-radius: var(--radius);
}
.faq-page__nav ul { display: grid; gap: .35rem; }
.faq-page__nav a {
	display: block;
	padding: .55rem .75rem;
	border-radius: 8px;
	font-size: .92rem;
	font-weight: 500;
	color: var(--text);
	transition: background .18s ease, color .18s ease;
}
.faq-page__nav a:hover { background: #fff; color: var(--blue); }

.faq-group + .faq-group { margin-top: clamp(2rem, 4vw, 3rem); }
.faq-group__title {
	font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem);
	margin-bottom: 1.1rem;
	padding-bottom: .6rem;
	border-bottom: 2px solid var(--line);
}

/* -------------------------------------------------------------- Contact ---- */

.contact {
	display: grid;
	grid-template-columns: 1.4fr .6fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}
.contact__title { font-size: clamp(1.35rem, 1.15rem + .8vw, 1.75rem); margin-bottom: 1.5rem; }

.contact__aside { display: grid; gap: 1rem; }

.info-card {
	padding: clamp(1.25rem, 2vw, 1.6rem);
	background: var(--surface-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.info-card__title {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: .85rem;
}
.info-card__title .icon { color: var(--blue); }
.info-card__list { display: grid; gap: .65rem; }
.info-card__list a { font-family: var(--font-head); font-weight: 600; }
.info-card__list small { display: block; font-size: .8rem; color: var(--text-muted); line-height: 1.4; }

.map {
	position: relative;
	margin-top: 1.5rem;
	aspect-ratio: 16 / 7;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--surface-alt);
	border: 1px solid var(--line);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: .85rem;
	padding: 2rem;
	text-align: center;
}
.map__icon { width: 34px; height: 34px; color: var(--blue); }
.map__placeholder p { max-width: 46ch; font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ----------------------------------------------------------------- Form ---- */

.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__notice {
	padding: .95rem 1.15rem;
	margin-bottom: 1.5rem;
	border-radius: 10px;
	border-left: 4px solid;
	font-size: .95rem;
}
.form__notice--sent { background: rgba(12, 163, 220, .08); border-color: var(--azure); }
.form__notice--invalid,
.form__notice--error { background: rgba(157, 0, 93, .07); border-color: var(--magenta); }

.form__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.1rem;
}

.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }

.field__label {
	font-family: var(--font-head);
	font-size: .82rem;
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: .02em;
}

.field__input {
	width: 100%;
	padding: .85rem 1rem;
	font: inherit;
	font-size: .98rem;
	color: var(--text);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.field__input:focus {
	outline: none;
	border-color: var(--azure);
	box-shadow: 0 0 0 4px rgba(12, 163, 220, .14);
}
textarea.field__input { resize: vertical; min-height: 140px; }

select.field__input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6B7A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.75rem;
}

.field--check {
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: .7rem;
	font-size: .88rem;
	color: var(--text-muted);
}
.field--check input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--blue); }

.form__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.75rem;
}
.form__hint { font-size: .84rem; color: var(--text-muted); }

/* --------------------------------------------------------------- Footer ---- */

.site-footer {
	position: relative;
	padding-top: clamp(3rem, 6vw, 5rem);
	background: var(--ink);
	color: var(--text-on-dark);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr .7fr 1fr 1.1fr;
	gap: clamp(1.75rem, 4vw, 3rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__logo { width: 190px; margin-bottom: 1.25rem; }
.site-footer__about { font-size: .93rem; color: var(--text-on-dark-muted); }
.site-footer__slogan {
	margin-top: 1rem;
	font-family: var(--font-head);
	font-style: italic;
	font-weight: 600;
	color: var(--azure-lt);
	font-size: .95rem;
}

.site-footer__title {
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 1.1rem;
}

.site-footer__list { display: grid; gap: .6rem; font-size: .93rem; }
.site-footer__list a { color: var(--text-on-dark-muted); }
.site-footer__list a:hover { color: var(--azure-lt); }
.site-footer__list--plain li { color: var(--text-on-dark-muted); }

.site-footer__list--contact a,
.site-footer__static {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: .65rem;
	align-items: start;
	color: var(--text-on-dark-muted);
}
.site-footer__list--contact .icon { color: var(--azure); margin-top: .2rem; }
.site-footer__list--contact small { display: block; font-size: .8rem; opacity: .7; }

.site-footer__bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1.5rem;
	border-top: 1px solid var(--line-dark);
	font-size: .85rem;
	color: rgba(231, 238, 245, .6);
}
.site-footer__bar p { margin: 0; }
.site-footer__credit a { color: inherit; }

.to-top {
	position: fixed;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 3vw, 2rem);
	z-index: 90;
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--grad-accent);
	color: #fff;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top.is-visible:hover,
.to-top.is-visible:focus-visible { transform: scale(1.12); }
.to-top.is-visible:active { transform: scale(.94); transition-duration: .08s; }

/* ---------------------------------------------------------- Reveal anim ---- */

/* Scoped to .js so content is never hidden when scripts fail to run. */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ Responsive --- */

@media (max-width: 1024px) {
	.faq-page { grid-template-columns: 1fr; }
	.faq-page__nav { position: static; }
	.faq-page__nav ul { display: flex; flex-wrap: wrap; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.contact { grid-template-columns: 1fr; }
	.events__media { position: static; }
}

@media (max-width: 900px) {
	:root { --header-h: 72px; }

	.burger { display: flex; }

	.nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(88vw, 380px);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 2rem;
		padding: calc(var(--header-h) + 2rem) 1.75rem 2rem;
		background: var(--ink);
		box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
		transform: translateX(100%);
		transition: transform .3s cubic-bezier(.4, 0, .2, 1);
		overflow-y: auto;
	}
	.nav.is-open { transform: none; }

	.nav__list { flex-direction: column; align-items: stretch; gap: .25rem; }
	.nav__link {
		padding: .85rem 0;
		font-size: 1.05rem;
		color: #fff;
		border-bottom: 1px solid var(--line-dark);
	}
	.nav__link::after { display: none; }
	.nav__link.is-current { color: var(--azure-lt); }

	.nav__tail { flex-direction: column; align-items: stretch; gap: 1.25rem; }
	.langs { justify-content: center; border-color: var(--line-dark); }
	.langs__item { flex: 1; text-align: center; color: #fff; }
	.nav__cta { justify-content: center; }

	.site-header.is-stuck .nav__link { color: #fff; }
	.site-header.is-stuck .langs__item { color: #fff; }
	.site-header.is-stuck .langs__item.is-current { background: #fff; color: var(--navy); }

	body.nav-open { overflow: hidden; }
	body.nav-open::after {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 99;
		background: rgba(10, 33, 47, .5);
		backdrop-filter: blur(2px);
	}

	.split, .split--wide, .events, .faq, .cta, .service-block { grid-template-columns: 1fr; }
	.split__media, .events__media { order: -1; }
	.timeline { padding-left: 1.25rem; }
}

@media (max-width: 640px) {
	.site-footer__grid { grid-template-columns: 1fr; }
	.stats-strip { margin-top: calc(clamp(1.5rem, 4vw, 3rem) * -1); }
	.hero { min-height: auto; }
	.section-head { margin-bottom: 2rem; }
	.member { grid-template-columns: 1fr; }
	.member__avatar { width: 56px; height: 56px; font-size: 1.4rem; }
	.form__actions { flex-direction: column; align-items: stretch; }
	/* Full-width buttons are a deliberate phone pattern — but only on phones. */
	.cta__actions { justify-items: stretch; }
	.hero__actions .btn { flex: 1 1 100%; }
}

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

	/* No scale/press feedback when motion is unwelcome — colour still responds. */
	.btn:hover, .btn:focus-visible, .btn:active,
	.btn:hover .btn__icon, .btn:active .btn__icon,
	.to-top.is-visible:hover, .to-top.is-visible:active { transform: none; }
}

/* ------------------------------------------------------------------ Print -- */

@media print {
	.site-header, .to-top, .section--cta, .map { display: none; }
	body { color: #000; }
}
