:root {
	--color-charcoal: #171513;
	--color-charcoal-soft: #27231f;
	--color-ivory: #fbf7ee;
	--color-paper: #fffdf8;
	--color-gold: #b9975b;
	--color-gold-soft: #eadfc9;
	--color-muted: #6f6960;
	--color-border: rgba(23, 21, 19, 0.12);
	--color-border-dark: rgba(255, 253, 248, 0.14);
	--font-heading: Georgia, "Times New Roman", serif;
	--font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--space-xs: 0.5rem;
	--space-sm: 0.85rem;
	--space-md: 1.25rem;
	--space-lg: 2rem;
	--space-xl: 3.5rem;
	--space-2xl: 5.5rem;
	--radius-card: 22px;
	--radius-pill: 999px;
	--shadow-soft: 0 24px 70px rgba(23, 21, 19, 0.10);
	--shadow-card: 0 14px 42px rgba(23, 21, 19, 0.08);
	--container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-ivory);
	color: var(--color-charcoal);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

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

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

a:hover {
	color: var(--color-gold);
}

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

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

.skip-link:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--color-paper);
	color: var(--color-charcoal);
	clip: auto;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-card);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: 0;
	margin: 0;
}

h1 {
	font-size: clamp(3.4rem, 7vw, 7.2rem);
}

h2 {
	font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
	font-size: 1.45rem;
}

p {
	margin: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(23, 21, 19, 0.96);
	color: var(--color-paper);
	border-bottom: 1px solid var(--color-border-dark);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--space-lg);
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 0.95rem 2rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.site-brand__logo img {
	max-height: 42px;
	width: auto;
}

.site-brand__name {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	line-height: 1;
	white-space: nowrap;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.15rem;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 0.92rem;
}

.primary-menu li {
	position: relative;
}

.primary-menu a,
.header-actions a {
	text-decoration: none;
}

.primary-menu__dropdown-label {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	cursor: default;
}

.primary-menu__dropdown-label::after {
	content: "v";
	color: rgba(255, 253, 248, 0.62);
	font-size: 0.82em;
	line-height: 1;
}

.primary-menu__dropdown {
	position: absolute;
	top: calc(100% + 0.85rem);
	left: 50%;
	z-index: 120;
	display: grid;
	min-width: 190px;
	padding: 0.5rem;
	margin: 0;
	list-style: none;
	background: rgba(23, 21, 19, 0.98);
	border: 1px solid var(--color-border-dark);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -4px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.primary-menu__dropdown a {
	display: block;
	padding: 0.62rem 0.75rem;
	border-radius: 8px;
	white-space: nowrap;
}

.primary-menu__dropdown a:hover,
.primary-menu__dropdown a:focus {
	background: rgba(255, 253, 248, 0.08);
	color: var(--color-paper);
}

.menu-item--press-media:hover .primary-menu__dropdown,
.menu-item--press-media:focus-within .primary-menu__dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.menu-item--press-media::after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 220px;
	height: 1rem;
	content: "";
	transform: translateX(-50%);
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.7rem;
}

.primary-navigation__actions {
	display: none;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: rgba(255, 253, 248, 0.78);
	font-size: 0.82rem;
	white-space: nowrap;
}

.language-switcher a {
	text-decoration: none;
}

.header-button,
.button,
.newsletter-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.78rem 1.1rem;
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-button {
	background: var(--color-gold);
	color: var(--color-charcoal);
}

.header-button--quiet {
	background: transparent;
	color: var(--color-paper);
	border-color: var(--color-border-dark);
}

.header-button--magical {
	background: rgba(255, 253, 248, 0.03);
	color: var(--color-paper);
	border-color: rgba(185, 151, 91, 0.62);
}

.header-button--newsletter {
	background: transparent;
	color: var(--color-paper);
	border-color: var(--color-border-dark);
}

.button:hover,
.header-button:hover,
.newsletter-form button:hover {
	transform: translateY(-1px);
}

.button--primary:hover {
	color: var(--color-charcoal);
}

.button--secondary:hover,
.header-button--quiet:hover,
.header-button--magical:hover,
.header-button--newsletter:hover {
	color: var(--color-paper);
}

.button--ghost:hover {
	color: var(--color-charcoal);
}

.button--linkedin,
.header-button--linkedin {
	gap: 0.55rem;
	background: #0a66c2;
	color: #fff;
	border-color: #0a66c2;
}

.button.button--linkedin {
	background: #0a66c2;
	color: #fff;
	border-color: #0a66c2;
}

.hero-section .button--linkedin {
	background: #0a66c2;
	color: #fff;
	border-color: #0a66c2;
}

.button--linkedin:hover,
.button.button--linkedin:hover,
.header-button--linkedin:hover,
.hero-section .button--linkedin:hover {
	background: #084f95;
	border-color: #084f95;
	color: #fff;
}

.button__linkedin-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	flex: 0 0 auto;
	background: #fff;
	border-radius: 3px;
	color: #0a66c2;
	font-size: 0;
	line-height: 1;
}

.button__linkedin-icon::before {
	color: #0a66c2;
	content: "in";
	font-family: Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0;
}

.button--primary {
	background: var(--color-gold);
	color: var(--color-charcoal);
}

.button--secondary {
	background: var(--color-charcoal);
	color: var(--color-paper);
}

.button--ghost {
	background: transparent;
	color: var(--color-charcoal);
	border-color: var(--color-border);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--color-border-dark);
	border-radius: 50%;
	color: var(--color-paper);
	cursor: pointer;
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: currentColor;
	content: "";
	transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle__line::before {
	transform: translateY(-6px);
}

.menu-toggle__line::after {
	transform: translateY(4px);
}

body.menu-open .menu-toggle__line {
	transform: rotate(45deg);
}

body.menu-open .menu-toggle__line::before {
	opacity: 0;
}

body.menu-open .menu-toggle__line::after {
	transform: translateY(-2px) rotate(-90deg);
}

.hero-section {
	background: var(--color-charcoal);
	color: var(--color-paper);
}

.hero-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 6rem);
	max-width: calc(var(--container) + 64px);
	min-height: calc(100vh - 76px);
	margin: 0 auto;
	padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.eyebrow {
	margin-bottom: var(--space-md);
	color: var(--color-gold);
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero-copy__lead {
	max-width: 720px;
	margin-top: var(--space-lg);
	color: rgba(255, 253, 248, 0.82);
	font-size: clamp(1.1rem, 1.7vw, 1.35rem);
	line-height: 1.75;
}

.hero-copy__note {
	margin-top: var(--space-md);
	color: var(--color-gold-soft);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: var(--space-lg);
}

.button-row--section {
	margin-top: 1.4rem;
}

.hero-section .button--ghost {
	color: var(--color-paper);
	border-color: var(--color-border-dark);
}

.hero-portrait {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	border: 1px solid var(--color-border-dark);
	border-radius: 34px;
	background:
		linear-gradient(145deg, rgba(185, 151, 91, 0.30), rgba(255, 253, 248, 0.04)),
		var(--color-charcoal-soft);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.hero-portrait img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	opacity: 0.88;
}

.credibility-strip {
	background: var(--color-paper);
	border-bottom: 1px solid var(--color-border);
}

.credibility-strip__inner {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 1.35rem 2rem;
}

.credibility-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 1.2rem;
	border-left: 1px solid var(--color-border);
}

.credibility-item:first-child {
	border-left: 0;
}

.credibility-item span {
	width: 9px;
	height: 9px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--color-gold);
}

.credibility-item strong {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.2;
}

.section {
	padding: var(--space-2xl) 0;
}

.section--warm {
	background: #f4ecdf;
}

.section--muted {
	background: #f1eee8;
}

