:root {
	--ink: #132637;
	--ink-soft: #274052;
	--red: #e6234f;
	--red-dark: #bf163b;
	--aqua: #21c8c3;
	--peach: #ffe2c5;
	--paper: #fffaf4;
	--white: #ffffff;
	--muted: #6e777e;
	--line: rgba(19, 38, 55, 0.16);
	--sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--serif: Georgia, "Times New Roman", serif;
	--shell: min(1240px, calc(100vw - 64px));
	--section-space: clamp(5rem, 9vw, 9rem);
	--shadow: 0 24px 70px rgba(19, 38, 55, 0.12);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.04;
}

h1 {
	font-size: clamp(3rem, 6.6vw, 7.25rem);
}

h2 {
	font-size: clamp(2.5rem, 5vw, 5.4rem);
}

h3 {
	font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
	margin: 0 0 1.25em;
}

::selection {
	background: var(--aqua);
	color: var(--ink);
}

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

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.shell--narrow {
	max-width: 780px;
}

.section {
	padding-block: var(--section-space);
}

.eyebrow {
	margin: 0 0 1.5rem;
	color: var(--red);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow--light {
	color: var(--aqua);
}

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 1rem;
	left: 1rem;
	padding: 0.8rem 1rem;
	background: var(--white);
	color: var(--ink);
	font-weight: 700;
	transform: translateY(-180%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.8rem 1.35rem;
	border: 1px solid var(--ink);
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
	background: var(--red);
	border-color: var(--red);
	transform: translateY(-2px);
}

.button--small {
	min-height: 42px;
	padding: 0.65rem 1.05rem;
	font-size: 0.72rem;
}

.text-link {
	display: inline-block;
	border-bottom: 1px solid currentColor;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link--light {
	color: var(--white);
}

/* Header */
.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(255, 250, 244, 0.94);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(18px);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--red), var(--aqua));
	content: "";
	transform: scaleX(var(--scroll-progress, 0));
	transform-origin: left center;
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 8px 30px rgba(19, 38, 55, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 2rem;
}

.brand,
.brand .custom-logo-link,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.brand img,
.custom-logo {
	width: auto;
	height: 37px;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.menu {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.25vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	position: relative;
	display: block;
	padding-block: 0.4rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.menu a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--red);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.menu a:hover::after,
.menu .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.8rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}

.menu-toggle__label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.menu-toggle__icon {
	position: relative;
	display: block;
	width: 26px;
	height: 18px;
}

.menu-toggle__icon i {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: top 180ms ease, transform 180ms ease;
}

.menu-toggle__icon i:first-child {
	top: 4px;
}

.menu-toggle__icon i:last-child {
	top: 12px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
	top: 8px;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
	top: 8px;
	transform: rotate(-45deg);
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--peach);
}

.hero__track {
	position: relative;
	aspect-ratio: 16 / 9;
	max-height: calc(100vh - 82px);
	min-height: 470px;
}

.hero__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 700ms ease;
}

.hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}

.hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__controls {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 1.75rem;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.25rem;
	pointer-events: none;
}

.hero__counter {
	display: flex;
	align-items: center;
	margin-right: auto;
	gap: 0.65rem;
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	pointer-events: auto;
	text-shadow: 0 1px 12px rgba(19, 38, 55, 0.35);
}

.hero__counter i {
	display: block;
	width: clamp(42px, 7vw, 92px);
	height: 1px;
	background: rgba(255, 255, 255, 0.75);
}

.hero__pagination,
.hero__arrows {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	pointer-events: auto;
}

