:root {
	--color-bg: #f7f8f6;
	--color-surface: #ffffff;
	--color-muted: #eef2f1;
	--color-alt: #eef2f1;
	--color-navy: #113457;
	--color-navy-soft: #163f68;
	--color-gold: #c99a1e;
	--color-gold-soft: #ead9a6;
	--color-text: var(--color-navy);
	--color-ink: #0c2542;
	--color-soft: #5a6d7d;
	--color-border: #dfe7e6;
	--color-accent: var(--color-gold);
	--color-accent-dark: #9d7412;
	--color-focus: var(--color-gold);
	--shadow-soft: 0 24px 60px rgba(17, 52, 87, 0.1);
	--font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-serif: Georgia, "Times New Roman", serif;
	--container: 1360px;
	--container-hero: 1480px;
	--radius: 4px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

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

[hidden] {
	display: none !important;
}

a {
	color: var(--color-text);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--color-accent-dark);
}

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

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--color-text);
	font-family: var(--font-serif);
	font-weight: 700;
	line-height: 1.08;
}

h1 {
	max-width: 12ch;
	margin-bottom: 1.25rem;
	font-size: 3rem;
}

h1 span,
h2 span {
	display: block;
	color: var(--color-accent);
}

h2 {
	margin-bottom: 1rem;
	font-size: 2.2rem;
}

h3 {
	margin-bottom: 0.65rem;
	font-size: 1.18rem;
}

h4 {
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

ul,
ol {
	padding-left: 1.25rem;
}

.container {
	width: 85%;
	max-width: none;
	margin-inline: auto;
}

.flow > * + * {
	margin-top: 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 100;
	padding: 0.75rem 1rem;
	background: var(--color-ink);
	color: #ffffff;
	transform: translateY(-150%);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(247, 248, 246, 0.94);
	border-bottom: 1px solid rgba(17, 52, 87, 0.08);
	backdrop-filter: blur(14px);
}

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

.site-header > .container,
.site-footer > .container {
	width: 90%;
	max-width: none;
}

.site-brand {
	display: inline-flex;
	flex-direction: column;
	color: var(--color-text);
	text-decoration: none;
}

.site-brand__logo {
	display: block;
	width: auto;
	max-width: 13rem;
	max-height: 2.5rem;
	object-fit: contain;
	object-position: left center;
}

.site-brand__name {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1;
}

.site-brand__meta {
	display: none;
}

.site-nav-toggle {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-surface);
	color: var(--color-text);
	cursor: pointer;
}

.site-nav-toggle__line,
.site-nav-toggle__line::before,
.site-nav-toggle__line::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
}

.site-nav-toggle__line {
	position: relative;
}

.site-nav-toggle__line::before,
.site-nav-toggle__line::after {
	position: absolute;
	left: 0;
}

.site-nav-toggle__line::before {
	top: -6px;
}

.site-nav-toggle__line::after {
	top: 6px;
}

.site-nav {
	position: fixed;
	inset: 74px 0 auto 0;
	display: none;
	padding: 1rem;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
}

.site-nav.is-open {
	display: block;
}

.site-nav__list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__link {
	display: block;
	padding: 0.75rem;
	border-radius: var(--radius);
	color: var(--color-text);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
}

.site-nav__link:hover {
	background: transparent;
}

.site-nav__link.is-active,
.site-nav__link[aria-current="location"] {
	color: var(--color-accent-dark);
	text-decoration: underline;
	text-decoration-thickness: 0.14em;
	text-underline-offset: 0.35em;
}

.section {
	padding: 4.75rem 0;
	scroll-margin-top: 96px;
}

.section--compact {
	min-height: 65vh;
	display: grid;
	place-items: center;
}

.section--muted {
	background: var(--color-alt);
}

.experience-section {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 248, 246, 0.96)),
		var(--color-bg);
}

.section--statement {
	background: var(--color-text);
	color: #ffffff;
}

.section--statement h2 {
	color: #ffffff;
}

.section--statement .eyebrow {
	color: var(--color-accent);
}

.section--statement .flow {
	display: grid;
	gap: 1rem;
}

.section--statement .flow p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
}

.section--statement .flow p:first-child {
	color: #ffffff;
	font-family: var(--font-serif);
	font-size: 1.45rem;
	line-height: 1.35;
}

.section-grid {
	display: grid;
	gap: 2rem;
}

.section-heading {
	max-width: 34rem;
}

.section-heading h2 {
	max-width: 14ch;
	margin-bottom: 0.85rem;
}