.section__inner {
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 0 2rem;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-xl);
	margin-bottom: var(--space-xl);
}

.section-heading p,
.investment-panel p,
.linkedin-callout p,
.newsletter-panel p,
.side-callout p,
.archive-description {
	max-width: 690px;
	color: var(--color-muted);
}

.section-heading--wide {
	align-items: start;
}

.investment-panel,
.newsletter-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-lg);
	padding: clamp(2rem, 5vw, 3.25rem);
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.section--investment {
	padding-bottom: 0;
}

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

.card-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.content-card {
	overflow: hidden;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.content-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-soft);
}

.content-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 1.35 / 1;
	background: var(--color-gold-soft);
}

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

.content-card:hover .content-card__image img {
	transform: scale(1.025);
}

.content-card__body {
	padding: 1.2rem;
}

.content-card__meta,
.article-kicker {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	min-height: 1.6rem;
	margin-bottom: 0.7rem;
	color: var(--color-muted);
	font-size: 0.82rem;
}

.language-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	min-height: 1.5rem;
	padding: 0.2rem 0.5rem;
	border: 1px solid rgba(185, 151, 91, 0.4);
	border-radius: var(--radius-pill);
	background: rgba(185, 151, 91, 0.12);
	color: #7d6032;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
}

.language-badge--translation {
	min-width: auto;
	background: rgba(23, 21, 19, 0.08);
	border-color: rgba(23, 21, 19, 0.16);
	color: var(--color-charcoal);
}

.content-card h3 a {
	text-decoration: none;
}

.content-card p {
	margin-top: 0.75rem;
	color: var(--color-muted);
	font-size: 0.96rem;
	line-height: 1.65;
}

.read-more,
.section-link {
	display: inline-flex;
	margin-top: 1rem;
	color: var(--color-charcoal);
	font-weight: 750;
	text-decoration-color: var(--color-gold);
}

.section-link {
	margin-top: var(--space-lg);
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: var(--space-lg);
	align-items: start;
}

.side-callout {
	position: sticky;
	top: 110px;
	padding: 1.5rem;
	background: var(--color-charcoal);
	color: var(--color-paper);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.side-callout p {
	color: rgba(255, 253, 248, 0.78);
}

.side-callout .button {
	margin-top: 1.25rem;
	background: var(--color-gold);
	color: var(--color-charcoal);
}

.linkedin-callout {
	padding: var(--space-2xl) 0;
	background: var(--color-charcoal);
	color: var(--color-paper);
}

.linkedin-callout__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-xl);
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 0 2rem;
}

.linkedin-callout p {
	color: rgba(255, 253, 248, 0.78);
}

.linkedin-callout__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.7rem;
	flex: 0 0 auto;
}

.linkedin-callout__archive-link {
	color: rgba(255, 253, 248, 0.74);
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

.linkedin-callout__archive-link:hover {
	color: var(--color-paper);
}

.newsletter-form {
	display: flex;
	min-width: min(100%, 460px);
	gap: 0.7rem;
}

.newsletter-form input,
.search-form input[type="search"] {
	width: 100%;
	min-height: 48px;
	padding: 0.85rem 1rem;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	color: var(--color-charcoal);
	font: inherit;
}

.newsletter-form button,
.search-form input[type="submit"] {
	background: var(--color-charcoal);
	color: var(--color-paper);
	border: 0;
}

.archive-hero,
.not-found {
	padding: var(--space-2xl) 0 var(--space-xl);
	background: var(--color-paper);
	border-bottom: 1px solid var(--color-border);
}

.archive-hero h1,
.not-found h1,
.article-header h1 {
	max-width: 960px;
}

.archive-description {
	margin-top: 1rem;
}

.single-article,
.page-article {
	max-width: 860px;
	margin: 0 auto;
	padding: var(--space-2xl) 2rem;
}

.article-header {
	margin-bottom: var(--space-lg);
}

.article-featured-image {
	margin: 0 0 var(--space-xl);
	overflow: hidden;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.article-featured-image img {
	width: 100%;
}

.article-content {
	font-size: 1.08rem;
	line-height: 1.85;
}

.article-content > * {
	margin-top: 1.35rem;
	margin-bottom: 0;
}

.article-content > *:first-child {
	margin-top: 0;
}

.article-content h2,
.article-content h3 {
	margin-top: 2.4rem;
}

.article-content a {
	color: #826335;
	font-weight: 650;
}

.article-content blockquote {
	margin-left: 0;
	padding-left: 1.3rem;
	border-left: 3px solid var(--color-gold);
	color: var(--color-muted);
	font-family: var(--font-heading);
	font-size: 1.35rem;
	line-height: 1.55;
}

.article-content img {
	border-radius: 16px;
}

.single-article__footer {
	margin-top: var(--space-xl);
}

.single-cta,
.empty-state,
.not-found__inner {
	padding: 2rem;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: var(--space-lg);
}

.post-navigation div:last-child {
	text-align: right;
}

.related-posts {
	padding-top: 0;
}

.navigation.pagination {
	margin-top: var(--space-xl);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0.35rem 0.75rem;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	text-decoration: none;
}

.page-numbers.current {
	background: var(--color-charcoal);
	color: var(--color-paper);
}

.search-form {
	display: flex;
	gap: 0.7rem;
	max-width: 620px;
	margin-top: var(--space-lg);
}

.site-footer {
	background: #0f0e0d;
	color: var(--color-paper);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-lg);
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 2.2rem 2rem;
}

.site-footer__name {
	font-family: var(--font-heading);
	font-size: 1.35rem;
}

.site-footer a {
	color: rgba(255, 253, 248, 0.78);
	text-decoration: none;
}

.site-footer__nav {
	display: flex;
	align-items: start;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.75rem 1.2rem;
}

.site-footer__copyright {
	grid-column: 1 / -1;
	color: rgba(255, 253, 248, 0.55);
	font-size: 0.9rem;
}

@media (max-width: 1080px) {
	.site-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		order: 3;
		justify-self: end;
	}

	.primary-navigation {
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		display: none;
		padding: 1rem 2rem 1.5rem;
		background: rgba(23, 21, 19, 0.98);
		border-bottom: 1px solid var(--color-border-dark);
	}

	body.menu-open .primary-navigation {
		display: block;
	}

	.primary-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0.2rem;
	}

	.primary-menu a,
	.primary-menu__dropdown-label {
		display: block;
		padding: 0.75rem 0;
	}

	.primary-menu__dropdown-label::after {
		content: "";
	}

	.primary-menu__dropdown {
		position: static;
		display: grid;
		min-width: 0;
		padding: 0 0 0 1rem;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.menu-item--press-media::after {
		display: none;
	}

	.primary-menu__dropdown a {
		padding: 0.55rem 0;
		color: rgba(255, 253, 248, 0.78);
	}

	.primary-navigation__actions {
		display: flex;
		flex-wrap: wrap;
		gap: 0.65rem;
		padding-top: 1rem;
	}

	.primary-navigation__actions .header-button {
		display: inline-flex;
	}

	.header-actions {
		justify-content: end;
	}

	.header-button {
		display: none;
	}

	.hero-section__inner,
	.split-layout {
		grid-template-columns: 1fr;
	}

	.hero-section__inner {
		min-height: auto;
	}

	.hero-portrait {
		min-height: 420px;
	}

	.hero-portrait img {
		min-height: 420px;
	}

	.credibility-strip__inner,
	.card-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.credibility-item:nth-child(odd) {
		border-left: 0;
	}

	.side-callout {
		position: static;
	}
}