.hero__autoplay {
	padding: 0.6rem 0.75rem;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	background: transparent;
	color: var(--white);
	cursor: pointer;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid var(--white);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.hero__dot.is-active {
	background: var(--white);
}

.circle-button {
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	background: rgba(19, 38, 55, 0.28);
	color: var(--white);
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
	backdrop-filter: blur(6px);
	transition: background 180ms ease, transform 180ms ease;
}

.circle-button:hover {
	background: var(--red);
	transform: scale(1.06);
}

/* Intro */
.intro-band {
	padding-block: clamp(4rem, 8vw, 8rem);
	background: var(--ink);
	color: var(--white);
}

.intro-band__grid {
	display: grid;
	grid-template-columns: minmax(170px, 0.65fr) 2.35fr;
	gap: 3rem;
	align-items: start;
}

.intro-band h1 {
	max-width: 980px;
	margin-bottom: 0.35em;
}

.intro-band h1::first-line {
	color: var(--aqua);
}

.intro-band__grid > div > p {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

/* Shared headings */
.section-heading {
	max-width: 960px;
	margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
	max-width: none;
	gap: clamp(2rem, 7vw, 7rem);
	align-items: end;
}

.section-heading--split > p,
.section-heading--split > .text-link {
	margin-bottom: 0.5rem;
}

.section-heading--split > p {
	color: var(--muted);
}

/* Trusted */
.trusted {
	overflow: hidden;
	background: var(--white);
}

.logo-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.logo-marquee__track {
	display: flex;
	width: max-content;
	padding-block: 1rem;
	gap: 1rem;
	animation: logo-marquee 54s linear infinite;
	will-change: transform;
}

.logo-marquee:hover .logo-marquee__track {
	animation-play-state: paused;
}

.logo-marquee__set {
	display: flex;
	flex: 0 0 auto;
	gap: 1rem;
}

.logo-marquee__item {
	display: grid;
	width: clamp(170px, 16vw, 220px);
	height: 120px;
	padding: 1.5rem 2rem;
	place-items: center;
	border: 1px solid var(--line);
	background: var(--white);
}

.logo-marquee__item img {
	width: auto;
	max-width: 150px;
	height: auto;
	max-height: 72px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.72;
	transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.logo-marquee__item:hover img {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.06);
}

@keyframes logo-marquee {
	to {
		transform: translateX(calc(-50% - 0.5rem));
	}
}

/* Story */
.story {
	overflow: hidden;
	background: var(--paper);
}

.story__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
	gap: clamp(3rem, 8vw, 9rem);
	align-items: center;
}

.story__image {
	position: relative;
}

.story__image::before {
	position: absolute;
	z-index: -1;
	top: -10%;
	left: -20%;
	width: 68%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--aqua);
	content: "";
}