.section-heading--wide {
	max-width: 48rem;
}

.section-heading--wide h2 {
	max-width: 16ch;
}

.section-lead {
	max-width: 100%;
	color: var(--color-soft);
	font-weight: 500;
	line-height: 1.72;
	white-space: normal;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1rem;
	color: var(--color-accent-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.eyebrow::before {
	display: inline-block;
	width: 34px;
	height: 1px;
	background: currentColor;
	content: "";
}

.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88svh;
	padding-block: 0 clamp(1.5rem, 4vh, 3rem);
	background:
		linear-gradient(180deg, #ffffff 0%, rgba(247, 248, 246, 0.96) 100%),
		var(--color-surface);
}

.hero > .container {
	width: 90%;
	max-width: none;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2.25rem, 6vw, 4.5rem);
	align-items: center;
	align-content: center;
}

.hero__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
	order: 1;
	padding-top: 0;
}

.hero h1 {
	max-width: 14.5ch;
	margin-bottom: clamp(1rem, 2.4vw, 1.35rem);
	font-size: clamp(3rem, 12vw, 4.65rem);
	line-height: 1;
}

.hero__summary {
	max-width: 38rem;
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
	color: #223b59;
	font-family: var(--font-serif);
	font-size: clamp(1.02rem, 2.1vw, 1.22rem);
	font-weight: 600;
	line-height: 1.45;
}

.hero__media {
	position: relative;
	order: 2;
	align-self: center;
	width: 100%;
	max-width: 100%;
	justify-self: stretch;
}

.hero__media img,
.hero__placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius);
	object-fit: cover;
	box-shadow: 0 30px 80px rgba(17, 52, 87, 0.13);
}

.hero__placeholder {
	display: grid;
	place-items: center;
	padding: 2rem;
	background: linear-gradient(135deg, #e7ebef, #ffffff);
	color: var(--color-text);
	font-family: var(--font-serif);
	font-size: 2rem;
	text-align: center;
}

.hero__caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.1rem;
	background: linear-gradient(180deg, transparent 0%, rgba(12, 37, 66, 0.82) 100%);
	color: #ffffff;
}

.hero__caption-line {
	display: inline-block;
	width: 62px;
	height: 4px;
	border-radius: 999px;
	background: var(--color-accent);
}

.hero__caption p {
	margin-bottom: 0;
	font-family: var(--font-serif);
	font-size: clamp(0.95rem, 2.1vw, 1.2rem);
	font-weight: 700;
}

.button-row {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.75rem 1.1rem;
	border: 1px solid var(--color-text);
	border-radius: var(--radius);
	background: var(--color-text);
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(17, 52, 87, 0.08);
	cursor: pointer;
	transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.button-row .button {
	width: 100%;
}

.button:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-text);
	box-shadow: 0 14px 30px rgba(17, 52, 87, 0.12);
	transform: translateY(-1px);
}

.button--secondary {
	background: transparent;
	color: var(--color-text);
}

.button--secondary:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #ffffff;
}

.hero .button-row {
	gap: 0.85rem;
}

.hero .button {
	min-height: 46px;
	padding: 0.82rem 1.25rem;
	border-color: rgba(17, 52, 87, 0.9);
	background: #113457;
	color: #ffffff;
	font-weight: 700;
	box-shadow: 0 14px 34px rgba(17, 52, 87, 0.12);
}

.hero .button:hover {
	border-color: #163f68;
	background: #163f68;
	color: #ffffff;
	box-shadow: 0 18px 42px rgba(17, 52, 87, 0.16);
	transform: translateY(-2px);
}

.hero .button--secondary {
	border-color: rgba(201, 154, 30, 0.45);
	background: rgba(201, 154, 30, 0.1);
	color: var(--color-text);
	box-shadow: none;
}

.hero .button--secondary:hover {
	border-color: rgba(201, 154, 30, 0.72);
	background: rgba(201, 154, 30, 0.2);
	color: var(--color-text);
	box-shadow: 0 14px 34px rgba(201, 154, 30, 0.12);
}

.button--light {
	border-color: #ffffff;
	background: #ffffff;
	color: var(--color-text);
}

.section-actions {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
	gap: 1.25rem;
}

.card,
.mini-entry {
	border: 1px solid rgba(17, 52, 87, 0.08);
	border-radius: var(--radius);
	background: var(--color-surface);
}