@media (max-width: 760px) {
	body {
		font-size: 16px;
	}

	h1 {
		font-size: clamp(3rem, 16vw, 4.4rem);
	}

	.site-header__inner {
		padding: 0.8rem 1rem;
		gap: 0.75rem;
	}

	.site-brand__name {
		font-size: 1.05rem;
	}

	.language-switcher {
		font-size: 0.78rem;
	}

	.hero-section__inner,
	.section__inner,
	.linkedin-callout__inner,
	.site-footer__inner,
	.single-article,
	.page-article {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.hero-section__inner {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.hero-portrait,
	.hero-portrait img {
		min-height: 340px;
	}

	.credibility-strip__inner,
	.card-grid--3,
	.card-grid--4,
	.post-navigation,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.credibility-item {
		border-left: 0;
		border-top: 1px solid var(--color-border);
		padding-left: 0;
	}

	.credibility-item:first-child {
		border-top: 0;
	}

	.section,
	.linkedin-callout {
		padding: 3.6rem 0;
	}

	.section-heading,
	.investment-panel,
	.newsletter-panel,
	.linkedin-callout__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 1.4rem;
	}

	.newsletter-form,
	.search-form {
		flex-direction: column;
		width: 100%;
		min-width: 0;
	}

	.post-navigation div:last-child,
	.site-footer__nav {
		text-align: left;
		justify-content: flex-start;
	}
}

/* Mockup-inspired homepage refinements. */
.home .site-header,
.front-page .site-header {
	box-shadow: 0 1px 0 rgba(255, 253, 248, 0.06);
}

.hero-section {
	position: relative;
	overflow: hidden;
	background: var(--color-ivory);
	color: var(--color-charcoal);
	border-bottom: 1px solid var(--color-border);
}

.hero-section__inner {
	grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
	gap: 0;
	max-width: none;
	min-height: 430px;
	padding: 0;
}

.hero-copy {
	position: relative;
	z-index: 2;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 620px;
	padding: 2.3rem 2rem 2.2rem clamp(2rem, 5vw, 6.2rem);
	background: linear-gradient(90deg, var(--color-ivory) 0%, rgba(251, 247, 238, 0.97) 72%, rgba(251, 247, 238, 0) 100%);
}

.hero-copy h1 {
	font-size: clamp(3.6rem, 5vw, 5.9rem);
	line-height: 0.94;
}

.hero-rule {
	display: block;
	width: 54px;
	height: 2px;
	margin-top: 1rem;
	background: var(--color-gold);
}

.hero-copy__lead {
	max-width: 520px;
	margin-top: 1.25rem;
	color: #44413c;
	font-size: 1rem;
	line-height: 1.55;
}

.hero-copy__note {
	margin-top: 0.95rem;
	color: #44413c;
	font-size: 0.98rem;
}

.hero-copy__note a,
.hero-copy__note strong {
	color: var(--color-gold);
}

.hero-section .button-row {
	margin-top: 1.35rem;
}

.hero-section .button--ghost {
	color: var(--color-charcoal);
	border-color: rgba(185, 151, 91, 0.55);
	background: rgba(255, 253, 248, 0.74);
}

.hero-portrait {
	position: absolute;
	inset: 0 0 0 auto;
	width: 58vw;
	min-height: 100%;
	border: 0;
	border-radius: 0;
	background: #d8c2a4;
	box-shadow: none;
}

.hero-portrait::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(251, 247, 238, 0.98) 0%, rgba(251, 247, 238, 0.78) 12%, rgba(251, 247, 238, 0) 34%);
	content: "";
	pointer-events: none;
}

.hero-portrait img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
	object-position: 58% 8%;
	opacity: 1;
}

.credibility-strip {
	background: rgba(255, 253, 248, 0.72);
}

.credibility-strip__inner {
	max-width: none;
	padding: 0;
}

.credibility-item {
	display: grid;
	grid-template-columns: minmax(0, auto);
	grid-template-rows: auto auto;
	align-items: center;
	justify-content: center;
	column-gap: 0.9rem;
	row-gap: 0.1rem;
	min-height: 86px;
	padding: 1rem 2rem;
}

.credibility-item--link {
	color: inherit;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease;
}

.credibility-item--link:hover {
	background: rgba(185, 151, 91, 0.08);
	color: var(--color-charcoal);
}

.credibility-item .credibility-item__icon {
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: transparent;
	color: var(--color-gold);
	font-size: 2.15rem;
	line-height: 1;
}

.credibility-item__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.credibility-item strong {
	grid-column: 1;
	font-family: var(--font-heading);
	font-size: 1.7rem;
	line-height: 1;
	white-space: nowrap;
}

.credibility-item em {
	grid-column: 1;
	max-width: 145px;
	color: var(--color-charcoal);
	font-style: normal;
	font-size: 1rem;
	line-height: 1.14;
}

.home-editorial-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	max-width: calc(var(--container) + 160px);
	margin: 0 auto;
	padding: 0.75rem;
}

.home-editorial-grid .section {
	padding: 0;
	background: transparent;
}

.home-editorial-grid .linkedin-callout {
	padding: 0;
}

.home-editorial-grid .section__inner,
.home-editorial-grid .linkedin-callout__inner,
.home-editorial-grid .newsletter-panel,
.home-editorial-grid .investment-panel {
	max-width: none;
	height: 100%;
	padding: 1.45rem;
}

.home-panel {
	overflow: hidden;
	background: rgba(255, 253, 248, 0.68);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	box-shadow: none;
}

.home-panel--judaism {
	grid-column: span 2;
}

.home-panel--essays {
	grid-column: span 2;
}

.home-panel--stories {
	grid-column: span 2;
}

.home-panel--media {
	grid-column: span 1;
}

.home-panel--linkedin {
	grid-column: span 2;
	grid-row: auto;
}

.home-panel--investment {
	grid-column: span 2;
}

.home-panel--newsletter {
	grid-column: 1 / -1;
}

.home-editorial-grid .section-heading {
	align-items: start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.home-editorial-grid .section-heading h2,
.home-editorial-grid .linkedin-callout h2,
.home-editorial-grid .newsletter-panel h2,
.home-editorial-grid .investment-panel h2 {
	font-size: clamp(1.7rem, 2.1vw, 2.45rem);
}

.home-editorial-grid .section-heading p,
.home-editorial-grid .investment-panel p,
.home-editorial-grid .linkedin-callout p,
.home-editorial-grid .newsletter-panel p {
	font-size: 0.86rem;
	line-height: 1.45;
}

.section-link--top {
	flex: 0 0 auto;
	margin-top: 0.25rem;
	color: #9a7435;
	font-size: 0.78rem;
	white-space: nowrap;
	text-decoration: none;
}

.section-link--top::after {
	content: " →";
}

.section-heading__links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.55rem 1rem;
}

.home-editorial-grid .card-grid {
	gap: 1rem;
}

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

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

.home-panel--essays .card-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-panel--media .card-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-editorial-grid .content-card {
	border-radius: 6px;
	box-shadow: none;
	background: rgba(255, 253, 248, 0.86);
}

.home-editorial-grid .content-card__image {
	aspect-ratio: 1.22 / 1;
}

.home-editorial-grid .content-card__body {
	padding: 0.72rem;
}

.home-editorial-grid .content-card__meta {
	margin-bottom: 0.35rem;
	font-size: 0.72rem;
}