.story__image img {
	width: 100%;
	aspect-ratio: 0.95;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.story__badge {
	position: absolute;
	right: -2rem;
	bottom: -2rem;
	display: grid;
	width: 145px;
	aspect-ratio: 1;
	padding: 1.25rem;
	place-items: center;
	border-radius: 50%;
	background: var(--red);
	color: var(--white);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
}

.story__content h2 {
	font-size: clamp(2.6rem, 4.7vw, 5.25rem);
}

.story__content p {
	color: var(--ink-soft);
}

.story__content .button {
	margin-top: 1rem;
}

/* Values */
.values {
	background: var(--peach);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(19, 38, 55, 0.25);
}

.value-card {
	min-height: 300px;
	padding: 2rem;
	border-right: 1px solid rgba(19, 38, 55, 0.25);
}

.value-card:first-child {
	border-left: 1px solid rgba(19, 38, 55, 0.25);
}

.value-card__number {
	display: block;
	margin-bottom: 5rem;
	color: var(--red);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.value-card h3 {
	min-height: 2.15em;
}

.value-card p {
	margin: 0;
	color: var(--ink-soft);
}

/* Projects */
.projects {
	background: var(--white);
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.project-card {
	position: relative;
	display: flex;
	overflow: hidden;
	min-height: 390px;
	padding: clamp(1.6rem, 4vw, 3.25rem);
	flex-direction: column;
	justify-content: space-between;
	text-decoration: none;
	transition: border-radius 250ms ease, transform 250ms ease;
}

.project-card::before {
	position: absolute;
	right: -15%;
	bottom: -35%;
	width: 70%;
	aspect-ratio: 1;
	border: 1px solid currentColor;
	border-radius: 50%;
	content: "";
	opacity: 0.25;
	transition: transform 400ms ease;
}

.project-card:hover {
	border-radius: 2.5rem;
	transform: translateY(-5px);
}

.project-card:hover::before {
	transform: translate(-12%, -10%) scale(1.15);
}

.project-card--red {
	background: var(--red);
	color: var(--white);
}

.project-card--aqua {
	background: var(--aqua);
	color: var(--ink);
}

.project-card--peach {
	background: var(--peach);
	color: var(--ink);
}

.project-card--ink {
	background: var(--ink);
	color: var(--white);
}

.project-card__index {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.project-card p {
	margin-bottom: 0.7rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.project-card h3 {
	max-width: 90%;
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 4.25rem);
}

.project-card__arrow {
	position: absolute;
	top: 2.25rem;
	right: 2.25rem;
	font-size: 1.7rem;
}

/* Impact */
.impact {
	padding-block: var(--section-space);
	background-color: var(--red);
	background-image: linear-gradient(rgba(230, 35, 79, 0.86), rgba(230, 35, 79, 0.86)), url("../images/BG-min.jpg");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.impact__inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(3rem, 8vw, 8rem);
	align-items: start;
}

.impact h2 {
	font-size: clamp(3rem, 5.8vw, 6.5rem);
}

.impact__stats {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.impact__stats > div {
	display: grid;
	grid-template-columns: 150px 1fr;
	padding-block: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	gap: 1.5rem;
	align-items: baseline;
}

.impact__stats strong {
	font-family: var(--serif);
	font-size: clamp(2.3rem, 4vw, 4.25rem);
	font-weight: 400;
	line-height: 1;
}

.impact__stats span {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* Distinctive */
.distinctive {
	background: var(--paper);
}

.distinctive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.distinctive-card {
	min-height: 310px;
	padding: clamp(1.6rem, 3.5vw, 3rem);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background 180ms ease, color 180ms ease;
}

.distinctive-card:hover {
	background: var(--ink);
	color: var(--white);
}

.distinctive-card__lead {
	margin-bottom: 3rem;
	color: var(--red);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.distinctive-card h3 {
	font-size: clamp(1.9rem, 2.8vw, 3rem);
}

.distinctive-card > p:last-child {
	margin-bottom: 0;
	color: var(--muted);
}

.distinctive-card:hover > p:last-child {
	color: rgba(255, 255, 255, 0.7);
}

/* Services */
.services {
	background: var(--ink);
	color: var(--white);
}

.services__intro {
	display: grid;
	grid-template-columns: 0.75fr 1.5fr 0.75fr;
	margin-bottom: clamp(3rem, 7vw, 7rem);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}

.services__intro h2 {
	font-size: clamp(3rem, 5.5vw, 6.25rem);
}

.services__intro > p:last-child {
	color: rgba(255, 255, 255, 0.65);
}

.service-list {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.service-item {
	display: grid;
	grid-template-columns: 90px minmax(220px, 0.7fr) 1.3fr;
	padding-block: clamp(1.8rem, 4vw, 3.5rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
}

.service-item > span {
	color: var(--aqua);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.service-item h3 {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3.5rem);
}

.service-item p {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
}

/* Approach */
.approach {
	background: var(--paper);
}

.approach-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.approach-card {
	display: grid;
	min-height: 310px;
	padding: clamp(1.75rem, 4vw, 3.5rem);
	grid-template-columns: 70px 1fr;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	gap: 1.5rem;
	align-content: space-between;
	transition: background 200ms ease, color 200ms ease;
}

.approach-card:hover {
	background: var(--aqua);
}

.approach-card > span {
	color: var(--red);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.approach-card > div {
	align-self: end;
}

.approach-card h3 {
	margin-bottom: 0.5rem;
	font-size: clamp(2.25rem, 4vw, 4.4rem);
}

.approach-card p {
	max-width: 500px;
	margin: 0;
	color: var(--muted);
}

.approach-card:hover p {
	color: var(--ink-soft);
}

/* Team */
.team {
	background: var(--white);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2rem, 4vw, 4rem) 1.25rem;
}

.team-card__image {
	position: relative;
	overflow: hidden;
	margin-bottom: 1.35rem;
	background: var(--peach);
}

.team-card__image img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	filter: saturate(0.88);
	transition: filter 300ms ease, transform 500ms ease;
}

.team-card__image > p {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	left: 1rem;
	margin: 0;
	padding: 1.15rem;
	background: rgba(19, 38, 55, 0.91);
	color: var(--white);
	font-size: 0.82rem;
	line-height: 1.5;
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 220ms ease, transform 220ms ease;
}

.team-card:hover .team-card__image img {
	filter: saturate(1);
	transform: scale(1.035);
}

.team-card:hover .team-card__image > p,
.team-card:focus-within .team-card__image > p {
	opacity: 1;
	transform: translateY(0);
}

.team-card h3 {
	margin-bottom: 0.35rem;
	font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.team-card__role {
	margin: 0;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.45;
}

/* Journal */
.journal {
	background: var(--peach);
}

.journal-grid,
.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2rem, 4vw, 3.5rem) 1.25rem;
}

.journal-card__image {
	display: grid;
	overflow: hidden;
	aspect-ratio: 1.35;
	margin-bottom: 1.4rem;
	place-items: center;
	background: var(--red);
	color: var(--white);
	font-family: var(--serif);
	font-size: clamp(1.5rem, 3vw, 3rem);
	text-decoration: none;
}

.journal-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.journal-card:hover .journal-card__image img {
	transform: scale(1.045);
}

.journal-card__meta {
	margin-bottom: 0.75rem;
	color: var(--red);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.journal-card h2,
.journal-card h3 {
	margin-bottom: 0.5rem;
}

.journal-card h2 a,
.journal-card h3 a {
	text-decoration: none;
}

.journal-card > p:last-child {
	color: var(--muted);
}

/* Contact */
.contact-cta {
	padding-block: clamp(5rem, 11vw, 11rem);
	background: var(--aqua);
}

.contact-cta__inner {
	text-align: center;
}

.contact-cta .eyebrow {
	color: var(--ink);
}

.contact-cta h2 {
	max-width: 950px;
	margin-inline: auto;
	font-size: clamp(3.4rem, 7vw, 8rem);
}

.contact-cta a {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	border-bottom: 2px solid currentColor;
	font-size: clamp(1.05rem, 2vw, 1.55rem);
	font-weight: 800;
	text-decoration: none;
}

.contact-cta a span {
	transition: transform 180ms ease;
}

.contact-cta a:hover span {
	transform: translate(4px, -4px);
}

/* Footer */
.site-footer {
	padding-top: clamp(4rem, 8vw, 8rem);
	background: var(--ink);
	color: var(--white);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-bottom: clamp(3rem, 7vw, 7rem);
	gap: 3rem;
}

.brand--footer {
	padding: 0.75rem 1rem;
	background: var(--paper);
}

.site-footer__statement {
	max-width: 420px;
	margin-top: 2rem;
	font-family: var(--serif);
	font-size: clamp(2rem, 3.5vw, 3.8rem);
	line-height: 1.05;
}

.site-footer__contact {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.site-footer__contact a {
	color: var(--white);
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	font-weight: 700;
}

.site-footer__email {
	margin-bottom: 0.75rem;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	gap: 2rem;
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.76rem;
}

.social-links {
	display: flex;
	gap: 1.4rem;
}

.social-links a {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Content templates */
.page-hero,
.entry__header {
	padding-block: clamp(5rem, 10vw, 10rem);
	background: var(--peach);
}

.page-hero h1,
.entry__header h1 {
	margin: 0;
	font-size: clamp(3.5rem, 7vw, 8rem);
}

.archive-grid {
	padding-block: var(--section-space);
}

.archive-grid .pagination {
	grid-column: 1 / -1;
	padding-top: 2rem;
}

.nav-links {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.nav-links a {
	font-weight: 800;
}

.entry__dek {
	max-width: 680px;
	margin-top: 2rem;
	color: var(--ink-soft);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.entry__featured {
	margin-top: clamp(3rem, 6vw, 6rem);
}

.entry__featured img {
	width: 100%;
	max-height: 760px;
	object-fit: cover;
}

.entry__content {
	padding-block: clamp(3rem, 7vw, 7rem);
}

.entry__content > * {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.entry__content h2 {
	margin-top: 1.5em;
	font-size: clamp(2.2rem, 4vw, 3.75rem);
}

.entry__content h3 {
	margin-top: 1.5em;
}

.entry__content a {
	color: var(--red-dark);
}

.entry__content blockquote {
	margin-inline: 0;
	padding-left: 1.5rem;
	border-left: 5px solid var(--aqua);
	font-family: var(--serif);
	font-size: 1.5rem;
	line-height: 1.35;
}

.entry__content .alignwide {
	width: min(100vw - 64px, 1120px);
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry__content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.post-navigation {
	padding-bottom: var(--section-space);
}

.not-found {
	display: grid;
	min-height: 70vh;
	padding-block: var(--section-space);
	align-items: center;
	background: var(--peach);
	text-align: center;
}

.not-found h1 {
	font-size: clamp(3.5rem, 8vw, 8rem);
}

.empty-state {
	grid-column: 1 / -1;
	padding-block: 4rem;
	text-align: center;
}

/* Progressive reveal */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	:root {
		--shell: min(100% - 48px, 1240px);
	}

	.header-contact {
		display: none;
	}

	.story__grid {
		gap: 4.5rem;
	}

	.value-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.value-card:nth-child(3) {
		border-left: 1px solid rgba(19, 38, 55, 0.25);
		border-top: 1px solid rgba(19, 38, 55, 0.25);
	}

	.value-card:nth-child(4) {
		border-top: 1px solid rgba(19, 38, 55, 0.25);
	}

	.distinctive-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services__intro {
		grid-template-columns: 0.7fr 1.3fr;
	}

	.services__intro > p:last-child {
		grid-column: 2;
	}
}

@media (max-width: 820px) {
	:root {
		--shell: min(100% - 36px, 1240px);
	}

	.site-header__inner {
		min-height: 72px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-navigation {
		position: fixed;
		z-index: 999;
		top: 72px;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		padding: 2rem 18px 3rem;
		align-items: flex-start;
		flex-direction: column;
		background: var(--paper);
		opacity: 0;
		overflow-y: auto;
		pointer-events: none;
		transform: translateY(-16px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.primary-navigation.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.primary-navigation .menu {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-navigation .menu li {
		border-bottom: 1px solid var(--line);
	}

	.primary-navigation .menu a {
		padding-block: 1rem;
		font-family: var(--serif);
		font-size: 2rem;
		font-weight: 400;
		letter-spacing: -0.02em;
		text-transform: none;
	}

	.primary-navigation .menu a::after {
		display: none;
	}

	.primary-navigation .header-contact {
		display: inline-flex;
		margin-top: 1rem;
	}

	.hero__track {
		min-height: 0;
	}

	.hero__controls {
		bottom: 1rem;
	}

	.hero__arrows {
		display: flex;
	}

	.hero__arrows .circle-button {
		display: none;
	}

	.intro-band__grid,
	.section-heading--split,
	.story__grid,
	.impact__inner,
	.site-footer__top {
		grid-template-columns: 1fr;
	}

	.intro-band__grid,
	.section-heading--split {
		gap: 2rem;
	}

	.story__image {
		width: min(85%, 560px);
	}

	.project-card {
		min-height: 330px;
	}

	.impact__stats {
		max-width: 620px;
	}

	.services__intro {
		grid-template-columns: 1fr;
	}

	.services__intro > p:last-child {
		grid-column: auto;
	}

	.service-item {
		grid-template-columns: 60px 1fr;
	}

	.service-item p {
		grid-column: 2;
	}

	.team-grid,
	.journal-grid,
	.archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	:root {
		--shell: calc(100% - 28px);
		--section-space: 4.5rem;
	}

	body {
		font-size: 16px;
	}

	.brand img,
	.custom-logo {
		height: 31px;
	}

	.hero__track {
		aspect-ratio: 4 / 3;
	}

	.hero__controls {
		justify-content: center;
	}

	.intro-band h1 {
		font-size: clamp(2.9rem, 14vw, 4.5rem);
	}

	.project-grid,
	.distinctive-grid,
	.team-grid,
	.journal-grid,
	.archive-grid {
		grid-template-columns: 1fr;
	}

	.logo-marquee {
		width: calc(100% + 28px);
		margin-left: -14px;
	}

	.logo-marquee__item {
		width: 158px;
		height: 96px;
		padding: 1rem 1.25rem;
	}

	.story__image {
		width: calc(100% - 1.5rem);
	}

	.story__badge {
		right: -1.5rem;
		bottom: -1.5rem;
		width: 120px;
		font-size: 0.68rem;
	}

	.value-grid {
		grid-template-columns: 1fr;
	}

	.value-card,
	.value-card:nth-child(3) {
		min-height: 0;
		border-top: 1px solid rgba(19, 38, 55, 0.25);
		border-left: 1px solid rgba(19, 38, 55, 0.25);
	}

	.value-card:first-child {
		border-top: 0;
	}

	.value-card__number {
		margin-bottom: 3rem;
	}

	.project-card {
		min-height: 300px;
	}

	.impact__stats > div {
		grid-template-columns: 110px 1fr;
	}

	.distinctive-card {
		min-height: 0;
	}

	.service-item {
		grid-template-columns: 42px 1fr;
	}

	.service-item h3 {
		font-size: 1.85rem;
	}

	.approach-grid {
		grid-template-columns: 1fr;
	}

	.approach-card {
		min-height: 260px;
		grid-template-columns: 44px 1fr;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.entry__content .alignwide {
		width: calc(100vw - 28px);
	}
}

/* Version 1.2 visual enhancements */
.hero {
	width: 100vw;
	max-width: none;
	margin-inline: calc(50% - 50vw);
}

.hero__track {
	height: clamp(620px, calc(100svh - 82px), 900px);
	min-height: 620px;
	max-height: none;
	aspect-ratio: auto;
}

.hero__mobile-caption {
	display: none;
}

.value-grid {
	grid-template-columns: repeat(4, 1fr);
	border: 0;
	gap: 1rem;
}

.value-card,
.value-card:first-child,
.value-card:nth-child(3),
.value-card:nth-child(4) {
	position: relative;
	overflow: hidden;
	min-height: 330px;
	padding: clamp(1.75rem, 3vw, 2.5rem);
	border: 1px solid rgba(19, 38, 55, 0.1);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 20px 50px rgba(19, 38, 55, 0.06);
	transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.value-card::after {
	position: absolute;
	right: -35px;
	bottom: -45px;
	width: 120px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--red);
	content: "";
	opacity: 0.08;
	transition: transform 300ms ease, opacity 300ms ease;
}

.value-card:hover {
	background: var(--white);
	box-shadow: 0 28px 70px rgba(19, 38, 55, 0.12);
	transform: translateY(-8px);
}

.value-card:hover::after {
	opacity: 0.16;
	transform: scale(1.35);
}

.project-card {
	border: 1px solid rgba(19, 38, 55, 0.08);
	border-radius: 28px;
	box-shadow: 0 20px 55px rgba(19, 38, 55, 0.08);
}

.project-card__description {
	max-width: 480px;
	margin-top: 1.25rem !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	line-height: 1.55;
	text-transform: none !important;
	opacity: 0.72;
}

.distinctive-grid {
	grid-template-columns: repeat(3, 1fr);
	border: 0;
	gap: 1rem;
}

.distinctive-card {
	min-height: 330px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 18px 45px rgba(19, 38, 55, 0.05);
	transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.distinctive-card:hover {
	box-shadow: 0 28px 65px rgba(19, 38, 55, 0.15);
	transform: translateY(-7px);
}

.service-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border: 0;
	gap: 1rem;
}

.service-item {
	position: relative;
	display: grid;
	overflow: hidden;
	min-height: 340px;
	padding: clamp(1.75rem, 3.5vw, 3rem);
	grid-template-columns: 52px 1fr;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.045);
	gap: 1rem;
	align-content: start;
	transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-item::after {
	position: absolute;
	right: 1.75rem;
	bottom: 1.5rem;
	color: var(--aqua);
	content: "↗";
	font-family: var(--sans);
	font-size: 1.5rem;
	transition: transform 220ms ease;
}

.service-item:hover {
	border-color: var(--aqua);
	background: rgba(33, 200, 195, 0.11);
	transform: translateY(-7px);
}

.service-item:hover::after {
	transform: translate(5px, -5px);
}

.service-item h3 {
	margin: 0;
}

.service-item p {
	grid-column: 2;
	margin-top: 1rem;
	padding-right: 2rem;
}

.approach-grid {
	border: 0;
	gap: 1rem;
}

.approach-card {
	border: 1px solid var(--line);
	border-radius: 26px;
	background: var(--white);
	box-shadow: 0 18px 45px rgba(19, 38, 55, 0.05);
}

.team-grid {
	gap: clamp(1.25rem, 3vw, 2.25rem);
}

.team-card {
	position: relative;
	overflow: hidden;
	padding: 12px 12px 1.6rem;
	border: 1px solid rgba(19, 38, 55, 0.11);
	border-radius: 28px;
	background: var(--paper);
	box-shadow: 0 18px 50px rgba(19, 38, 55, 0.07);
	transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.team-card::before {
	position: absolute;
	z-index: 2;
	top: 1.4rem;
	right: 1.4rem;
	width: 13px;
	aspect-ratio: 1;
	border: 3px solid var(--white);
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 3px 14px rgba(19, 38, 55, 0.25);
	content: "";
}

.team-card:nth-child(3n + 2)::before {
	background: var(--aqua);
}

.team-card:hover {
	border-color: rgba(230, 35, 79, 0.35);
	box-shadow: 0 30px 75px rgba(19, 38, 55, 0.15);
	transform: translateY(-10px) rotate(-0.35deg);
}

.team-card__image {
	border-radius: 20px;
}

.team-card h3,
.team-card__role,
.team-card__link {
	margin-right: 0.75rem;
	margin-left: 0.75rem;
}

.team-card__role {
	min-height: 2.9em;
}

.team-card__link {
	display: inline-block;
	margin-top: 1rem;
	border-bottom: 1px solid currentColor;
	color: var(--red-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-footer__top {
	grid-template-columns: minmax(0, 1.25fr) minmax(170px, 0.55fr) minmax(260px, 0.8fr);
	gap: clamp(2.5rem, 6vw, 6rem);
}

.site-footer__statement {
	margin-bottom: 1.5rem;
}

.site-footer__company {
	max-width: 460px;
	margin: 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.78rem;
	line-height: 1.8;
}

.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li + li {
	margin-top: 0.8rem;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: color 180ms ease, padding-left 180ms ease;
}

.footer-menu a:hover {
	padding-left: 5px;
	color: var(--aqua);
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: auto 1fr auto;
}

.legal-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.65rem 1.25rem;
}

.legal-links a {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.72rem;
	text-decoration: none;
}

.legal-links a:hover {
	color: var(--aqua);
}

.js .value-card:nth-child(2),
.js .service-item:nth-child(2),
.js .team-card:nth-child(2) {
	transition-delay: 80ms;
}

.js .value-card:nth-child(3),
.js .service-item:nth-child(3),
.js .team-card:nth-child(3) {
	transition-delay: 140ms;
}

.js .value-card:nth-child(4),
.js .service-item:nth-child(4) {
	transition-delay: 200ms;
}

@media (max-width: 1080px) {
	.value-grid,
	.distinctive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__top {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.site-footer__contact {
		grid-column: 1 / -1;
	}
}

@media (max-width: 820px) {
	.hero__track {
		height: clamp(500px, 72svh, 660px);
		min-height: 500px;
	}

	.hero__slide::after {
		position: absolute;
		inset: 0;
		background: linear-gradient(to top, rgba(19, 38, 55, 0.78), transparent 58%);
		content: "";
		pointer-events: none;
	}

	.hero__mobile-caption {
		position: absolute;
		z-index: 2;
		right: 18px;
		bottom: 5.5rem;
		left: 18px;
		display: block;
		max-width: 520px;
		margin: 0;
		color: var(--white);
		text-shadow: 0 2px 18px rgba(19, 38, 55, 0.3);
	}

	.hero__mobile-caption span {
		display: block;
		margin-bottom: 0.5rem;
		color: var(--aqua);
		font-size: 0.68rem;
		font-weight: 800;
		letter-spacing: 0.14em;
		text-transform: uppercase;
	}

	.hero__mobile-caption strong {
		display: block;
		max-width: 430px;
		font-family: var(--serif);
		font-size: clamp(2.4rem, 10vw, 4.2rem);
		font-weight: 400;
		letter-spacing: -0.035em;
		line-height: 0.95;
	}

	.hero__mobile-caption p {
		max-width: 430px;
		margin: 0.8rem 0 0;
		font-size: 0.82rem;
		line-height: 1.45;
	}

	.hero__mobile-caption a {
		display: inline-block;
		margin-top: 0.8rem;
		border-bottom: 1px solid currentColor;
		font-size: 0.72rem;
		font-weight: 800;
		text-decoration: none;
		text-transform: uppercase;
	}

	.service-list {
		grid-template-columns: 1fr;
	}

	.service-item {
		min-height: 300px;
	}

	.site-footer__top,
	.site-footer__bottom {
		grid-template-columns: 1fr;
	}

	.site-footer__contact {
		grid-column: auto;
	}

	.legal-links {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	.hero__track {
		height: clamp(460px, 74svh, 590px);
		min-height: 460px;
		aspect-ratio: auto;
	}

	.hero__slide img {
		object-position: center;
	}

	.hero__mobile-caption p {
		display: none;
	}

	.hero__counter i {
		width: 30px;
	}

	.value-grid,
	.distinctive-grid {
		grid-template-columns: 1fr;
	}

	.value-card,
	.value-card:first-child,
	.value-card:nth-child(3),
	.value-card:nth-child(4) {
		min-height: 270px;
	}

	.service-item {
		min-height: 280px;
		grid-template-columns: 40px 1fr;
	}

	.approach-card {
		min-height: 250px;
	}

	.team-card {
		border-radius: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

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

	.logo-marquee {
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}

	.logo-marquee__track {
		animation: none;
	}

	.logo-marquee__set[aria-hidden="true"] {
		display: none;
	}
}