.card {
	position: relative;
	padding: 1.4rem;
	box-shadow: 0 10px 30px rgba(17, 52, 87, 0.05);
}

.card::before {
	display: block;
	width: 30px;
	height: 2px;
	margin-bottom: 1rem;
	background: var(--color-accent);
	content: "";
}

.card--project {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.editorial-grid {
	display: grid;
	gap: 1.25rem;
}

.editorial-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	min-height: 280px;
	padding: 1.45rem;
	border: 1px solid rgba(17, 52, 87, 0.08);
	border-radius: var(--radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 252, 0.94)),
		var(--color-surface);
	box-shadow: 0 10px 28px rgba(17, 52, 87, 0.04);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.editorial-card::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--color-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
}

.editorial-card:hover,
.editorial-card:focus-within {
	border-color: rgba(214, 162, 30, 0.45);
	box-shadow: 0 22px 54px rgba(17, 52, 87, 0.09);
	transform: translateY(-3px);
}

.editorial-card:hover::after,
.editorial-card:focus-within::after {
	transform: scaleX(1);
}

.editorial-card__header,
.media-item__header {
	display: grid;
	gap: 0.55rem;
}

.editorial-card__meta,
.media-item__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.8rem;
	color: var(--color-accent-dark);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
}

.editorial-card__meta span:first-child {
	padding: 0.18rem 0.45rem;
	background: rgba(214, 162, 30, 0.14);
	color: var(--color-text);
	font-weight: 800;
}

.editorial-card__source,
.media-item__source {
	margin-bottom: 0;
	color: var(--color-soft);
	font-weight: 700;
}

.editorial-card h3,
.media-item h3 {
	width: 100%;
	max-width: 28rem;
	min-height: 1.22em;
	font-size: clamp(1.08rem, 2vw, 1.24rem);
	line-height: 1.22;
	overflow-wrap: anywhere;
}

.editorial-card > p:not(.editorial-card__source),
.media-item__content > p:not(.media-item__source) {
	color: #2d4054;
	line-height: 1.62;
}

.editorial-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: auto;
	align-self: end;
}

.media-item__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: auto;
	align-self: flex-start;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-text);
	font-weight: 700;
	text-decoration: none;
}

.text-link:hover {
	color: var(--color-accent-dark);
	text-decoration: underline;
	text-underline-offset: 0.25em;
}

.text-link__icon {
	flex: 0 0 auto;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: transform 180ms ease;
}

.text-link:hover .text-link__icon,
.text-link:focus-visible .text-link__icon {
	transform: translateX(3px);
}

.media-list {
	display: grid;
	gap: 1rem;
}

.media-item {
	display: grid;
	gap: 1rem;
	padding: 1.25rem;
	border: 1px solid rgba(17, 52, 87, 0.08);
	border-radius: var(--radius);
	background: var(--color-surface);
	box-shadow: 0 12px 34px rgba(17, 52, 87, 0.04);
}

.media-item__image {
	width: 100%;
	height: 250px;
	object-fit: contain;
	object-position: center;
	border-radius: var(--radius);
}

.media-item__content {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--radius);
	filter: saturate(0.85);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tag-list li {
	padding: 0.32rem 0.55rem;
	border: 1px solid #d9dee3;
	background: #f1f3f5;
	color: var(--color-soft);
	font-size: 0.8rem;
	font-weight: 700;
}

.timeline {
	display: grid;
	gap: 2rem;
	margin-top: 2.75rem;
}

.timeline-item {
	display: grid;
	gap: 0.9rem;
}

.timeline-item__meta {
	justify-self: start;
	padding: 0.48rem 0.9rem;
	border: 1px solid rgba(201, 154, 30, 0.34);
	background: #f3e4b7;
	color: var(--color-text);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 10px 22px rgba(17, 52, 87, 0.06);
}

