/* ==========================================================================
   NGTS — Next Generation for Technology Services
   Tokens mirror the NGTS design system (colors from the logo artwork).
   Logical properties throughout so an Arabic (RTL) version works as-is.
   ========================================================================== */

@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/montserrat-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/montserrat-latin-500-normal.woff2) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/montserrat-latin-600-normal.woff2) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/montserrat-latin-700-normal.woff2) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 800; font-display: swap; src: url(../fonts/montserrat-latin-800-normal.woff2) format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/open-sans-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: italic; font-weight: 400; font-display: swap; src: url(../fonts/open-sans-latin-400-italic.woff2) format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/open-sans-latin-600-normal.woff2) format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/open-sans-latin-700-normal.woff2) format("woff2"); }

:root {
	/* Brand (exact values from the NGTS logo) */
	--plum: #501C50;
	--magenta: #66205F;
	--violet: #4E2C76;
	--blue: #4E70B5;
	--navy: #395187;
	--lilac: #9B80BA;
	--lilac-100: #F3EEF7;
	--lilac-200: #E6DCEF;
	--blue-light: #AFC2EC;

	/* UI */
	--surface: #FFFFFF;
	--surface-alt: #F7F5F9;
	--deep: #22102A;
	--deep-2: #2E1638;
	--ink: #1D1523;
	--ink-muted: #5E5566;
	--line: #E3DCE8;
	--line-strong: #918799;
	--on-deep: #FFFFFF;
	--on-deep-muted: #CFC3DA;
	--success: #1F7A4D;
	--danger: #B3261E;

	--font-display: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
	--font-body: "Open Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

	--space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 24px;
	--space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px; --space-10: 112px;

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-pill: 999px;

	--shadow-card: 0 1px 2px rgba(29, 21, 35, .06), 0 10px 30px rgba(80, 28, 80, .08);
	--shadow-lift: 0 2px 4px rgba(29, 21, 35, .06), 0 22px 48px rgba(80, 28, 80, .16);

	--brand-gradient: linear-gradient(90deg, var(--violet), var(--magenta) 45%, var(--blue) 55%, var(--navy));
	--container: 1200px;
	--gutter: 24px;
	--header-h: 76px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
	margin: 0;
	background: var(--surface);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--plum); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--violet); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--plum); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--lilac-200); color: var(--plum); }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(820px + var(--gutter) * 2); }