.home-editorial-grid .content-card h3 {
	font-size: 1.05rem;
	line-height: 1.22;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.home-editorial-grid .content-card p,
.home-editorial-grid .read-more {
	display: none;
}

.home-editorial-grid .language-badge {
	min-width: 1.8rem;
	min-height: 1.2rem;
	padding: 0.15rem 0.35rem;
	font-size: 0.62rem;
}

.home-panel--stories .split-layout {
	grid-template-columns: minmax(0, 1fr) 170px;
	gap: 1rem;
}

.home-panel--stories .side-callout {
	position: static;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1rem;
	background: rgba(185, 151, 91, 0.10);
	color: var(--color-charcoal);
	border: 1px solid rgba(185, 151, 91, 0.24);
	border-radius: 8px;
	box-shadow: none;
	text-align: center;
}

.home-panel--stories .side-callout::before {
	content: "▤";
	margin-bottom: 0.6rem;
	color: var(--color-gold);
	font-size: 1.8rem;
	line-height: 1;
}

.home-panel--stories .side-callout p {
	color: var(--color-charcoal);
	font-family: var(--font-heading);
	font-size: 1.05rem;
	line-height: 1.2;
}

.home-panel--stories .side-callout .button {
	min-height: 38px;
	margin-top: 1rem;
	padding: 0.62rem 0.7rem;
	font-size: 0.78rem;
}

.home-panel--investment .investment-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	background: rgba(255, 253, 248, 0.68);
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.home-panel--investment .eyebrow {
	margin-bottom: 0.35rem;
}

.home-panel--linkedin {
	background: var(--color-charcoal);
	color: var(--color-paper);
	border-color: rgba(255, 253, 248, 0.12);
}

.home-panel--linkedin .linkedin-callout__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.2rem;
	min-height: 300px;
}

.home-panel--linkedin h2 {
	max-width: 520px;
}

.home-panel--linkedin p {
	color: rgba(255, 253, 248, 0.76);
}

.home-panel--newsletter .newsletter-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 2rem;
	background:
		linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(185, 151, 91, 0.18)),
		var(--color-paper);
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.home-panel--newsletter .newsletter-panel > div {
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 1rem;
}

.home-panel--newsletter .newsletter-panel > div::before {
	content: "✉";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 42px;
	color: var(--color-gold);
	border: 2px solid var(--color-gold);
	border-radius: 4px;
	font-size: 1.45rem;
	line-height: 1;
}

.newsletter-panel__button {
	justify-self: end;
	min-width: 245px;
	border-radius: 4px;
	box-shadow: 0 12px 28px rgba(185, 151, 91, 0.22);
}

.home-panel--newsletter .eyebrow {
	grid-column: 2;
	margin: 0 0 -0.15rem;
}

.home-panel--newsletter h2 {
	grid-column: 2;
}

.home-panel--newsletter p:not(.eyebrow) {
	grid-column: 2;
}

.home-panel--investment .investment-panel {
	align-content: space-between;
	min-height: 300px;
	padding: clamp(1.6rem, 3vw, 2.2rem);
	background:
		linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.72)),
		var(--color-paper);
}

.home-panel--investment .investment-panel .button {
	align-self: end;
	justify-self: end;
}

.investment-panel__list {
	display: flex;
	flex-wrap: wrap;
	grid-column: 1 / -1;
	gap: 0.55rem;
	padding: 0;
	margin: 1.4rem 0 0;
	list-style: none;
}

.investment-panel__list li {
	padding: 0.45rem 0.7rem;
	background: rgba(185, 151, 91, 0.10);
	border: 1px solid rgba(185, 151, 91, 0.24);
	border-radius: var(--radius-pill);
	color: #73592f;
	font-size: 0.82rem;
	font-weight: 750;
}

.home-panel--linkedin .eyebrow {
	color: var(--color-gold);
}

.home-panel--linkedin .button {
	margin-top: auto;
}

.home-editorial-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	max-width: calc(var(--container) + 64px);
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.home-editorial-grid--compact .home-panel--newsletter,
.home-editorial-grid--compact .home-panel--linkedin,
.home-editorial-grid--compact .home-panel--investment {
	grid-column: span 1;
}

.home-editorial-grid--compact .newsletter-panel,
.home-editorial-grid--compact .linkedin-callout__inner,
.home-editorial-grid--compact .investment-panel {
	min-height: 300px;
	height: 100%;
}

.home-editorial-grid--compact .newsletter-panel {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.4rem;
}

.home-editorial-grid--compact .home-panel--newsletter .newsletter-panel > div {
	display: block;
}

.home-editorial-grid--compact .home-panel--newsletter .newsletter-panel > div::before {
	display: inline-flex;
	margin-bottom: 1rem;
}

.home-editorial-grid--compact .home-panel--newsletter .eyebrow,
.home-editorial-grid--compact .home-panel--newsletter h2,
.home-editorial-grid--compact .home-panel--newsletter p:not(.eyebrow) {
	grid-column: auto;
}

.home-editorial-grid--compact .newsletter-panel__button {
	justify-self: auto;
	width: 100%;
	min-width: 0;
}

.home-editorial-grid--compact .home-panel--newsletter h2,
.home-editorial-grid--compact .home-panel--linkedin h2,
.home-editorial-grid--compact .home-panel--investment h2 {
	font-size: clamp(2rem, 2.7vw, 2.8rem);
}

.home-editorial-grid--compact .home-panel--linkedin .linkedin-callout__inner,
.home-editorial-grid--compact .home-panel--investment .investment-panel {
	padding: clamp(1.4rem, 2.5vw, 2rem);
}

.home-editorial-grid--compact .home-panel--investment .investment-panel {
	grid-template-columns: 1fr;
}

.home-editorial-grid--compact .home-panel--investment .investment-panel .button {
	justify-self: stretch;
}

.home-editorial-grid--compact .investment-panel__list {
	margin-top: 1rem;
}

.site-footer__inner {
	max-width: calc(var(--container) + 160px);
}

@media (max-width: 1180px) {
	.hero-section__inner {
		grid-template-columns: 1fr;
		min-height: 520px;
	}

	.hero-copy {
		max-width: 660px;
	}

	.hero-portrait {
		width: 62vw;
	}

	.home-editorial-grid {
		grid-template-columns: 1fr 1fr;
	}

	.home-panel--essays,
	.home-panel--investment,
	.home-panel--stories,
	.home-panel--newsletter {
		grid-column: 1 / -1;
	}

	.home-panel--media,
	.home-panel--linkedin,
	.home-panel--judaism {
		grid-column: span 1;
	}

	.home-panel--linkedin,
	.home-panel--investment {
		grid-column: span 1;
	}

	.home-panel--essays .card-grid--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-editorial-grid--compact {
		grid-template-columns: 1fr 1fr;
	}

	.home-editorial-grid--compact .home-panel--newsletter {
		grid-column: 1 / -1;
	}

	.home-editorial-grid--compact .home-panel--linkedin,
	.home-editorial-grid--compact .home-panel--investment {
		grid-column: span 1;
	}
}