.timeline-item__body {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	display: grid;
	gap: 1.25rem;
	min-height: 260px;
	padding: clamp(1.35rem, 3vw, 1.85rem);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.9)),
		#ffffff;
	border: 1px solid rgba(17, 52, 87, 0.075);
	box-shadow: 0 18px 42px rgba(17, 52, 87, 0.045);
	transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.timeline-item__content {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.timeline-item__aside {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.timeline-item__body::after {
	position: absolute;
	inset: auto 0 0 0;
	height: 3px;
	background: var(--color-accent);
	content: "";
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 220ms ease;
}

.timeline-item__body:hover::after,
.timeline-item__body:focus-within::after {
	transform: scaleY(1);
}

.timeline-item__body:hover,
.timeline-item__body:focus-within {
	background: #ffffff;
	box-shadow: 0 24px 58px rgba(17, 52, 87, 0.085);
	transform: translateY(-2px);
}

.timeline-item__logo {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	z-index: -1;
	width: min(36%, 142px);
	max-height: 104px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.09;
	pointer-events: none;
	transition: filter 220ms ease, opacity 220ms ease;
}

.timeline-item__body:hover .timeline-item__logo,
.timeline-item__body:focus-within .timeline-item__logo {
	filter: grayscale(0) contrast(1) brightness(1);
	opacity: 0.28;
}

.timeline-item__location {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.45rem;
	color: var(--color-accent-dark);
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
}

.timeline-item__location::before {
	display: inline-block;
	width: 18px;
	height: 2px;
	background: var(--color-accent);
	content: "";
}

.timeline-item__body h3 {
	position: relative;
	max-width: calc(100% - 4.75rem);
	margin-bottom: 0.35rem;
	font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.timeline-item__company {
	position: relative;
	color: var(--color-soft);
	font-weight: 700;
}

.timeline-item__content > p:not(.timeline-item__location):not(.timeline-item__company) {
	position: relative;
	color: #2d4054;
	line-height: 1.58;
}

.timeline-item__details {
	position: relative;
	display: grid;
	gap: 0.45rem;
	margin: 1rem 0 0;
	padding: 0.85rem 0 0;
	border-top: 1px solid rgba(17, 52, 87, 0.065);
}

.timeline-item__details div {
	display: grid;
	gap: 0.15rem;
}

.timeline-item__details dt {
	color: var(--color-accent-dark);
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
}

.timeline-item__details dd {
	margin: 0;
	color: #2d4054;
	font-size: 0.86rem;
	line-height: 1.45;
}

.timeline-item__details a {
	color: inherit;
	font-weight: 700;
}

.timeline-item__body ul {
	position: relative;
	display: grid;
	gap: 0.45rem;
	margin-top: 1rem;
	list-style: none;
	padding-left: 0;
}

.timeline-item__body li {
	position: relative;
	padding-left: 1.1rem;
	color: #2d4054;
}

.timeline-item__body li::before {
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-accent);
	content: "";
}

.timeline-item__pdf {
	position: relative;
	display: block;
	width: min(88px, 30vw);
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: 1px solid rgba(17, 52, 87, 0.1);
	border-radius: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 238, 210, 0.55) 100%);
	box-shadow:
		0 12px 24px rgba(17, 52, 87, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition:
		transform 220ms ease,
		box-shadow 220ms ease,
		border-color 220ms ease,
		background-color 220ms ease;
}

.timeline-item__pdf::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(17, 52, 87, 0.04) 0%, rgba(17, 52, 87, 0) 38%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 246, 234, 0.72));
	content: "";
}

.timeline-item__pdf::after {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 0;
	height: 0;
	border-top: 14px solid rgba(201, 154, 30, 0.22);
	border-left: 16px solid transparent;
	content: "";
}

.timeline-item__pdf--preview::before,
.timeline-item__pdf--preview::after {
	display: none;
}

.timeline-item__pdf-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 300ms ease;
}

.timeline-item__pdf-overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem;
	padding: 0.38rem 0.42rem;
	background: transparent;
	color: var(--color-navy);
}

.timeline-item__pdf-overlay .timeline-item__pdf-mark {
	padding: 0;
	background: transparent;
	color: var(--color-navy);
	box-shadow: none;
}

.timeline-item__pdf-action {
	font-size: 0.46rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.1;
	text-align: right;
	text-transform: uppercase;
}

.timeline-item__pdf-action::after {
	display: inline-block;
	margin-left: 0.16rem;
	content: "\2197";
}