.screen-reader-text, .form__hp {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; inset-inline-start: 16px; inset-block-start: -60px; z-index: 1000;
	background: var(--plum); color: #fff; padding: 10px 18px; border-radius: var(--radius-sm);
	font-family: var(--font-display); font-weight: 700; text-decoration: none; transition: top .2s;
}
.skip-link:focus { inset-block-start: 12px; color: #fff; }

.icon { width: 1.25em; height: 1.25em; flex: none; }
[dir="rtl"] .icon--arrow { transform: scaleX(-1); }

/* ---------- Type helpers ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	margin: 0 0 14px;
	font-family: var(--font-display); font-weight: 700; font-size: 13px; line-height: 1.2;
	letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--brand-gradient); }
.eyebrow--light { color: var(--blue-light); }
.section-title { font-size: clamp(28px, 3.3vw, 42px); font-weight: 800; line-height: 1.12; margin-bottom: 18px; }
.section-title--sm { font-size: clamp(24px, 2.4vw, 30px); margin-bottom: 24px; }
.section-title .accent, .page-hero__title .accent { color: var(--blue); }
.section-title--light { color: #fff; }
.section-title--light .accent { color: var(--blue-light); }
.lead { font-size: 19px; line-height: 1.6; color: var(--ink); }
.rounded { border-radius: var(--radius-lg); }

/* ---------- Buttons & links ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 50px; padding: 13px 26px;
	border: 1.5px solid transparent; border-radius: var(--radius-pill);
	font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.2;
	text-decoration: none; cursor: pointer;
	transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(3px); }
[dir="rtl"] .btn:hover .icon--arrow { transform: scaleX(-1) translateX(3px); }
.btn--primary { background: var(--plum); color: #fff; }
.btn--primary:hover { background: var(--violet); color: #fff; box-shadow: 0 8px 20px rgba(80, 28, 80, .25); }
.btn--light { background: #fff; color: var(--plum); }
.btn--light:hover { background: var(--lilac-100); color: var(--plum); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }
.btn--block { width: 100%; }

.link-arrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 700; font-size: 15px;
	color: var(--plum); text-decoration: none;
	padding-block-end: 4px; border-block-end: 2px solid var(--lilac-200);
	transition: border-color .2s, color .2s;
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover { border-color: var(--plum); }
.link-arrow:hover .icon--arrow { transform: translateX(3px); }
[dir="rtl"] .link-arrow:hover .icon--arrow { transform: scaleX(-1) translateX(3px); }
.link-arrow--light { color: #fff; border-color: rgba(255, 255, 255, .3); }
.link-arrow--light:hover { color: #fff; border-color: #fff; }

.tag {
	display: inline-flex; align-items: center; align-self: flex-start;
	padding: 5px 12px; border-radius: var(--radius-pill);
	background: var(--lilac-100); color: var(--plum);
	font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
	text-decoration: none;
}
.tag--light { background: rgba(255, 255, 255, .16); color: #fff; backdrop-filter: blur(4px); }
a.tag--light:hover { background: rgba(255, 255, 255, .26); color: #fff; }

/* ---------- Top bar & header ---------- */
.topbar { background: var(--deep); color: var(--on-deep-muted); font-size: 13px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: var(--on-deep-muted); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .icon { width: 16px; height: 16px; }
.topbar__contact, .topbar__social { display: flex; align-items: center; gap: 24px; }
.topbar__tag { font-family: var(--font-display); letter-spacing: .04em; }

.site-header {
	position: sticky; inset-block-start: 0; z-index: 100;
	background: rgba(255, 255, 255, .97);
	border-block-end: 1px solid var(--line);
	backdrop-filter: saturate(1.4) blur(10px);
	transition: box-shadow .25s var(--ease);
}
.admin-bar .site-header { inset-block-start: 32px; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(34, 16, 42, .08); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { height: 40px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.site-nav__list a {
	position: relative; display: block; padding: 10px 14px;
	font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); text-decoration: none;
}
.site-nav__list a::after {
	content: ""; position: absolute; inset-inline: 14px; inset-block-end: 2px; height: 3px; border-radius: 3px;
	background: var(--brand-gradient); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.site-nav__list a:hover { color: var(--plum); }
.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after,
.site-nav__list .current-menu-ancestor > a::after,
.site-nav__list .current-page-ancestor > a::after { transform: scaleX(1); }
.site-nav__list .current-menu-item > a, .site-nav__list .current_page_item > a { color: var(--plum); }
.site-nav__cta { min-height: 44px; padding: 10px 22px; }

.nav-toggle {
	display: none; align-items: center; justify-content: center;
	width: 46px; height: 46px; border: 1.5px solid var(--line); border-radius: 12px;
	background: #fff; color: var(--plum); cursor: pointer;
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-open .nav-toggle__open { display: none; }
.nav-open .nav-toggle__close { display: inline-flex; }

/* ---------- Sections ---------- */
.section { position: relative; padding-block: clamp(64px, 8vw, 112px); }
.section--tint { background: var(--surface-alt); }
.section--deep { background: var(--deep); color: var(--on-deep-muted); overflow: hidden; }
.section--deep .container { position: relative; z-index: 1; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-block-end: 48px; }
.section-head .section-title { margin-bottom: 0; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head__lead { max-width: 640px; margin: 14px 0 0; color: var(--ink-muted); font-size: 17px; }
.section-head--light .section-head__lead { color: var(--on-deep-muted); }

.loop-art { position: absolute; fill: #fff; pointer-events: none; }
.section__loop { inset-inline-end: -8%; inset-block-start: -10%; width: 55%; max-width: 820px; opacity: .04; }

/* ---------- Hero ---------- */
.hero {
	position: relative; isolation: isolate; overflow: hidden;
	display: flex; align-items: center;
	min-height: clamp(560px, 84vh, 780px);
	background: var(--deep); color: #fff;
}
.hero__media, .page-hero__media, .project-hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .page-hero__media img, .project-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media img, .page-hero__media img { filter: grayscale(1) contrast(1.05) brightness(.9); }
.hero__media::after, .page-hero__media::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(100deg, rgba(34, 16, 42, .95) 0%, rgba(80, 28, 80, .86) 34%, rgba(78, 44, 118, .62) 64%, rgba(57, 81, 135, .5) 100%);
}
.page-hero__media::after { background: linear-gradient(100deg, rgba(34, 16, 42, .96) 0%, rgba(80, 28, 80, .9) 40%, rgba(78, 44, 118, .8) 70%, rgba(57, 81, 135, .74) 100%); }
.hero__loop { z-index: -1; inset-inline-end: -7%; inset-block-start: 50%; width: min(64%, 900px); transform: translateY(-50%); opacity: .08; }
.hero__inner { padding-block: 110px 170px; }
.hero__inner > * { max-width: 780px; }
.hero__title { font-size: clamp(38px, 5.6vw, 68px); font-weight: 800; line-height: 1.04; letter-spacing: -.025em; color: #fff; margin: 0 0 22px; }
.hero__lead { max-width: 640px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; color: rgba(255, 255, 255, .86); margin: 0 0 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Stats overlapping the hero */
.stats-wrap { position: relative; z-index: 2; margin-block-start: -92px; }
.stats {
	display: grid; grid-template-columns: repeat(4, 1fr); margin: 0;
	background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
}
.stat { display: flex; flex-direction: column; padding: 30px 30px 28px; border-inline-start: 1px solid var(--line); }
.stat:first-child { border-inline-start: 0; }
.stat__value { order: -1; margin: 0 0 6px; font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3vw, 40px); line-height: 1.05; color: var(--plum); letter-spacing: -.02em; }
.stat__label { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.stat__note { margin: 4px 0 0; font-size: 13px; color: var(--ink-muted); line-height: 1.4; }

/* ---------- Split layouts ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split--center { align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); }
.split__badge {
	position: absolute; inset-inline-end: -24px; inset-block-end: -28px;
	display: flex; align-items: center; gap: 14px; max-width: 290px;
	padding: 18px 22px; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lift);
	font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.3; color: var(--plum);
}
.split__badge img { width: 58px; height: auto; aspect-ratio: auto; border-radius: 0; }
.split__text .btn { margin-block-start: 12px; }

.checklist { list-style: none; display: grid; gap: 14px; margin: 8px 0 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; line-height: 1.5; }
.checklist .icon {
	width: 28px; height: 28px; padding: 6px; margin-block-start: -2px;
	border-radius: 50%; background: var(--lilac-100); color: var(--plum); stroke-width: 2.4;
}
.checklist--grid { grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }

.facts { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-block-start: 28px; }
.facts li { display: flex; flex-direction: column; padding: 18px 18px 16px; border-radius: var(--radius-md); background: var(--surface-alt); border: 1px solid var(--line); }
.facts strong { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--plum); }
.facts span { font-size: 14px; color: var(--ink-muted); line-height: 1.4; }

/* ---------- Fields of operation ---------- */
.fields { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.field-card {
	display: flex; flex-direction: column; padding: 32px 28px 30px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.field-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.field-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; margin-block-end: 22px; border-radius: 50%; color: #fff;
}
.field-card__icon .icon { width: 28px; height: 28px; }
.field-card--1 .field-card__icon { background: var(--navy); }
.field-card--2 .field-card__icon { background: var(--violet); }
.field-card--3 .field-card__icon { background: var(--plum); }
.field-card--4 .field-card__icon { background: var(--blue); }
.field-card__title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.field-card p { margin: 0; font-size: 15px; color: var(--ink-muted); }
.fields--dark .field-card { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); }
.fields--dark .field-card__title { color: #fff; }
.fields--dark .field-card p { color: var(--on-deep-muted); }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
	display: flex; flex-direction: column; overflow: hidden;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
	color: var(--ink); text-decoration: none;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: transparent; color: var(--ink); }
.service-card__media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--lilac-100); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.service-card__kicker { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.service-card__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1.2; color: var(--plum); margin-bottom: 10px; }
.service-card__text { flex: 1; font-size: 15px; color: var(--ink-muted); margin-bottom: 18px; }
.service-card__more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--plum); }
.service-card__more .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.service-card:hover .service-card__more .icon--arrow { transform: translateX(3px); }

/* ---------- Project cards ---------- */
.projects-feature { display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-auto-rows: minmax(250px, auto); gap: 20px; }
.projects-feature .project-card--featured { grid-row: span 2; }
.projects-feature .project-card:nth-child(4) { grid-column: span 2; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.projects-grid .project-card { aspect-ratio: 4 / 3.3; }

.project-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--deep-2); min-height: 250px; }
.project-card__link { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; text-decoration: none; }
.project-card__media { position: absolute; inset: 0; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.project-card__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(34, 16, 42, 0) 30%, rgba(34, 16, 42, .55) 58%, rgba(34, 16, 42, .94) 100%);
	transition: opacity .3s;
}
.project-card:hover .project-card__media img { transform: scale(1.06); }
.project-card__body { position: relative; display: flex; flex-direction: column; gap: 8px; padding: 26px 26px 24px; }
.project-card .tag { background: rgba(255, 255, 255, .18); color: #fff; backdrop-filter: blur(4px); }
.project-card__title { font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 1.22; color: #fff; }
.project-card--featured .project-card__title { font-size: clamp(22px, 2.2vw, 28px); }
.project-card__loc { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(255, 255, 255, .82); }
.project-card__loc .icon { width: 16px; height: 16px; }
.project-card__excerpt { font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, .85); max-width: 520px; }
.project-card__link:focus-visible { outline-offset: -4px; border-radius: var(--radius-lg); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.values__intro p:last-child { color: var(--ink-muted); font-size: 17px; }
.values__list { list-style: none; counter-reset: none; border-block-start: 1px solid var(--line); }
.values__list li {
	display: flex; align-items: baseline; gap: 22px; padding: 22px 4px;
	border-block-end: 1px solid var(--line);
	font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 1.6vw, 20px); color: var(--plum); line-height: 1.35;
}
.values__num { font-weight: 800; font-size: 15px; color: var(--blue); min-width: 28px; }

.values-row { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.values-row__item {
	display: flex; flex-direction: column; gap: 10px; padding: 28px 22px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.values-row__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--lilac-100); color: var(--plum); }
.values-row__num { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--blue); letter-spacing: .08em; }
.values-row__text { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.35; color: var(--plum); }

/* ---------- Clients ---------- */
.clients { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.clients__item {
	flex: 0 0 calc((100% - 96px) / 7);
	display: flex; align-items: center; justify-content: center; height: 128px; padding: 18px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
	transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.clients__item:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.clients__item img { max-height: 84px; max-width: 100%; width: auto; object-fit: contain; }
.clients__name { display: none; }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; background: linear-gradient(110deg, var(--plum) 0%, var(--violet) 60%, var(--navy) 100%); color: #fff; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-block: 64px; }
.cta__text { max-width: 680px; }
.cta__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta__lead { color: rgba(255, 255, 255, .85); margin: 0; font-size: 17px; }
.cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; flex: none; }
.cta__phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.cta__phone:hover { color: var(--blue-light); }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--deep); color: var(--on-deep-muted); font-size: 15px; }
.site-footer__loop { inset-inline-start: -12%; inset-block-end: -30%; width: 50%; opacity: .035; }
.site-footer__grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 48px; padding-block: 80px 56px; }
.site-footer__logo { width: 250px; height: auto; margin-block-end: 22px; }
.site-footer__brand p { max-width: 360px; }
.site-footer__title { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.site-footer__links { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: var(--on-deep-muted); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__contact { list-style: none; display: grid; gap: 14px; }
.site-footer__contact li { display: flex; align-items: flex-start; gap: 12px; }
.site-footer__contact .icon { width: 18px; height: 18px; margin-block-start: 3px; color: var(--blue-light); }
.social { display: flex; gap: 10px; margin-block-start: 22px; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); color: #fff; }
.social a:hover { background: rgba(255, 255, 255, .1); text-decoration: none; }
.social .icon { width: 20px; height: 20px; }
.site-footer__bottom { position: relative; border-block-start: 1px solid rgba(255, 255, 255, .1); font-size: 14px; }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 22px; }
.site-footer__bottom p { margin: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--deep); color: #fff; }
.page-hero__loop { z-index: -1; inset-inline-end: -4%; inset-block-start: 50%; width: min(46%, 640px); transform: translateY(-50%); opacity: .08; }
.page-hero__inner { padding-block: clamp(72px, 9vw, 120px) clamp(64px, 8vw, 104px); }
.page-hero__title { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; color: #fff; margin: 0 0 16px; }
.page-hero .page-hero__title .accent { color: var(--blue-light); }
.page-hero__lead { max-width: 640px; margin: 0; font-size: 18px; color: rgba(255, 255, 255, .86); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-block-end: 22px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.breadcrumb a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* ---------- Services page ---------- */
.subnav { position: sticky; inset-block-start: var(--header-h); z-index: 50; background: #fff; border-block-end: 1px solid var(--line); }
.admin-bar .subnav { inset-block-start: calc(var(--header-h) + 32px); }
.subnav__inner { display: flex; gap: 8px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; }
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav a {
	flex: none; padding: 8px 16px; border-radius: var(--radius-pill); border: 1px solid var(--line);
	font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); text-decoration: none; white-space: nowrap;
}
.subnav a:hover, .subnav a.is-active { background: var(--plum); border-color: var(--plum); color: #fff; }

.pill-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.pill-list li { padding: 8px 16px; border-radius: var(--radius-pill); background: var(--lilac-100); color: var(--plum); font-family: var(--font-display); font-weight: 600; font-size: 14px; }

.collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.collage img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-md); }
.collage img:first-child { grid-column: span 3; aspect-ratio: 16 / 8.5; }

.service { scroll-margin-top: calc(var(--header-h) + 72px); }
.service__inner { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.service--flip .service__media { order: 2; }
.service__media { position: relative; }
.service__media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--radius-lg); }
.service__num {
	position: absolute; inset-block-start: -18px; inset-inline-start: -18px;
	display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px;
	border-radius: 50%; background: var(--plum); color: #fff; box-shadow: var(--shadow-lift);
	font-family: var(--font-display); font-weight: 800; font-size: 20px;
}
.service--flip .service__num { inset-inline-start: auto; inset-inline-end: -18px; background: var(--blue); }
.service__group { font-size: 17px; font-weight: 700; color: var(--ink); margin: 22px 0 12px; }
.service__text .lead { color: var(--ink-muted); font-size: 18px; }

/* ---------- About page ---------- */
.vm { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.vm__media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.vm__cards { display: grid; gap: 24px; align-content: center; }
.vm-card { position: relative; padding: 36px 36px 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.vm-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin-block-end: 18px; border-radius: 50%; background: var(--plum); color: #fff; }
.vm-card:nth-child(2) .vm-card__icon { background: var(--blue); }
.vm-card__title { font-size: 26px; font-weight: 800; }
.vm-card p { margin: 0; font-size: 17px; color: var(--ink-muted); }

.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.person { display: flex; flex-direction: column; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.person__head { display: flex; align-items: center; gap: 22px; padding-block-end: 22px; margin-block-end: 22px; border-block-end: 1px solid var(--line); }
.person__photo { flex: none; width: 116px; border-radius: var(--radius-md); overflow: hidden; background: var(--lilac-100); }
.person__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.person__name { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.person__role { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .02em; color: var(--blue); }
.person__bio { list-style: none; display: grid; gap: 8px; font-size: 14.5px; line-height: 1.55; color: var(--ink-muted); }
.person__bio li { position: relative; padding-inline-start: 16px; }
.person__quote { position: relative; margin: 0 0 18px; padding: 16px 20px 16px 22px; border-inline-start: 3px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--lilac-100); }
.person__quote p { margin: 0; font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: 15px; line-height: 1.55; color: var(--plum); }
.person__bio li::before { content: ""; position: absolute; inset-inline-start: 0; inset-block-start: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--lilac); }

.achievements { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.achievement { margin: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.achievement__media img { width: 100%; aspect-ratio: 16 / 9.5; object-fit: cover; }
.achievement figcaption { padding: 24px 26px 26px; }
.achievement__title { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.achievement p { margin: 0; font-size: 15px; color: var(--ink-muted); }

/* ---------- Projects ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-block-end: 36px; }
.filters__item {
	display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px;
	border: 1px solid var(--line); border-radius: var(--radius-pill);
	font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); text-decoration: none;
}
.filters__item:hover { border-color: var(--plum); color: var(--plum); }
.filters__item.is-active { background: var(--plum); border-color: var(--plum); color: #fff; }
.filters__count { font-size: 12px; opacity: .7; }

.project-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: flex-end; min-height: clamp(420px, 62vh, 620px); background: var(--deep); color: #fff; }
.project-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34, 16, 42, .25) 0%, rgba(34, 16, 42, .45) 45%, rgba(34, 16, 42, .95) 100%); }
.project-hero__inner { padding-block: 120px 56px; }
.project-hero__title { max-width: 900px; margin: 14px 0 14px; font-size: clamp(30px, 4.4vw, 54px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: #fff; }
.project-hero__lead { max-width: 720px; margin: 0; font-size: 18px; color: rgba(255, 255, 255, .88); }

.project__layout { display: grid; grid-template-columns: 330px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; margin-block-end: 64px; }
.project__facts { position: sticky; inset-block-start: calc(var(--header-h) + 24px); padding: 28px; background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.project__facts dl { margin: 0 0 24px; display: grid; gap: 18px; }
.project__fact dt { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.project__fact dd { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 16px; line-height: 1.4; color: var(--ink); }

.prose { max-width: 72ch; font-size: 17px; line-height: 1.75; }
.prose--center { margin-inline: auto; text-align: center; margin-block-end: 40px; }
.prose h2 { font-size: 28px; margin-top: 1.4em; }
.prose h3 { font-size: 21px; margin-top: 1.3em; }
.prose ul, .prose ol { padding-inline-start: 1.3em; margin-bottom: 1em; }
.prose li { margin-bottom: .4em; }
.prose strong { color: var(--plum); font-family: var(--font-display); }
.prose img { border-radius: var(--radius-md); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.gallery__item { display: block; overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 4 / 3; background: var(--lilac-100); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }

.lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 60px 72px; background: rgba(20, 9, 26, .94); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; width: auto; height: auto; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.lightbox button { position: absolute; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; cursor: pointer; }
.lightbox button:hover { background: rgba(255, 255, 255, .24); }
.lightbox .icon { width: 26px; height: 26px; }
.lightbox__close { inset-block-start: 16px; inset-inline-end: 16px; }
.lightbox__prev { inset-inline-start: 12px; top: 50%; transform: translateY(-50%) scaleX(-1); }
.lightbox__next { inset-inline-end: 12px; top: 50%; transform: translateY(-50%); }
[dir="rtl"] .lightbox__prev { transform: translateY(-50%); }
[dir="rtl"] .lightbox__next { transform: translateY(-50%) scaleX(-1); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__info > p:not(.eyebrow) { color: var(--ink-muted); font-size: 17px; }
.contact-list { list-style: none; display: grid; gap: 22px; margin-block-start: 32px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-list li > span:last-child { display: flex; flex-direction: column; }
.contact-list__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--lilac-100); color: var(--plum); }
.contact-list__label { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.contact-list a { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-decoration: none; }

.form-card { padding: clamp(24px, 3.5vw, 40px); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-card); scroll-margin-top: calc(var(--header-h) + 24px); }
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); }
.req { color: var(--danger); }
.field input, .field select, .field textarea {
	width: 100%; padding: 13px 16px; font-size: 16px; line-height: 1.4;
	background: #fff; border: 1.5px solid var(--line-strong); border-radius: 12px;
	transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 150px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23501C50' stroke-width='1.8' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-inline-end: 44px; }
[dir="rtl"] .field select { background-position: left 16px center; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(78, 112, 181, .18); }
.form .btn { justify-self: start; }
.form__note { margin: 0; font-size: 13px; color: var(--ink-muted); }
.notice { display: flex; gap: 14px; align-items: flex-start; margin-block-end: 24px; padding: 16px 18px; border-radius: var(--radius-md); font-size: 15px; }
.notice .icon { width: 24px; height: 24px; }
.notice--success { background: #E8F5EE; color: #134E31; }
.notice--error { background: #FBEAE8; color: #7A1A14; }

.map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- 404 / misc ---------- */
.notfound { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; min-height: 70vh; background: var(--deep); color: var(--on-deep-muted); }
.notfound__loop { z-index: -1; inset-inline-end: -8%; top: 50%; width: 60%; transform: translateY(-50%); opacity: .06; }
.notfound__inner { padding-block: 96px; }
.notfound__title { font-size: clamp(34px, 5vw, 56px); font-weight: 800; color: #fff; }
.post-row { padding-block: 28px; border-block-end: 1px solid var(--line); }
.post-row__title { font-size: 24px; margin-bottom: 4px; }
.post-row__title a { text-decoration: none; }
.post-row__meta { font-size: 14px; color: var(--ink-muted); }
.nav-links { display: flex; gap: 8px; margin-block-start: 40px; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--radius-pill); text-decoration: none; font-family: var(--font-display); font-weight: 600; }
.page-numbers.current { background: var(--plum); border-color: var(--plum); color: #fff; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Approach steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: none; }
.step { position: relative; display: flex; flex-direction: column; padding: 32px 30px 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step::after { content: ""; position: absolute; inset-block-start: 58px; inset-inline-end: -25px; width: 26px; height: 2px; background: var(--brand-gradient); }
.step:last-child::after { display: none; }
.step__top { display: flex; align-items: center; justify-content: space-between; margin-block-end: 22px; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; color: var(--lilac-200); letter-spacing: -.02em; }
.step__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--plum); color: #fff; }
.step:nth-child(2) .step__icon { background: var(--blue); }
.step:nth-child(3) .step__icon { background: var(--violet); }
.step__title { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.step__text { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-muted); }

/* ---------- Services grid: an orphan last card spans the row ---------- */
.services-grid > .service-card:last-child:nth-child(3n+1) { grid-column: 1 / -1; flex-direction: row; }
.services-grid > .service-card:last-child:nth-child(3n+1) .service-card__media { flex: 0 0 50%; aspect-ratio: auto; min-height: 280px; }
.services-grid > .service-card:last-child:nth-child(3n+1) .service-card__body { justify-content: center; padding: 36px 40px; }

/* ---------- Named logo wall (schools) ---------- */
.clients--named .clients__item { flex-basis: calc((100% - 64px) / 5); flex-direction: column; gap: 12px; height: auto; min-height: 168px; padding: 20px 16px; }
.clients--named .clients__item { justify-content: flex-start; }
.clients--named .clients__item img { height: 76px; width: auto; max-height: none; max-width: 100%; object-fit: contain; }
.clients--named .clients__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13px; line-height: 1.35; text-align: center; color: var(--ink-muted); }

/* ---------- Careers ---------- */
.apply-card { display: flex; align-items: center; gap: 20px; padding: 24px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.apply-card__icon { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--lilac-100); color: var(--plum); }
.apply-card__text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.apply-card__text strong { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--plum); }
.apply-card__text span { font-size: 15px; color: var(--ink-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.fields { grid-template-columns: repeat(2, 1fr); }
	.values-row { grid-template-columns: repeat(3, 1fr); }
	.clients__item { flex-basis: calc((100% - 64px) / 5); }
	.clients--named .clients__item { flex-basis: calc((100% - 48px) / 4); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
	:root { --header-h: 68px; }
	/* backdrop-filter would trap the fixed menu panel inside the header box */
	.site-header { backdrop-filter: none; background: #fff; }
	.nav-toggle { display: inline-flex; }
	.site-nav {
		position: fixed; inset-inline: 0; inset-block-start: var(--header-h); inset-block-end: 0; z-index: 99;
		flex-direction: column; align-items: stretch; gap: 20px;
		padding: 24px var(--gutter) 40px; background: #fff; overflow-y: auto;
		visibility: hidden; opacity: 0; transform: translateY(-8px);
		transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .2s;
	}
	.nav-open .site-nav { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
	.site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav__list a { padding: 16px 4px; font-size: 20px; border-block-end: 1px solid var(--line); }
	.site-nav__list a::after { display: none; }
	.site-nav__cta { min-height: 54px; font-size: 16px; }
	.admin-bar .site-nav { inset-block-start: calc(var(--header-h) + 46px); }
	body.nav-open { overflow: hidden; }

	.split, .values, .service__inner, .vm, .contact, .project__layout { grid-template-columns: 1fr; }
	.service--flip .service__media { order: 0; }
	.split__badge { inset-inline-end: 16px; inset-block-end: -24px; }
	.split__media { margin-block-end: 12px; }
	.projects-feature { grid-template-columns: 1fr 1fr; }
	.projects-feature .project-card--featured { grid-column: span 2; grid-row: auto; min-height: 380px; }
	.projects-feature .project-card:nth-child(4) { grid-column: auto; }
	.projects-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(3) { border-inline-start: 0; }
	.stat:nth-child(n+3) { border-block-start: 1px solid var(--line); }
	.people, .achievements { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.step::after { display: none; }
	.services-grid > .service-card:last-child:nth-child(odd) { grid-column: 1 / -1; flex-direction: row; }
	.services-grid > .service-card:last-child:nth-child(odd) .service-card__media { flex: 0 0 50%; aspect-ratio: auto; min-height: 260px; }
	.project__facts { position: static; }
	.vm__media img { min-height: 280px; max-height: 380px; }
	.cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 782px) {
	.admin-bar .site-header { inset-block-start: 46px; }
	.admin-bar .subnav { inset-block-start: calc(var(--header-h) + 46px); }
}

@media (max-width: 767px) {
	:root { --gutter: 16px; }
	.topbar { display: none; }
	.brand__logo { height: 34px; }
	.section-head { flex-direction: column; align-items: flex-start; margin-block-end: 32px; }
	.section-head--center { align-items: center; }
	.hero { min-height: 0; }
	.hero__inner { padding-block: 72px 132px; }
	.hero__actions .btn { flex: 1 1 auto; }
	.fields, .services-grid, .projects-grid, .projects-feature, .checklist--grid, .form__row, .facts { grid-template-columns: 1fr; }
	.projects-feature .project-card--featured { grid-column: auto; }
	.collage { gap: 8px; }
	.values-row { grid-template-columns: 1fr 1fr; }
	.stat { padding: 22px 20px; }
	.stat__value { font-size: 28px; }
	.person { padding: 22px; }
	.person__head { gap: 16px; }
	.person__photo { width: 92px; }
	.clients { gap: 12px; }
	.clients__item { flex-basis: calc((100% - 12px) / 2); height: 112px; }
	.clients--named .clients__item { flex-basis: calc((100% - 12px) / 2); height: auto; }
	.services-grid > .service-card:last-child:nth-child(n) { grid-column: auto; flex-direction: column; }
	.services-grid > .service-card:last-child:nth-child(n) .service-card__media { flex: none; aspect-ratio: 16 / 10; min-height: 0; }
	.services-grid > .service-card:last-child:nth-child(n) .service-card__body { padding: 24px 26px 26px; }
	.apply-card { flex-direction: column; align-items: flex-start; }
	.apply-card .btn { width: 100%; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 36px; padding-block: 56px 40px; }
	.site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
	.service__num { width: 56px; height: 56px; font-size: 17px; inset-block-start: -12px; inset-inline-start: -8px; }
	.service--flip .service__num { inset-inline-end: -8px; }
	.lightbox { padding: 56px 12px; }
	.lightbox__prev, .lightbox__next { top: auto; inset-block-end: 12px; }
	.lightbox__prev { transform: scaleX(-1); }
	.lightbox__next { transform: none; }
}

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

/* Arabic (future): swap to an Arabic-capable face. */
:lang(ar) body, :lang(ar) h1, :lang(ar) h2, :lang(ar) h3, :lang(ar) .btn { font-family: "Cairo", "Segoe UI", Tahoma, sans-serif; letter-spacing: 0; }
:lang(ar) .eyebrow, :lang(ar) .tag { letter-spacing: 0; }