@media (max-width: 760px) {
	.hero-section__inner {
		min-height: 0;
		padding-top: 320px;
	}

	.hero-copy {
		max-width: none;
		padding: 2rem 1rem 2.4rem;
		background: var(--color-ivory);
	}

	.hero-copy h1 {
		font-size: clamp(3.25rem, 16vw, 4.6rem);
	}

	.hero-portrait {
		inset: 0 0 auto 0;
		width: 100%;
		height: 320px;
		min-height: 0;
	}

	.hero-portrait::before {
		background: linear-gradient(0deg, var(--color-ivory) 0%, rgba(251, 247, 238, 0) 44%);
	}

	.hero-portrait img {
		min-height: 0;
		height: 320px;
		object-position: 58% 8%;
	}

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

	.credibility-item {
		grid-template-columns: minmax(0, 1fr);
		min-height: 74px;
		justify-content: stretch;
		padding: 0.8rem 1rem;
		border-left: 0;
	}

	.credibility-item strong {
		font-size: 1.35rem;
	}

	.credibility-item__icon {
		width: 40px;
		height: 40px;
		font-size: 1.45rem;
	}

	.home-editorial-grid {
		grid-template-columns: 1fr;
		padding: 0.6rem;
	}

	.home-panel,
	.home-panel--judaism,
	.home-panel--essays,
	.home-panel--stories,
	.home-panel--media,
	.home-panel--linkedin,
	.home-panel--newsletter {
		grid-column: 1 / -1;
	}

	.home-editorial-grid .section__inner,
	.home-editorial-grid .linkedin-callout__inner,
	.home-editorial-grid .newsletter-panel {
		padding: 1rem;
	}

	.home-editorial-grid .card-grid--4,
	.home-editorial-grid .card-grid--3,
	.home-panel--essays .card-grid--3,
	.home-panel--media .card-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-panel--stories .split-layout,
	.home-panel--newsletter .newsletter-panel,
	.home-panel--newsletter .newsletter-panel > div,
	.home-panel--investment .investment-panel {
		grid-template-columns: 1fr;
	}

	.newsletter-panel__button {
		justify-self: stretch;
	}

	.home-panel--linkedin .linkedin-callout__inner,
	.home-panel--investment .investment-panel {
		min-height: 0;
	}

	.home-panel--investment .investment-panel .button {
		justify-self: stretch;
	}

	.home-panel--newsletter .eyebrow,
	.home-panel--newsletter h2,
	.home-panel--newsletter p:not(.eyebrow) {
		grid-column: 1;
	}

	.home-panel--newsletter .newsletter-panel > div::before {
		display: none;
	}

	.home-editorial-grid--compact {
		grid-template-columns: 1fr;
	}

	.home-editorial-grid--compact .home-panel--newsletter,
	.home-editorial-grid--compact .home-panel--linkedin,
	.home-editorial-grid--compact .home-panel--investment {
		grid-column: 1 / -1;
	}

	.home-editorial-grid--compact .newsletter-panel,
	.home-editorial-grid--compact .linkedin-callout__inner,
	.home-editorial-grid--compact .investment-panel {
		min-height: 0;
	}
}

@media (max-width: 460px) {
	.home-editorial-grid .card-grid--4,
	.home-editorial-grid .card-grid--3,
	.home-panel--essays .card-grid--3,
	.home-panel--media .card-grid--3 {
		grid-template-columns: 1fr;
	}
}

.newsletter-page {
	overflow: hidden;
	padding: clamp(3rem, 7vw, 6.5rem) 0;
	background:
		linear-gradient(120deg, rgba(251, 247, 238, 0.96) 0%, rgba(251, 247, 238, 0.76) 46%, rgba(23, 21, 19, 0.06) 100%),
		var(--color-ivory);
}

.newsletter-page__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
	align-items: start;
	gap: clamp(2rem, 5vw, 5rem);
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 0 2rem;
}

.newsletter-page__intro {
	position: sticky;
	top: 110px;
}

.newsletter-page h1 {
	max-width: 720px;
	font-size: clamp(3.2rem, 6vw, 6.2rem);
}

.newsletter-page__lead {
	max-width: 620px;
	margin-top: 1.4rem;
	color: var(--color-muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.newsletter-page__notes {
	display: grid;
	gap: 0.85rem;
	margin-top: 2rem;
}

.newsletter-page__notes div {
	padding: 1rem 1.1rem;
	background: rgba(255, 253, 248, 0.74);
	border: 1px solid var(--color-border);
	border-radius: 12px;
}

.newsletter-page__notes strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.1;
}

.newsletter-page__notes span {
	display: block;
	margin-top: 0.35rem;
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.newsletter-page__card {
	padding: clamp(1.4rem, 4vw, 2.4rem);
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
}

.newsletter-page__card h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

.newsletter-page__card > p {
	margin-top: 0.55rem;
	color: var(--color-muted);
}

.newsletter-signup-form {
	display: grid;
	gap: 1.15rem;
	margin-top: 1.6rem;
}

.newsletter-signup-form label,
.newsletter-signup-form fieldset {
	min-width: 0;
}

.newsletter-signup-form label > span,
.newsletter-signup-form legend {
	display: block;
	margin-bottom: 0.42rem;
	color: var(--color-charcoal);
	font-size: 0.88rem;
	font-weight: 750;
}

.newsletter-signup-form input[type="text"],
.newsletter-signup-form input[type="email"] {
	width: 100%;
	min-height: 50px;
	padding: 0.85rem 1rem;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	color: var(--color-charcoal);
	font: inherit;
}

.newsletter-signup-form fieldset {
	padding: 1rem;
	margin: 0;
	border: 1px solid var(--color-border);
	border-radius: 12px;
}

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

.choice-row,
.choice-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

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

.choice-row label,
.choice-grid label {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.75rem 0.85rem;
	background: rgba(185, 151, 91, 0.08);
	border: 1px solid rgba(185, 151, 91, 0.22);
	border-radius: 10px;
	cursor: pointer;
}

.choice-row label > span,
.choice-grid label > span {
	margin: 0;
	font-weight: 650;
}

.newsletter-signup-form input[type="radio"],
.newsletter-signup-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--color-gold);
}

.newsletter-signup-form button {
	min-height: 54px;
	padding: 0.95rem 1.4rem;
	background: var(--color-gold);
	border: 0;
	border-radius: 10px;
	color: var(--color-charcoal);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.newsletter-signup-form button:disabled {
	cursor: wait;
	opacity: 0.72;
}

.newsletter-signup-form__status {
	min-height: 1.5rem;
	color: #6f552b;
	font-weight: 700;
}

.newsletter-submit-frame {
	position: absolute;
	width: 1px;
	height: 1px;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 920px) {
	.newsletter-page__inner {
		grid-template-columns: 1fr;
	}

	.newsletter-page__intro {
		position: static;
	}
}

@media (max-width: 620px) {
	.newsletter-page__inner {
		padding: 0 1rem;
	}

	.form-grid,
	.choice-grid {
		grid-template-columns: 1fr;
	}

	.newsletter-page h1 {
		font-size: clamp(3rem, 15vw, 4.4rem);
	}
}

.contact-page {
	padding: clamp(3.5rem, 7vw, 7rem) 0;
	background:
		linear-gradient(135deg, rgba(251, 247, 238, 0.98), rgba(234, 223, 201, 0.35)),
		var(--color-ivory);
}

.contact-page__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 5rem);
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 0 2rem;
}

.contact-page__intro {
	position: sticky;
	top: 110px;
	align-self: start;
}

.contact-page h1 {
	font-size: clamp(3rem, 5.6vw, 5.8rem);
}

.contact-page__intro p {
	max-width: 620px;
	margin-top: 1.4rem;
	color: var(--color-muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

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

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 260px;
	padding: 1.5rem;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: var(--shadow-card);
}

.contact-card--primary {
	background: var(--color-charcoal);
	color: var(--color-paper);
}

.contact-card h2 {
	font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.contact-card p {
	margin-top: 0.8rem;
	color: var(--color-muted);
	font-size: 0.98rem;
	line-height: 1.6;
}

.contact-card--primary p {
	color: rgba(255, 253, 248, 0.76);
}

.contact-card .button,
.contact-email-list {
	margin-top: auto;
}

.contact-card__email,
.obfuscated-email {
	color: #8b672d;
	font-weight: 800;
}

.contact-email-list {
	display: grid;
	width: 100%;
	gap: 0.65rem;
}

.contact-email-list div {
	display: grid;
	gap: 0.15rem;
	padding-top: 0.65rem;
	border-top: 1px solid var(--color-border);
}

.contact-email-list span {
	color: var(--color-muted);
	font-size: 0.82rem;
	font-weight: 750;
	text-transform: uppercase;
}

@media (max-width: 920px) {
	.contact-page__inner {
		grid-template-columns: 1fr;
	}

	.contact-page__intro {
		position: static;
	}
}

@media (max-width: 620px) {
	.contact-page__inner {
		padding: 0 1rem;
	}

	.contact-page__cards {
		grid-template-columns: 1fr;
	}
}

.about-page {
	padding: clamp(2rem, 5vw, 4.25rem) 0;
	background:
		linear-gradient(135deg, rgba(251, 247, 238, 0.98), rgba(234, 223, 201, 0.34)),
		var(--color-ivory);
}

.about-page__hero,
.about-page__stats,
.about-page__content {
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 0 2rem;
}

.about-page__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.62fr);
	align-items: stretch;
	gap: clamp(2rem, 4vw, 4rem);
}