.timeline-item__pdf:hover,
.timeline-item__pdf:focus-within {
	transform: translateY(-2px);
	border-color: rgba(201, 154, 30, 0.38);
	background-color: #ffffff;
	box-shadow:
		0 16px 30px rgba(17, 52, 87, 0.12),
		0 0 0 1px rgba(201, 154, 30, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.timeline-item__pdf--preview:hover .timeline-item__pdf-image,
.timeline-item__pdf--preview:focus-within .timeline-item__pdf-image {
	transform: scale(1.035);
}

.timeline-item__pdf-sheet {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0.5rem 0.45rem 0.4rem;
}

.timeline-item__pdf-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.3rem;
}

.timeline-item__pdf-mark {
	align-self: flex-start;
	padding: 0.14rem 0.3rem;
	background: linear-gradient(135deg, var(--color-navy), var(--color-navy-soft));
	color: #ffffff;
	font-size: 0.5rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	box-shadow: 0 4px 10px rgba(17, 52, 87, 0.16);
}

.timeline-item__pdf-type {
	color: var(--color-accent-dark);
	font-size: 0.48rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.timeline-item__pdf-title {
	display: -webkit-box;
	margin: 0.3rem 0 auto;
	overflow: hidden;
	color: var(--color-navy-soft);
	font-size: 0.62rem;
	font-weight: 600;
	line-height: 1.2;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.timeline-item__pdf-caption {
	margin: 0.24rem 0 0.34rem;
	color: rgba(17, 52, 87, 0.68);
	font-size: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.timeline-item__pdf-lines {
	display: block;
	height: 20px;
	background:
		repeating-linear-gradient(
			180deg,
			rgba(201, 154, 30, 0.16) 0,
			rgba(201, 154, 30, 0.16) 2px,
			transparent 2px,
			transparent 6px
		);
}

.timeline-item__pdf-link {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.split-list {
	display: grid;
	gap: 1.25rem;
}

.mini-entry {
	padding: 1rem;
}

.mini-entry p {
	margin-bottom: 0.25rem;
	color: var(--color-soft);
}

.section--cta {
	background: var(--color-text);
	color: #ffffff;
}

.section--cta h2,
.section--cta .eyebrow,
.section--cta a {
	color: #ffffff;
}

.section--cta .eyebrow {
	color: var(--color-accent);
}

.cta {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

.contact-layout {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.25rem);
	min-width: 0;
}

.contact-panel {
	display: grid;
	gap: 1rem;
	min-width: 0;
}

.contact-section .section-heading {
	align-self: start;
	max-width: 48rem;
}

.contact-form-card {
	border: 1px solid rgba(17, 52, 87, 0.09);
	background: var(--color-surface);
	box-shadow: 0 18px 44px rgba(17, 52, 87, 0.06);
}

.contact-form-card {
	padding: clamp(1rem, 2.4vw, 1.5rem);
	border-radius: 10px;
	min-width: 0;
	width: 100%;
}

.contact-form-card h3 {
	margin-bottom: 0.75rem;
	font-size: 1.05rem;
}

.contact-form {
	display: grid;
	gap: 0.75rem;
	min-width: 0;
}

.form-field {
	display: grid;
	gap: 0.28rem;
	margin: 0;
	min-width: 0;
}

.form-field label {
	color: var(--color-text);
	font-size: 0.8rem;
	font-weight: 800;
}

.form-field input,
.form-field textarea {
	width: 100%;
	min-width: 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fbfcfb;
	color: var(--color-ink);
	font: inherit;
}

.form-field input {
	min-height: 46px;
	padding: 0.65rem 0.8rem;
}

.form-field textarea {
	min-height: 140px;
	padding: 0.75rem 0.8rem;
	resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--color-accent);
	outline: 3px solid rgba(201, 154, 30, 0.18);
	outline-offset: 0;
}

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

.form-notice {
	margin: 0;
	padding: 0.55rem 0;
	background: transparent;
	font-weight: 700;
}

.form-notice--success {
	color: #25633f;
}

.form-notice--error {
	color: #9b2c2c;
}

.contact-form__notice-slot[hidden] {
	display: none;
}

.contact-form__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	min-width: 0;
}

.contact-form .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	justify-self: start;
	width: 100%;
	min-height: 48px;
	border-color: var(--color-accent);
	background: var(--color-accent);
	color: var(--color-text);
	cursor: pointer;
	overflow: hidden;
}

.contact-form__notice-slot {
	width: 100%;
	min-width: 0;
	overflow-wrap: anywhere;
}

.contact-form__submit-plane {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1rem;
	height: 1.1rem;
	transform-origin: center;
}

.contact-form__submit-plane svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.contact-form__submit-label {
	position: relative;
	z-index: 1;
}

.contact-form__submit.is-submitting,
.contact-form__submit.is-success {
	pointer-events: none;
}

.contact-form__submit.is-submitting {
	color: #ffffff;
	background: #113457;
	border-color: #113457;
}

.contact-form__submit.is-submitting .contact-form__submit-plane {
	animation: contact-button-plane-send 1.15s cubic-bezier(0.22, 0.9, 0.18, 1) infinite;
}

.contact-form__submit.is-submitting .contact-form__submit-label {
	animation: contact-button-label-pulse 1.15s ease-in-out infinite;
}

.contact-form__submit.is-success {
	color: #ffffff;
	background: #25633f;
	border-color: #25633f;
}

.contact-form__submit.is-success .contact-form__submit-plane {
	animation: contact-button-plane-success 720ms cubic-bezier(0.18, 0.88, 0.24, 1) both;
}

.contact-form .button:hover {
	border-color: var(--color-text);
	background: var(--color-text);
	color: #ffffff;
}

@keyframes contact-button-plane-send {
	0% {
		transform: translateX(0) translateY(0) rotate(0deg) scale(1);
	}

	25% {
		transform: translateX(0.12rem) translateY(-0.08rem) rotate(-8deg) scale(1.02);
	}

	50% {
		transform: translateX(0.42rem) translateY(-0.22rem) rotate(-14deg) scale(1.05);
	}

	75% {
		transform: translateX(0.78rem) translateY(-0.08rem) rotate(-4deg) scale(0.98);
	}

	100% {
		transform: translateX(0) translateY(0) rotate(0deg) scale(1);
	}
}

@keyframes contact-button-plane-success {
	0% {
		transform: translateX(-0.2rem) translateY(0.1rem) rotate(-10deg) scale(0.92);
	}

	60% {
		transform: translateX(0.38rem) translateY(-0.28rem) rotate(-14deg) scale(1.08);
	}

	100% {
		transform: translateX(0) translateY(0) rotate(0deg) scale(1);
	}
}

@keyframes contact-button-label-pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.72;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-form__submit-plane,
	.contact-form__submit-label {
		opacity: 1;
		transform: none;
		animation: none !important;
	}
}

@media (max-width: 359px) {
	.contact-form-card {
		padding: 0.85rem;
	}

	.contact-form-card h3 {
		font-size: 1rem;
	}

	.form-field label {
		font-size: 0.76rem;
	}

	.form-field input,
	.form-field textarea {
		font-size: 16px;
	}

	.form-field input {
		min-height: 44px;
		padding-inline: 0.7rem;
	}

	.form-field textarea {
		min-height: 128px;
		padding-inline: 0.7rem;
	}

	.contact-form .button {
		gap: 0.5rem;
		padding-inline: 0.85rem;
	}

	.contact-form__submit-label {
		white-space: normal;
		text-align: center;
	}
}

.site-footer {
	padding: 3.2rem 0 2rem;
	background: var(--color-text);
	color: #ffffff;
}

.site-footer__inner {
	display: grid;
	align-items: center;
	gap: 2rem;
	text-align: center;
}

.site-footer__brand {
	display: grid;
	gap: 0.85rem;
	justify-items: center;
}

.site-footer__name {
	margin-bottom: 0;
	color: #ffffff;
	font-family: var(--font-serif);
	font-size: clamp(1.45rem, 3vw, 1.85rem);
	font-weight: 700;
	line-height: 1.1;
}

.site-footer__summary {
	max-width: 34rem;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.96rem;
	line-height: 1.65;
}

.site-footer__heading {
	margin-bottom: 0.9rem;
	color: var(--color-gold-soft);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.site-footer__copy {
	margin-bottom: 0;
	font-size: 0.8125rem;
	font-weight: 400;
}

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

.footer-nav a,
.site-footer__legal a,
.site-footer__developer-credit a {
	color: rgba(255, 255, 255, 0.86);
	font-weight: 400;
	text-decoration-thickness: 0.08em;
}

.footer-nav a {
	font-size: 1rem;
}

.site-footer__legal a {
	font-size: 0.8125rem;
}

.site-footer__developer-credit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin: 0;
	font-size: 0.8125rem;
	text-align: center;
}

.site-footer__developer-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
}

.site-footer__developer-logo {
	display: block;
	width: auto;
	max-width: 4.5rem;
	height: 1.2rem;
	object-fit: contain;
}

.footer-nav a:hover,
.site-footer__legal a:hover,
.site-footer__developer-credit a:hover {
	color: var(--color-gold-soft);
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem 1rem;
}

.site-footer__contacts {
	display: grid;
	justify-items: center;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.7rem 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #ffffff;
	font-weight: 400;
	text-decoration-thickness: 0.08em;
}

.social-links a:hover {
	color: var(--color-gold-soft);
}

.social-links__icon {
	flex: 0 0 auto;
	width: 1.05rem;
	height: 1.05rem;
	fill: currentColor;
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
	margin-top: 2.4rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.78);
	text-align: center;
}

.back-to-top {
	position: fixed;
	right: max(1rem, env(safe-area-inset-right));
	bottom: max(1rem, env(safe-area-inset-bottom));
	z-index: 40;
	display: inline-grid;
	place-items: center;
	width: 2.85rem;
	height: 2.85rem;
	padding: 0;
	border: 1px solid rgba(201, 154, 30, 0.52);
	border-radius: var(--radius);
	background: rgba(17, 52, 87, 0.94);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(17, 52, 87, 0.18);
	cursor: pointer;
	opacity: 0;
	transform: translateY(0.45rem);
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		opacity 180ms ease,
		transform 180ms ease,
		box-shadow 180ms ease;
}