.about-page__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1rem, 3vw, 2rem) 0;
}

.about-page h1 {
	max-width: 980px;
	font-size: clamp(3.4rem, 5.8vw, 6.25rem);
}

.about-page__copy p:not(.eyebrow) {
	max-width: 760px;
	margin-top: 1.4rem;
	color: var(--color-muted);
	font-size: 1.1rem;
	line-height: 1.75;
}

.about-page__copy .about-page__subtitle {
	max-width: 900px;
	margin-top: 0.8rem;
	color: var(--color-charcoal);
	font-family: var(--font-heading);
	font-size: clamp(1.55rem, 2.55vw, 2.35rem);
	line-height: 1.12;
}

.about-page__external-profile {
	align-self: flex-start;
	margin-top: 1.1rem;
	color: #9a7435;
	font-size: 0.92rem;
	font-weight: 650;
	text-decoration: none;
}

.about-page__external-profile::after {
	content: " ->";
}

.about-page__portrait {
	overflow: hidden;
	margin: 0;
	min-height: 560px;
	border: 1px solid var(--color-border);
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.about-page__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% 14%;
}

.about-page__stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	margin-top: 1.2rem;
}

.about-page__stats div,
.about-page__stats a {
	padding: 1.25rem 1.4rem;
	background: rgba(255, 253, 248, 0.78);
	border: 1px solid var(--color-border);
	border-left: 0;
	color: inherit;
	text-decoration: none;
}

.about-page__stats a {
	transition: background-color 160ms ease, color 160ms ease;
}

.about-page__stats a:hover {
	background: rgba(185, 151, 91, 0.1);
	color: var(--color-charcoal);
}

.about-page__stats div:first-child,
.about-page__stats a:first-child {
	border-left: 1px solid var(--color-border);
	border-radius: 14px 0 0 14px;
}

.about-page__stats div:last-child,
.about-page__stats a:last-child {
	border-radius: 0 14px 14px 0;
}

.about-page__stats strong {
	display: block;
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 2.4vw, 2.4rem);
	font-weight: 500;
	line-height: 1;
}

.about-page__stats span {
	display: block;
	margin-top: 0.35rem;
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.35;
}

.about-page__content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.about-timeline {
	max-width: calc(var(--container) + 64px);
	margin: 1rem auto 0;
	padding: 0 2rem;
}

.about-timeline__heading {
	display: grid;
	grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
	gap: 2rem;
	align-items: end;
	padding: clamp(1.4rem, 3vw, 2rem);
	background: var(--color-charcoal);
	color: var(--color-paper);
	border-radius: 16px 16px 0 0;
}

.about-timeline__heading .eyebrow {
	margin: 0;
}

.about-timeline__heading h2 {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.about-timeline__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	background: rgba(255, 253, 248, 0.78);
	border: 1px solid var(--color-border);
	border-top: 0;
	border-radius: 0 0 16px 16px;
	overflow: hidden;
}

.about-timeline__items article {
	position: relative;
	min-height: 230px;
	padding: 1.35rem;
	border-top: 1px solid var(--color-border);
	border-left: 1px solid var(--color-border);
}

.about-timeline__items article:nth-child(3n + 1) {
	border-left: 0;
}

.about-timeline__items time {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 1.4rem;
	line-height: 1;
}

.about-timeline__items h3 {
	font-size: 1.35rem;
}

.about-timeline__items p {
	margin-top: 0.65rem;
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.about-page__section {
	padding: clamp(1.5rem, 3vw, 2.1rem);
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: var(--shadow-card);
}

.about-page__section--wide {
	grid-column: 1 / -1;
}

.about-page__section h2 {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.about-page__section p {
	margin-top: 1rem;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.about-page__section .button {
	margin-top: 1.4rem;
}

.linkedin-articles {
	padding: clamp(2.4rem, 5vw, 4.8rem) 0;
	background:
		linear-gradient(135deg, rgba(251, 247, 238, 0.98), rgba(234, 223, 201, 0.34)),
		var(--color-ivory);
}

.linkedin-articles__hero,
.linkedin-articles__toc,
.linkedin-articles__categories {
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 0 2rem;
}

.linkedin-articles__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
	gap: clamp(1.5rem, 4vw, 3.2rem);
	align-items: end;
}

.linkedin-articles h1 {
	max-width: 900px;
	font-size: clamp(3rem, 5.4vw, 6rem);
}

.linkedin-articles__intro {
	max-width: 780px;
	margin-top: 1.3rem;
	color: var(--color-muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.linkedin-articles__summary {
	padding: 1.4rem;
	background: var(--color-charcoal);
	color: var(--color-paper);
	border-radius: 16px;
	box-shadow: var(--shadow-card);
}

.linkedin-articles__summary strong {
	display: block;
	font-family: var(--font-heading);
	font-size: clamp(3rem, 5vw, 4.8rem);
	font-weight: 500;
	line-height: 0.95;
}

.linkedin-articles__summary span {
	display: block;
	margin-top: 0.85rem;
	color: rgba(255, 253, 248, 0.78);
	font-size: 0.95rem;
	line-height: 1.55;
}

.linkedin-articles__toc {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.5rem;
}

.linkedin-articles__toc a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0.62rem 0.95rem;
	background: rgba(255, 253, 248, 0.74);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	color: var(--color-charcoal);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease;
}

.linkedin-articles__toc a:hover {
	background: var(--color-paper);
	color: var(--color-charcoal);
	transform: translateY(-1px);
}

.linkedin-articles__categories {
	display: grid;
	gap: 1.2rem;
	margin-top: 1.4rem;
}

.linkedin-articles__category {
	padding: clamp(1.35rem, 3vw, 2rem);
	background: rgba(255, 253, 248, 0.82);
	border: 1px solid var(--color-border);
	border-radius: 18px;
}

.linkedin-articles__category-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
	gap: clamp(1rem, 3vw, 2rem);
	align-items: end;
	margin-bottom: 1.2rem;
}

.linkedin-articles__category-heading h2 {
	font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.linkedin-articles__category-heading p {
	color: var(--color-muted);
	line-height: 1.65;
}

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

.linkedin-article-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.25rem;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	box-shadow: var(--shadow-card);
}

.linkedin-article-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 0.85rem;
	color: var(--color-muted);
	font-size: 0.84rem;
}

.linkedin-article-card h3 {
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	line-height: 1.14;
}

.linkedin-article-card h3 a {
	text-decoration: none;
}

.linkedin-article-card p {
	margin-top: 0.85rem;
	color: var(--color-muted);
	font-size: 0.96rem;
	line-height: 1.65;
}

.linkedin-article-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: center;
	margin-top: auto;
	padding-top: 1.15rem;
}

.linkedin-article-card__actions .read-more {
	margin-top: 0;
}

.linkedin-article-card__secondary-link {
	color: var(--color-muted);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration-color: var(--color-gold);
}

.linkedin-translation {
	max-width: 920px;
}