.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.back-to-top:hover {
	border-color: var(--color-accent);
	background: var(--color-navy-soft);
	color: var(--color-gold-soft);
	box-shadow: 0 18px 38px rgba(17, 52, 87, 0.24);
	transform: translateY(-0.12rem);
}

.back-to-top__icon {
	width: 1.15rem;
	height: 1.15rem;
	fill: currentColor;
}

.content-entry {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--color-border);
}

.content-entry--singular {
	max-width: 70rem;
	margin-inline: auto;
	border-bottom: 0;
}

.content-entry--singular .content-entry__title {
	max-width: none;
	margin-bottom: 2rem;
	font-size: clamp(2.35rem, 4vw, 3.5rem);
}

.content-entry--singular .content-entry__body {
	max-width: 74ch;
}

.content-entry--singular .content-entry__body > * + * {
	margin-top: 1.15rem;
}

.content-entry--singular .content-entry__body h2 {
	max-width: none;
	margin-top: 2.4rem;
	margin-bottom: 0.7rem;
	font-family: var(--font-sans);
	font-size: clamp(1.2rem, 1.7vw, 1.5rem);
	line-height: 1.35;
}

.content-entry--singular .content-entry__body p,
.content-entry--singular .content-entry__body li {
	line-height: 1.75;
}

.single-entry {
	background: var(--color-bg);
}