.linkedin-translation__header {
	padding-bottom: 1.6rem;
	border-bottom: 1px solid var(--color-border);
}

.linkedin-translation__back {
	display: inline-flex;
	margin-bottom: 1.2rem;
	color: var(--color-muted);
	font-size: 0.92rem;
	font-weight: 750;
	text-decoration-color: var(--color-gold);
}

.linkedin-translation__dek {
	max-width: 760px;
	margin-top: 1rem;
	color: var(--color-muted);
	font-size: 1.08rem;
	line-height: 1.7;
}

.linkedin-translation__content {
	margin-top: 2rem;
}

.linkedin-translation__content ul,
.linkedin-translation__content ol {
	padding-left: 1.4rem;
}

.linkedin-translation__content li + li {
	margin-top: 0.45rem;
}

@media (max-width: 920px) {
	.about-page__hero,
	.about-page__content {
		grid-template-columns: 1fr;
	}

	.about-page__portrait {
		min-height: 420px;
	}

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

	.about-timeline__heading,
	.about-timeline__items,
	.linkedin-articles__hero,
	.linkedin-articles__category-heading,
	.linkedin-articles__grid {
		grid-template-columns: 1fr;
	}

	.about-timeline__items article,
	.about-timeline__items article:nth-child(3n + 1) {
		border-left: 0;
	}

	.about-page__stats div,
	.about-page__stats a,
	.about-page__stats div:first-child,
	.about-page__stats a:first-child,
	.about-page__stats div:last-child,
	.about-page__stats a:last-child {
		border: 1px solid var(--color-border);
		border-radius: 0;
	}
}

@media (max-width: 620px) {
	.about-page__hero,
	.about-page__stats,
	.about-page__content,
	.about-timeline,
	.linkedin-articles__hero,
	.linkedin-articles__toc,
	.linkedin-articles__categories {
		padding: 0 1rem;
	}

	.about-page__stats {
		grid-template-columns: 1fr;
	}

	.about-page__portrait {
		min-height: 340px;
	}
}

.press-review {
	position: relative;
	overflow: hidden;
	padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 7rem);
	background:
		linear-gradient(90deg, rgba(23, 21, 19, 0.035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(23, 21, 19, 0.035) 1px, transparent 1px),
		linear-gradient(135deg, rgba(251, 247, 238, 0.98), rgba(234, 223, 201, 0.28) 46%, rgba(255, 253, 248, 0.94));
	background-size: 54px 54px, 54px 54px, auto;
}

.press-review__hero,
.press-review__index,
.press-period {
	max-width: calc(var(--container) + 64px);
	margin: 0 auto;
	padding: 0 2rem;
}

.press-review__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
	gap: 1rem;
	align-items: start;
}

.press-review__hero-copy {
	position: relative;
	padding: clamp(1.65rem, 4vw, 3rem);
	background:
		linear-gradient(135deg, rgba(39, 35, 31, 0.96), rgba(23, 21, 19, 0.94)),
		var(--color-charcoal);
	color: var(--color-paper);
	border: 1px solid rgba(255, 253, 248, 0.12);
	border-radius: 16px;
	box-shadow: 0 18px 46px rgba(23, 21, 19, 0.10);
}

.press-review__hero-copy::after {
	position: absolute;
	right: clamp(1.25rem, 4vw, 3rem);
	bottom: clamp(1rem, 3vw, 2.4rem);
	color: rgba(255, 253, 248, 0.035);
	content: "1996";
	font-family: var(--font-heading);
	font-size: clamp(4rem, 10vw, 9rem);
	line-height: 0.72;
	pointer-events: none;
}

.press-review__hero h1 {
	position: relative;
	max-width: 720px;
	font-size: clamp(2.8rem, 5vw, 5.25rem);
	z-index: 1;
}

.press-review__lede {
	position: relative;
	max-width: 700px;
	margin-top: 1rem;
	color: rgba(255, 253, 248, 0.8);
	font-family: var(--font-heading);
	font-size: clamp(1.15rem, 1.75vw, 1.62rem);
	line-height: 1.35;
	z-index: 1;
}

.press-review__language-note {
	position: relative;
	max-width: 640px;
	margin-top: 0.9rem;
	color: rgba(255, 253, 248, 0.66);
	font-size: 0.96rem;
	line-height: 1.65;
	z-index: 1;
}

.press-review__hero-panel {
	display: grid;
	grid-template-columns: 1fr;
	background: rgba(255, 253, 248, 0.76);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: 0 14px 34px rgba(23, 21, 19, 0.06);
	overflow: hidden;
}

.press-review__hero-panel div {
	min-height: 96px;
	padding: 1rem 1.1rem;
	border-left: 0;
	border-top: 1px solid var(--color-border);
}

.press-review__hero-panel div:first-child {
	border-top: 0;
}

.press-review__hero-panel strong {
	display: block;
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 2.6vw, 2.55rem);
	font-weight: 500;
	line-height: 1;
}

.press-review__hero-panel span {
	display: block;
	margin-top: 0.35rem;
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.35;
}

.press-review__index {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 1rem;
}