.single-entry__header {
	padding: clamp(2.25rem, 6vw, 3.75rem) 0 clamp(1.4rem, 3vw, 2rem);
	background:
		linear-gradient(180deg, #ffffff 0%, rgba(247, 248, 246, 0.96) 100%),
		var(--color-surface);
	border-bottom: 1px solid rgba(17, 52, 87, 0.08);
}


@media (min-width: 480px) {
	.button-row {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.button-row .button {
		width: auto;
	}

	.hero__caption {
		padding: 1rem 1.2rem;
	}

	.timeline-item__body {
		padding: 1.65rem;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
	}

	.timeline-item__logo {
		width: min(30%, 140px);
		max-height: 104px;
	}

	.timeline-item__pdf {
		width: clamp(78px, 15vw, 88px);
	}
}

@media (min-width: 760px) {
	h1 {
		font-size: 4.4rem;
	}

	h2 {
		font-size: 3.1rem;
	}

	.site-nav-toggle {
		display: none;
	}

	.site-nav {
		position: static;
		display: block;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.site-nav__list {
		flex-direction: row;
		align-items: center;
	}

	.site-nav__link {
		padding: 0.5rem 0.65rem;
	}

	.site-brand__name {
		font-size: clamp(1.6rem, 1.55vw, 2rem);
	}

	.single-entry__image--aside {
		position: sticky;
		top: 110px;
		align-self: start;
		height: calc(100vh - 140px);
		max-height: calc(100vh - 140px);
		object-fit: contain;
	}

	.hero__grid {
		gap: 2.5rem;
	}

	.hero h1 {
		max-width: 16ch;
	}

	.hero__summary {
		max-width: 38rem;
	}

	.hero__media {
		max-width: 620px;
		justify-self: center;
	}

	.hero__media img,
	.hero__placeholder {
		aspect-ratio: 16 / 9;
	}

	.section-grid {
		grid-template-columns: 0.82fr 1.18fr;
	}

	.contact-layout {
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
	}

	.contact-panel {
		width: 100%;
	}

	.contact-form {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: start;
		column-gap: 1rem;
	}

	.form-field--message,
	.contact-form__actions {
		grid-column: 1 / -1;
	}

	.contact-form__actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.contact-form .button {
		width: auto;
	}

	.contact-form__notice-slot {
		flex: 1 1 14rem;
		min-width: min(100%, 14rem);
	}

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

	.media-item {
		grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
		align-items: stretch;
		padding: 1.5rem;
	}

	.media-item__image {
		width: 100%;
		height: 250px;
		min-height: 0;
	}

	.split-list,
	.cta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta .button {
		justify-self: end;
	}

	.site-footer__inner {
		grid-template-columns: repeat(3, minmax(0, 30%));
		justify-content: space-between;
		align-items: start;
		text-align: left;
	}

	.site-footer__brand {
		justify-items: start;
	}

	.footer-nav,
	.site-footer__contacts {
		text-align: center;
	}

	.footer-nav {
		display: grid;
		justify-items: center;
	}

	.site-footer__contacts {
		justify-items: center;
	}

	.footer-nav__list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 0.45rem 1rem;
	}

	.social-links {
		justify-content: center;
	}

	.site-footer__bottom {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		align-items: center;
		gap: 1rem;
		text-align: left;
	}

	.site-footer__copy {
		grid-column: 1;
		justify-self: start;
	}

	.site-footer__developer-credit {
		grid-column: 2;
		justify-self: center;
	}

	.site-footer__legal {
		grid-column: 3;
		justify-self: end;
		justify-content: flex-end;
		text-align: right;
	}
}

@media (min-width: 960px) {
	.hero {
		min-height: 95svh;
		display: flex;
		align-items: center;
		padding-block: 0 1.5rem;
	}

	.hero__content {
		order: 1;
		padding-top: 0;
	}

	.hero__grid {
		grid-template-columns: minmax(0, 60%) minmax(0, 40%);
		gap: clamp(3rem, 6vw, 5rem);
		align-items: center;
		min-height: calc(95svh - 3rem);
	}

	.hero__media {
		order: 2;
		width: min(100%, 740px);
		height: clamp(460px, 70vh, 680px);
		justify-self: end;
	}

	.hero__media img,
	.hero__placeholder {
		height: 100%;
		aspect-ratio: auto;
	}

}

@media (min-width: 1024px) {
	.timeline {
		position: relative;
		gap: 3rem;
		width: 100%;
		margin-top: 3.5rem;
		padding-left: 0;
	}

	.timeline::before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		width: 1px;
		background: linear-gradient(180deg, transparent, rgba(17, 52, 87, 0.11) 12%, rgba(17, 52, 87, 0.11) 88%, transparent);
		content: "";
	}

	.timeline-item {
		position: relative;
		display: grid;
		gap: 0.8rem;
		width: calc(50% - 2rem);
		--timeline-marker-y: 0.93rem;
	}

	.timeline-item:nth-child(odd) {
		margin-left: auto;
	}

	.timeline-item:nth-child(even) {
		margin-right: auto;
	}

	.timeline-item:nth-child(even) .timeline-item__meta {
		justify-self: end;
	}

	.timeline-item__meta {
		position: relative;
		z-index: 2;
		justify-self: start;
		min-width: max-content;
		text-align: center;
		box-shadow: 0 10px 22px rgba(17, 52, 87, 0.08);
	}

	.timeline-item::after {
		position: absolute;
		top: var(--timeline-marker-y);
		width: 1.35rem;
		height: 2px;
		background: var(--color-accent);
		content: "";
	}

	.timeline-item:nth-child(odd)::after {
		left: -2rem;
	}

	.timeline-item:nth-child(even)::after {
		right: -2rem;
	}
}

@media (min-width: 1280px) {
	.section-heading--wide {
		max-width: none;
	}

	.section-heading--wide .section-lead {
		white-space: nowrap;
	}

	.hero {
		padding-block: 0 2rem;
	}

	.hero__content {
		padding-top: 0;
	}

	.hero h1 {
		max-width: 15.5ch;
		font-size: 5rem;
	}

	.hero__summary {
		max-width: 37rem;
		font-size: 1.16rem;
	}

	.hero__media {
		width: min(100%, 800px);
		height: clamp(540px, 72vh, 780px);
	}

	.contact-panel {
		max-width: none;
	}

	.contact-form .button {
		width: auto;
	}
}

@media (min-width: 1536px) {
	.hero > .container {
		width: 90%;
		max-width: 1760px;
	}

	.hero h1 {
		font-size: 5.5rem;
	}

	.hero__summary {
		font-size: 1.08rem;
	}

	.hero__media {
		height: clamp(620px, 68vh, 860px);
	}
}

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

	.timeline-item__body::after {
		transition: none;
	}

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