.press-review__index a {
	display: block;
	min-height: 112px;
	padding: 1rem;
	background: rgba(255, 253, 248, 0.76);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	color: inherit;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.press-review__index a:hover {
	background: var(--color-paper);
	border-color: rgba(185, 151, 91, 0.52);
	color: var(--color-charcoal);
	transform: translateY(-2px);
}

.press-review__index span {
	display: block;
	color: #9a7435;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.press-review__index strong {
	display: block;
	margin-top: 0.45rem;
	font-family: var(--font-heading);
	font-size: 1.22rem;
	font-weight: 500;
	line-height: 1.08;
}

.press-period {
	display: grid;
	grid-template-columns: minmax(240px, 0.33fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 3.5vw, 3rem);
	margin-top: clamp(2.2rem, 5vw, 4rem);
}

.press-period__heading {
	position: sticky;
	top: 110px;
	align-self: start;
	padding: 1.5rem;
	background: rgba(255, 253, 248, 0.84);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: var(--shadow-card);
}

.press-period__kicker {
	color: #9a7435;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.press-period__heading h2 {
	margin-top: 0.7rem;
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.press-period__heading p:not(.press-period__kicker) {
	margin-top: 1rem;
	color: var(--color-muted);
	font-size: 0.98rem;
	line-height: 1.65;
}

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

.press-card {
	position: relative;
	display: flex;
	min-height: 300px;
	flex-direction: column;
	padding: clamp(1.2rem, 2.2vw, 1.55rem);
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: var(--shadow-card);
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.press-card:hover {
	border-color: rgba(185, 151, 91, 0.56);
	box-shadow: 0 18px 46px rgba(23, 21, 19, 0.12);
	transform: translateY(-3px);
}

.press-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.1rem;
}

.press-card time {
	color: var(--color-muted);
	font-size: 0.86rem;
	font-weight: 650;
}

.press-card__language {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 30px;
	padding: 0 0.65rem;
	border-radius: var(--radius-pill);
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
}

.press-card__language--fr {
	background: rgba(185, 151, 91, 0.18);
	color: #7a5721;
}

.press-card__language--en {
	background: rgba(23, 21, 19, 0.08);
	color: var(--color-charcoal);
}

.press-card__source {
	color: #9a7435;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.press-card h3 {
	margin-top: 0.55rem;
	font-size: clamp(1.38rem, 2.15vw, 2rem);
	line-height: 1.08;
}

.press-card h3 a {
	text-decoration: none;
}

.press-card h3 a:hover {
	color: #8a652a;
}

.press-card__note {
	margin-top: 1rem;
	color: var(--color-muted);
	font-size: 0.96rem;
	line-height: 1.62;
}

.press-card__link {
	align-self: flex-start;
	margin-top: auto;
	padding-top: 1.4rem;
	color: var(--color-charcoal);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.press-card__link::after {
	content: " ->";
	color: #9a7435;
}

.print-press {
	max-width: calc(var(--container) + 64px);
	margin: clamp(3rem, 7vw, 6rem) auto 0;
	padding: 0 2rem;
}

.print-press__heading {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.5fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: end;
	padding: clamp(1.4rem, 3vw, 2rem);
	background: rgba(255, 253, 248, 0.82);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: var(--shadow-card);
}

.print-press__heading .eyebrow {
	grid-column: 1 / -1;
	margin: 0;
}

.print-press__heading h2 {
	font-size: clamp(2rem, 4vw, 4rem);
}

.print-press__heading p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.print-press__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.print-card {
	overflow: hidden;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: var(--shadow-card);
}

.print-card__image {
	overflow: hidden;
	margin: 0;
	background: #ece6d8;
	aspect-ratio: 4 / 3;
	border-bottom: 1px solid var(--color-border);
}

.print-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.print-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1rem, 2vw, 1.25rem);
}

.print-card h3 {
	margin-top: 0.55rem;
	font-size: clamp(1.28rem, 2vw, 1.75rem);
	line-height: 1.08;
}

.print-card p:not(.press-card__source) {
	margin-top: 0.9rem;
	color: var(--color-muted);
	font-size: 0.94rem;
	line-height: 1.58;
}

.press-review__next {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 1.5rem;
	max-width: calc(var(--container) + 64px);
	margin: clamp(2rem, 5vw, 4rem) auto 0;
	padding: clamp(1.4rem, 3vw, 2rem) 2rem;
	background: rgba(255, 253, 248, 0.82);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: var(--shadow-card);
}

.press-review__next h2 {
	max-width: 760px;
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.press-review__next p:not(.eyebrow) {
	max-width: 720px;
	margin-top: 0.8rem;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.press-review__next a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.78rem 1.1rem;
	background: var(--color-charcoal);
	border-radius: var(--radius-pill);
	color: var(--color-paper);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.video-library {
	max-width: calc(var(--container) + 64px);
	margin: clamp(3rem, 7vw, 6rem) auto 0;
	padding: clamp(1rem, 2vw, 2rem) 2rem 0;
}

.video-library--standalone {
	margin-top: 0;
}

.video-library__intro {
	position: relative;
	overflow: hidden;
	padding: clamp(2rem, 5vw, 4rem);
	background:
		linear-gradient(135deg, rgba(23, 21, 19, 0.96), rgba(39, 35, 31, 0.94)),
		var(--color-charcoal);
	color: var(--color-paper);
	border: 1px solid rgba(255, 253, 248, 0.14);
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
}

.video-library__intro::after {
	position: absolute;
	right: clamp(1rem, 4vw, 3rem);
	bottom: -0.08em;
	color: rgba(255, 253, 248, 0.055);
	content: "PLAY";
	font-family: var(--font-heading);
	font-size: clamp(5rem, 16vw, 14rem);
	line-height: 0.8;
	pointer-events: none;
}

.video-library__intro h1,
.video-library__intro h2 {
	position: relative;
	max-width: 880px;
	font-size: clamp(2.5rem, 5vw, 5.25rem);
	z-index: 1;
}

.video-library__intro p:not(.eyebrow) {
	position: relative;
	max-width: 760px;
	margin-top: 1rem;
	color: rgba(255, 253, 248, 0.72);
	font-size: 1.05rem;
	line-height: 1.7;
	z-index: 1;
}

.video-library__actions {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8rem;
	margin-top: 1.3rem;
	z-index: 1;
}

.video-library__actions a,
.video-library__actions span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0.72rem 1rem;
	border-radius: var(--radius-pill);
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.video-library__actions a {
	background: var(--color-gold);
	color: var(--color-charcoal);
}

.video-library__actions span {
	background: rgba(255, 253, 248, 0.08);
	border: 1px solid rgba(255, 253, 248, 0.14);
	color: rgba(255, 253, 248, 0.72);
}

.video-section {
	margin-top: 1rem;
	padding: clamp(1.15rem, 2.6vw, 1.6rem);
	background: rgba(23, 21, 19, 0.94);
	border: 1px solid rgba(255, 253, 248, 0.14);
	border-radius: 20px;
	box-shadow: var(--shadow-card);
}

.video-section__heading {
	display: grid;
	grid-template-columns: minmax(190px, 0.24fr) minmax(0, 0.42fr) minmax(0, 1fr);
	gap: 1.2rem;
	align-items: end;
	padding: 0.2rem 0.2rem 1.25rem;
	color: var(--color-paper);
}

.video-section__heading p {
	color: var(--color-gold);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.video-section__heading h2,
.video-section__heading h3 {
	font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.video-section__heading span {
	color: rgba(255, 253, 248, 0.68);
	font-size: 0.96rem;
	line-height: 1.55;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.video-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: var(--color-paper);
	border: 1px solid rgba(255, 253, 248, 0.12);
	border-radius: 16px;
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.video-card--featured {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
	background: #fffdf8;
}

.video-card__embed {
	position: relative;
	background: #0f0e0d;
	aspect-ratio: 16 / 9;
}

.video-card__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1rem, 2.1vw, 1.35rem);
}

.video-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
}

.video-card__meta > span:not(.press-card__language) {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 0.65rem;
	background: rgba(23, 21, 19, 0.07);
	border-radius: var(--radius-pill);
	color: var(--color-muted);
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
}

.video-card__channel {
	color: #9a7435;
	font-size: 0.8rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.video-card h3,
.video-card h4 {
	margin-top: 0.55rem;
	font-size: clamp(1.25rem, 2vw, 1.85rem);
	line-height: 1.08;
}

.video-card p:not(.video-card__channel) {
	margin-top: 0.9rem;
	color: var(--color-muted);
	font-size: 0.94rem;
	line-height: 1.58;
}

.video-card a {
	align-self: flex-start;
	margin-top: auto;
	padding-top: 1.2rem;
	color: var(--color-charcoal);
	font-size: 0.86rem;
	font-weight: 850;
	text-decoration: none;
}

.video-card a::after {
	content: " ->";
	color: #9a7435;
}

@media (max-width: 1080px) {
	.press-review__hero,
	.press-period {
		grid-template-columns: 1fr;
	}

	.press-period__heading {
		position: static;
	}

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

	.video-section__heading,
	.video-card--featured {
		grid-template-columns: 1fr;
	}

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

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

	.print-press__heading .eyebrow {
		grid-column: 1 / -1;
	}
}

@media (max-width: 860px) {
	.press-review__index,
	.press-period__items,
	.print-press__heading,
	.print-press__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.press-review__next {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.press-review__hero,
	.press-review__index,
	.press-period,
	.press-review__next,
	.print-press,
	.video-library {
		padding: 0 1rem;
	}

	.press-review__hero-copy {
		padding: 1.35rem;
	}

	.press-review__hero-panel,
	.press-review__index,
	.press-period__items,
	.print-press__heading,
	.print-press__grid,
	.video-grid {
		grid-template-columns: 1fr;
	}

	.press-review__hero-panel div,
	.press-review__hero-panel div:nth-child(odd),
	.press-review__hero-panel div:nth-child(-n + 2) {
		min-height: 92px;
		border: 0;
		border-top: 1px solid var(--color-border);
	}

	.press-review__hero-panel div:first-child {
		border-top: 0;
	}

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

	.press-review__next {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}

	.video-library__intro,
	.video-section {
		border-radius: 16px;
	}

	.video-library__intro {
		padding: 1.35rem;
	}

	.video-section__heading {
		gap: 0.65rem;
	}
}
