:root {
	--mez-cream: #f6f2e8;
	--mez-cream-deep: #ece5d7;
	--mez-paper: rgba(252, 248, 239, 0.88);
	--mez-sage: #cfd8c6;
	--mez-sage-soft: #dfe6d8;
	--mez-sage-dark: #5d6654;
	--mez-olive: #434b3d;
	--mez-olive-deep: #31372d;
	--mez-ink: #2e261b;
	--mez-bronze: #af8754;
	--mez-line: rgba(52, 42, 30, 0.12);
	--mez-shadow: 0 28px 60px rgba(56, 44, 28, 0.12);
	--mez-shadow-soft: 0 18px 36px rgba(56, 44, 28, 0.09);
	--mez-radius: 34px;
	--mez-content: min(1380px, calc(100vw - 48px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at top center, rgba(255, 255, 255, 0.7), transparent 30%),
		linear-gradient(180deg, #fbf8f1 0%, var(--mez-cream) 32%, #eef3ea 100%);
	color: var(--mez-ink);
	font-family: "Manrope", "Segoe UI", sans-serif;
	line-height: 1.65;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -2;
}

body::before {
	background-image: radial-gradient(rgba(46, 38, 27, 0.03) 0.8px, transparent 0.8px);
	background-size: 11px 11px;
	opacity: 0.85;
}

body::after {
	background:
		radial-gradient(circle at 14% 16%, rgba(177, 196, 171, 0.18), transparent 18%),
		radial-gradient(circle at 84% 18%, rgba(175, 135, 84, 0.14), transparent 16%),
		radial-gradient(circle at 76% 72%, rgba(93, 102, 84, 0.1), transparent 18%);
	z-index: -3;
}

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

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1rem;
}

.site-shell {
	min-height: 100vh;
}

.utility-bar__inner,
.site-header,
.site-footer,
.section-shell,
.content-shell {
	width: var(--mez-content);
	margin-inline: auto;
}

.utility-bar {
	background: var(--mez-olive);
	color: rgba(248, 243, 233, 0.92);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.utility-bar__inner,
.utility-group {
	display: flex;
	align-items: center;
}

.utility-bar__inner {
	justify-content: space-between;
	gap: 1rem;
	min-height: 42px;
}

.utility-group {
	flex-wrap: wrap;
	gap: 0.85rem;
}

.utility-group span,
.utility-group a {
	opacity: 0.86;
}

.utility-group span::after,
.utility-group a::after {
	content: "\2022";
	margin-left: 0.85rem;
	opacity: 0.42;
}

.utility-group span:last-child::after,
.utility-group a:last-child::after {
	content: none;
	margin: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	display: grid;
	grid-template-columns: auto auto auto 1fr;
	align-items: center;
	gap: 1rem;
	padding: 20px 0 16px;
	backdrop-filter: blur(18px);
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 6px -14px;
	background: rgba(251, 247, 239, 0.78);
	border: 1px solid rgba(52, 42, 30, 0.08);
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(34, 28, 20, 0.08);
	z-index: -1;
}

.site-branding {
	display: flex;
	flex-direction: column;
	gap: 0.18rem;
}

.site-title,
.footer-mark {
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(1.95rem, 2.2vw, 2.8rem);
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.site-tagline,
.footer-note,
.footer-label {
	color: rgba(46, 38, 27, 0.72);
	font-size: 0.84rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.header-cta,
.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.8rem 1.15rem;
	border-radius: 999px;
	border: 1px solid rgba(52, 42, 30, 0.12);
	background: rgba(255, 255, 255, 0.45);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.menu-toggle {
	display: none;
	cursor: pointer;
	color: var(--mez-ink);
	font: inherit;
}

.site-navigation {
	justify-self: end;
}

.site-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1.35rem;
	margin: 0;
	padding: 0;
}

.site-menu a {
	position: relative;
	font-size: 0.9rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.35rem;
	width: 100%;
	height: 1px;
	background: var(--mez-olive);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
	transform: scaleX(1);
}

.front-page {
	padding-bottom: 4rem;
}

.section-shell {
	padding: 68px 0;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 1rem;
	color: var(--mez-olive);
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 1rem;
	font-style: italic;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: none;
}

.section-kicker::before,
.section-kicker::after {
	content: "";
	width: 74px;
	height: 1px;
	background: rgba(67, 75, 61, 0.32);
}

.section-heading {
	position: relative;
	margin-bottom: 2.4rem;
}

.section-heading--center {
	max-width: 980px;
	margin-inline: auto;
	text-align: center;
}

.section-heading--left {
	text-align: left;
}

.section-heading h2,
.cta-shell h2,
.entry-title,
.hero-title {
	margin: 0 0 1.2rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: 0.015em;
	color: #384036;
}

.hero-title {
	font-size: clamp(3.8rem, 9vw, 7.4rem);
	max-width: 9ch;
}

.section-heading h2,
.cta-shell h2 {
	font-size: clamp(3rem, 6vw, 5.6rem);
}

.hero-lead,
.selection-copy__lead,
.cta-shell p,
.entry-content,
.process-copy__lead,
.heritage-copy,
.experience-copy p {
	font-size: 1.08rem;
	color: rgba(46, 38, 27, 0.82);
}

.section-etching {
	position: relative;
}

.section-etching::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/mezoterra-landscape.svg") center 6% / min(1120px, 96%) no-repeat;
	opacity: 0.32;
	pointer-events: none;
}

.hero-stage {
	position: relative;
	padding-top: 38px;
}

.hero-stage::before {
	content: "";
	position: absolute;
	top: -4rem;
	right: 4%;
	width: min(420px, 34vw);
	height: min(420px, 34vw);
	background: url("../images/mezoterra-olive-branch.svg") center / contain no-repeat;
	opacity: 0.15;
	pointer-events: none;
}

.hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: stretch;
}

.hero-copy-panel,
.heritage-shell,
.experience-copy,
.process-copy,
.presentation-copy,
.selection-layout,
.voice-callout,
.content-card {
	position: relative;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18)), var(--mez-paper);
	border: 1px solid rgba(52, 42, 30, 0.08);
	border-radius: var(--mez-radius);
	box-shadow: var(--mez-shadow-soft);
}

.hero-copy-panel,
.process-copy,
.experience-copy,
.presentation-copy,
.selection-copy,
.voice-callout,
.content-card {
	padding: clamp(1.6rem, 2.6vw, 2.4rem);
}

.hero-copy-panel {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.hero-copy-panel::before {
	content: "";
	position: absolute;
	right: -3.5rem;
	bottom: -2rem;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(207, 216, 198, 0.42), rgba(207, 216, 198, 0));
	pointer-events: none;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 2rem 0 1.75rem;
}

.button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0.9rem 1.35rem;
	border-radius: 999px;
	background: var(--mez-olive);
	color: #fbf7ef;
	box-shadow: 0 18px 28px rgba(51, 58, 46, 0.18);
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-link:hover,
.button-link:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 22px 34px rgba(51, 58, 46, 0.2);
}

.button-link.is-secondary {
	background: transparent;
	color: var(--mez-ink);
	border: 1px solid rgba(52, 42, 30, 0.14);
	box-shadow: none;
}

.hero-promise-line {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 1.8rem;
	color: rgba(46, 38, 27, 0.72);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-promise-line span::after {
	content: "\2022";
	margin-left: 0.8rem;
	opacity: 0.45;
}

.hero-promise-line span:last-child::after {
	content: none;
	margin: 0;
}

.hero-card-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: auto;
}

.hero-mini-card {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 0.95rem;
	align-items: center;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(52, 42, 30, 0.08);
	border-radius: 26px;
}

.hero-mini-card__media {
	height: 100%;
	min-height: 100px;
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
}

.hero-mini-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.hero-mini-card__kicker,
.timeline-item__kicker,
.footer-label,
.voice-card__hashtags {
	margin-bottom: 0.45rem;
	color: var(--mez-olive);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero-mini-card h3,
.flavor-card h3,
.voice-callout h3,
.timeline-item h3,
.ritual-card h3,
.ritual-callout h3 {
	margin: 0;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 1.55rem;
	line-height: 1.04;
	color: #374035;
}

.hero-visual-stage {
	position: relative;
	display: flex;
	align-items: stretch;
	min-height: 720px;
	isolation: isolate;
}

.hero-visual-card,
.hero-secondary-shot,
.experience-media,
.arched-visual-frame,
.presentation-media,
.selection-media,
.voice-card__media {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(52, 42, 30, 0.08);
	box-shadow: var(--mez-shadow);
}

.hero-visual-card::after,
.hero-secondary-shot::after,
.experience-media::after,
.arched-visual-frame::after,
.presentation-media::after,
.selection-media::after,
.voice-card__media::after,
.heritage-shell::after,
.experience-copy::after,
.process-copy::after,
.presentation-copy::after,
.selection-layout::after,
.voice-callout::after,
.cta-shell::after,
.content-card::after {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(175, 135, 84, 0.18);
	border-radius: inherit;
	pointer-events: none;
}

.hero-visual-card {
	width: 100%;
	min-height: 100%;
	border-radius: 40px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
}

.hero-visual-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 400ms ease;
}

.hero-visual-caption {
	position: absolute;
	left: 1.3rem;
	right: 1.3rem;
	bottom: 1.3rem;
	padding: 1rem 1.1rem;
	border-radius: 24px;
	background: rgba(49, 55, 45, 0.86);
	backdrop-filter: blur(10px);
	color: #fbf7ef;
	box-shadow: 0 24px 34px rgba(31, 28, 22, 0.2);
}

.hero-visual-caption p,
.presentation-gallery-note p {
	margin-bottom: 0.35rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.78;
}

.hero-visual-caption strong,
.presentation-gallery-note strong {
	display: block;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	line-height: 1.06;
}

.hero-secondary-shot {
	position: absolute;
	left: -1.3rem;
	bottom: 2rem;
	width: min(280px, 33%);
	aspect-ratio: 5 / 6;
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.38);
	z-index: 2;
}

.hero-secondary-shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.floating-stat-card {
	position: absolute;
	max-width: 300px;
	padding: 1.35rem 1.4rem;
	border-radius: 28px;
	box-shadow: 0 24px 34px rgba(31, 28, 22, 0.16);
}

.floating-stat-card strong {
	display: block;
	margin-bottom: 0.55rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2.4rem, 4vw, 4rem);
	line-height: 0.95;
}

.floating-stat-card__label,
.experience-panel__icon,
.heritage-metric-card__label {
	margin-bottom: 0.55rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.floating-stat-card p:last-child,
.experience-panel p:last-child,
.heritage-metric-card p:last-child,
.flavor-card p:last-child,
.voice-callout p:last-child {
	margin-bottom: 0;
}

.floating-stat-card.is-dark,
.experience-panel--dark {
	right: -1.2rem;
	top: 2rem;
	background: rgba(67, 75, 61, 0.96);
	color: #f9f4eb;
}

.floating-stat-card.is-light {
	right: 2rem;
	bottom: -1.2rem;
	background: rgba(230, 236, 223, 0.96);
	color: var(--mez-ink);
}

.manifesto-band {
	position: relative;
	height: 170px;
	margin: 10px 0 14px;
	overflow: hidden;
}

.angled-ribbon {
	position: absolute;
	left: -6%;
	width: 112%;
	box-shadow: var(--mez-shadow-soft);
}

.angled-ribbon--dark {
	top: 24px;
	transform: rotate(-3.6deg);
	background: var(--mez-olive);
	color: #faf6ef;
}

.angled-ribbon--light {
	top: 86px;
	transform: rotate(3.2deg);
	background: rgba(207, 216, 198, 0.94);
	color: #374035;
}

.angled-ribbon__track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.4rem;
	padding: 0.9rem 2rem;
	white-space: nowrap;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(1.75rem, 3vw, 2.9rem);
}

.angled-ribbon__track span::before {
	content: "\2022";
	margin-right: 2.4rem;
	opacity: 0.68;
}

.angled-ribbon__track span:first-child::before {
	content: none;
	margin: 0;
}

.heritage-shell {
	padding: clamp(1.6rem, 3vw, 2.8rem);
}

.heritage-copy {
	position: relative;
	z-index: 1;
	max-width: 78ch;
	margin: 0 auto 2rem;
	column-count: 2;
	column-gap: 2rem;
}

.heritage-copy p {
	break-inside: avoid;
}

.heritage-copy p:first-child::first-letter {
	float: left;
	margin-right: 0.14em;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 5.6rem;
	line-height: 0.8;
	color: #394136;
}

.heritage-metrics {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.heritage-metric-card,
.experience-panel,
.flavor-card,
.voice-card,
.timeline-item {
	position: relative;
	background: rgba(255, 255, 255, 0.56);
	border: 1px solid rgba(52, 42, 30, 0.08);
	border-radius: 30px;
	box-shadow: var(--mez-shadow-soft);
}

.heritage-metric-card,
.experience-panel,
.flavor-card,
.voice-card__body {
	padding: 1.35rem;
}

.heritage-metric-card strong {
	display: block;
	margin-bottom: 0.65rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2.2rem, 4vw, 4rem);
	line-height: 0.94;
}

.experience-grid,
.process-grid,
.selection-layout {
	position: relative;
	display: grid;
	gap: clamp(1.4rem, 3vw, 2.6rem);
	align-items: start;
}

.experience-grid {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.experience-copy h3,
.selection-score h3 {
	margin: 0 0 1rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.3rem);
	line-height: 1.02;
	color: #374035;
}

.check-list {
	list-style: none;
	margin: 1.5rem 0 1.8rem;
	padding: 0;
}

.check-list li {
	position: relative;
	padding-left: 1.8rem;
	margin-bottom: 0.8rem;
}

.check-list li::before {
	content: "\2022";
	position: absolute;
	left: 0.5rem;
	top: 0;
	color: var(--mez-olive);
	font-size: 1.2rem;
}

.experience-board {
	position: relative;
	min-height: 620px;
}

.experience-media {
	border-radius: 38px;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04));
}

.experience-media img,
.selection-media img,
.voice-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.experience-panel {
	position: absolute;
	max-width: 280px;
}

.experience-panel strong {
	display: block;
	margin-bottom: 0.7rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 2.4rem;
	line-height: 1;
}

.experience-panel--dark {
	top: 2rem;
	right: 2rem;
}

.experience-panel--light {
	left: -0.8rem;
	bottom: 2rem;
	background: rgba(239, 243, 232, 0.96);
}

.process-grid {
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.process-visual-block {
	position: relative;
}

.arched-visual-frame {
	border-radius: 320px 320px 34px 34px / 220px 220px 34px 34px;
	background: rgba(240, 236, 227, 0.8);
}

.arched-visual-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.arched-visual-note {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	padding: 1.1rem 1.2rem;
	border-radius: 24px;
	background: rgba(49, 55, 45, 0.92);
	color: #f8f3ea;
	box-shadow: 0 24px 34px rgba(31, 28, 22, 0.18);
}

.arched-visual-note p {
	margin-bottom: 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.78;
}

.arched-visual-note strong {
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 1.5rem;
	line-height: 1.05;
}

.timeline-list {
	display: grid;
	gap: 1rem;
	margin-top: 1.8rem;
}

.timeline-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	padding: 1.25rem;
}

.timeline-item__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	border-radius: 999px;
	background: rgba(207, 216, 198, 0.74);
	color: #394136;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 2rem;
	line-height: 1;
}

.timeline-item:nth-child(2) .timeline-item__index {
	background: rgba(103, 73, 84, 0.94);
	color: #fbf5ec;
}

.timeline-item:nth-child(3) .timeline-item__index {
	background: rgba(67, 75, 61, 0.94);
	color: #fbf5ec;
}

.presentation-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: clamp(1.4rem, 3vw, 2.6rem);
	align-items: stretch;
}

.presentation-copy {
	overflow: hidden;
}

.presentation-copy::before {
	content: "";
	position: absolute;
	left: -3.4rem;
	top: 1.8rem;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(207, 216, 198, 0.4), rgba(207, 216, 198, 0));
	pointer-events: none;
}

.presentation-points {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 1.8rem 0;
}

.presentation-point {
	position: relative;
	padding: 1.3rem;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(52, 42, 30, 0.08);
	border-radius: 28px;
	box-shadow: var(--mez-shadow-soft);
}

.presentation-point strong {
	display: block;
	margin-bottom: 0.65rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.3rem);
	line-height: 0.92;
	color: #374035;
}

.presentation-point h3 {
	margin: 0 0 0.55rem;
	color: var(--mez-olive);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.presentation-point p {
	margin-bottom: 0;
	color: rgba(46, 38, 27, 0.8);
}

.presentation-gallery {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
	grid-template-rows: minmax(280px, 1fr) minmax(220px, 0.8fr);
	gap: 1rem;
	min-height: 680px;
}

.presentation-media {
	position: relative;
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.35);
}

.presentation-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.presentation-media--primary {
	grid-row: 1 / span 2;
}

.presentation-media--detail img {
	object-position: center top;
}

.presentation-gallery-note {
	position: absolute;
	left: 1.2rem;
	bottom: 1.2rem;
	max-width: min(360px, 60%);
	padding: 1.05rem 1.15rem;
	border-radius: 24px;
	background: rgba(49, 55, 45, 0.92);
	color: #fbf6ec;
	box-shadow: 0 24px 36px rgba(31, 28, 22, 0.18);
	z-index: 2;
}

.selection-layout {
	grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
	padding: clamp(1.6rem, 3vw, 2.8rem);
	background: linear-gradient(180deg, rgba(207, 216, 198, 0.62), rgba(223, 230, 216, 0.54));
	overflow: hidden;
}

.selection-layout::before {
	content: "";
	position: absolute;
	left: -2rem;
	bottom: -3rem;
	width: 300px;
	height: 300px;
	background: url("../images/mezoterra-olive-branch.svg") center / contain no-repeat;
	opacity: 0.12;
	transform: rotate(-18deg);
	pointer-events: none;
}

.selection-copy {
	position: relative;
	z-index: 1;
}

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

.selection-visual {
	position: relative;
	z-index: 1;
}

.selection-media {
	border-radius: 34px;
	min-height: 720px;
	background: rgba(255, 255, 255, 0.38);
}

.selection-score {
	position: relative;
	display: flex;
	align-items: end;
	gap: 1rem;
	max-width: 620px;
	margin: -3rem auto 0;
	padding: 1.2rem 1.4rem 0;
}

.selection-score__mark {
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(4rem, 9vw, 7rem);
	line-height: 0.8;
	color: #364035;
}

.selection-score__stars {
	margin-bottom: 0.45rem;
	color: var(--mez-olive);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.28em;
}

.ritual-section {
	position: relative;
}

.ritual-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	gap: 1.2rem;
	align-items: stretch;
}

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

.ritual-card {
	overflow: hidden;
}

.ritual-card__media {
	position: relative;
	height: 360px;
	overflow: hidden;
}

.ritual-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.ritual-card__badge {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	min-height: 92px;
	padding: 0.7rem;
	border-radius: 18px;
	background: rgba(223, 230, 216, 0.96);
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 1.1rem;
	text-align: center;
	line-height: 1.1;
	color: #374035;
}

.ritual-card__body {
	padding: 1.3rem 1.35rem 1.45rem;
}

.ritual-card__kicker {
	margin-bottom: 0.45rem;
	color: var(--mez-olive);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ritual-callout {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.7rem, 2.5vw, 2.4rem);
	background: linear-gradient(180deg, rgba(248, 244, 236, 0.95), rgba(233, 239, 228, 0.88));
	border: 1px solid rgba(52, 42, 30, 0.08);
	border-radius: 34px;
	box-shadow: var(--mez-shadow-soft);
	overflow: hidden;
}

.ritual-callout::before {
	content: "";
	position: absolute;
	top: -2rem;
	right: -1rem;
	width: 250px;
	height: 250px;
	background: url("../images/mezoterra-olive-branch.svg") center / contain no-repeat;
	opacity: 0.1;
	transform: rotate(24deg);
	pointer-events: none;
}

.ritual-callout__number {
	margin-bottom: 0.9rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(4rem, 8vw, 6.7rem);
	line-height: 0.82;
	color: #364035;
}

.ritual-callout h3 {
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.03;
	margin-bottom: 1rem;
}

.voice-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 0.9fr);
	gap: 1rem;
	align-items: start;
}

.voice-card {
	overflow: hidden;
}

.voice-card__media {
	position: relative;
	height: 250px;
	border-radius: 30px 30px 0 0;
	box-shadow: none;
	border: none;
}

.voice-card__count {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: rgba(223, 230, 216, 0.92);
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: 2rem;
	line-height: 1;
	color: #364035;
}

.voice-card__body {
	border-radius: 0 0 30px 30px;
}

.voice-card__body p {
	font-size: 1.02rem;
	line-height: 1.75;
}

.voice-card__hashtags {
	color: rgba(67, 75, 61, 0.78);
	letter-spacing: 0.08em;
	text-transform: none;
	word-break: break-word;
}

.voice-callout {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.6rem, 2.4vw, 2.2rem);
	background: linear-gradient(180deg, rgba(243, 239, 230, 0.92), rgba(232, 238, 227, 0.82));
}

.voice-callout__number {
	margin-bottom: 0.75rem;
	font-family: "Bodoni Moda", Georgia, serif;
	font-size: clamp(5rem, 10vw, 7rem);
	line-height: 0.85;
	color: #364035;
}

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

.cta-shell {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
	padding: clamp(1.8rem, 3vw, 2.6rem);
	border-radius: 42px;
	background: linear-gradient(135deg, rgba(49, 55, 45, 0.98), rgba(93, 102, 84, 0.96));
	box-shadow: 0 30px 54px rgba(36, 31, 24, 0.2);
	color: #faf5ec;
}

.cta-shell p,
.footer-meta p {
	color: rgba(250, 245, 236, 0.82);
}

.cta-shell .section-kicker,
.cta-shell h2 {
	color: #f8f3ea;
}

.cta-shell .section-kicker::before,
.cta-shell .section-kicker::after {
	background: rgba(248, 243, 234, 0.26);
}

.cta-shell .button-link {
	flex-shrink: 0;
	background: #fbf6ec;
	color: var(--mez-ink);
}

.site-footer {
	padding: 56px 0 42px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
	gap: 1.2rem;
	align-items: start;
}

.footer-column,
.footer-meta {
	padding-top: 0.35rem;
}

.footer-column p,
.footer-meta p,
.footer-note {
	margin-bottom: 0.45rem;
	color: rgba(46, 38, 27, 0.74);
}

.footer-meta {
	text-align: right;
}

.content-shell {
	padding: 3rem 0 5rem;
}

.content-card {
	max-width: 920px;
	margin-inline: auto;
	padding: clamp(1.8rem, 2.8vw, 2.5rem);
}

.entry-header {
	margin-bottom: 1.25rem;
}

.entry-title {
	font-size: clamp(2.6rem, 6vw, 4.2rem);
}

.entry-content > * {
	max-width: 68ch;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (hover: hover) {
	.hero-mini-card:hover img,
	.hero-secondary-shot:hover img,
	.presentation-media:hover img,
	.ritual-card:hover img,
	.voice-card:hover img,
	.selection-media:hover img,
	.experience-media:hover img,
	.hero-visual-card:hover img {
		transform: scale(1.04);
	}

	.hero-mini-card,
	.presentation-point,
	.ritual-card,
	.voice-card,
	.flavor-card,
	.heritage-metric-card,
	.timeline-item {
		transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
	}

	.hero-mini-card:hover,
	.presentation-point:hover,
	.ritual-card:hover,
	.voice-card:hover,
	.flavor-card:hover,
	.heritage-metric-card:hover,
	.timeline-item:hover {
		transform: translateY(-4px);
		box-shadow: 0 26px 44px rgba(56, 44, 28, 0.14);
		border-color: rgba(67, 75, 61, 0.16);
	}
}

@media (max-width: 1180px) {
	.hero-layout,
	.experience-grid,
	.process-grid,
	.presentation-layout,
	.selection-layout,
	.ritual-layout,
	.voice-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-title {
		max-width: 11ch;
	}

	.hero-visual-stage,
	.selection-media {
		min-height: 540px;
	}

	.heritage-copy {
		column-count: 1;
	}

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

	.voice-callout {
		min-height: auto;
	}

	.footer-meta {
		text-align: left;
	}
}

@media (max-width: 920px) {
	:root {
		--mez-content: min(100vw - 28px, 1380px);
	}

	.utility-bar__inner {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		padding: 0.55rem 0;
	}

	.site-header {
		grid-template-columns: auto auto;
		grid-template-areas:
			"brand toggle"
			"cta cta"
			"nav nav";
		align-items: center;
	}

	.site-branding {
		grid-area: brand;
	}

	.header-cta {
		grid-area: cta;
		justify-self: start;
	}

	.menu-toggle {
		grid-area: toggle;
		display: inline-flex;
		justify-self: end;
	}

	.site-navigation {
		grid-area: nav;
		justify-self: stretch;
		position: relative;
		opacity: 0;
		max-height: 0;
		overflow: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease, max-height 180ms ease;
	}

	.site-navigation.is-open {
		opacity: 1;
		max-height: 400px;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
		padding: 1rem;
		border-radius: 24px;
		background: rgba(252, 248, 239, 0.96);
		border: 1px solid rgba(52, 42, 30, 0.08);
		box-shadow: var(--mez-shadow-soft);
	}

	.hero-card-row,
	.heritage-metrics,
	.presentation-points,
	.flavor-grid,
	.ritual-cards {
		grid-template-columns: 1fr;
	}

	.hero-visual-stage {
		flex-direction: column;
		min-height: auto;
	}

	.hero-visual-card {
		min-height: 420px;
	}

	.hero-secondary-shot {
		position: static;
		width: min(320px, 68vw);
		margin-top: 1rem;
	}

	.presentation-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		min-height: auto;
	}

	.presentation-media--primary {
		grid-row: auto;
		min-height: 420px;
	}

	.presentation-gallery-note {
		position: static;
		max-width: none;
	}

	.floating-stat-card,
	.experience-panel {
		position: static;
		max-width: none;
		margin-top: 1rem;
	}

	.manifesto-band {
		height: 140px;
	}

	.angled-ribbon__track {
		font-size: 1.8rem;
	}

	.selection-score {
		margin: 1rem 0 0;
		padding: 0;
		flex-direction: column;
		align-items: flex-start;
	}

	.ritual-card__media {
		height: 280px;
	}
}

@media (max-width: 640px) {
	.site-header::before {
		inset: 0 -6px;
		border-radius: 28px;
	}

	.section-shell {
		padding: 44px 0;
	}

	.section-kicker::before,
	.section-kicker::after {
		width: 34px;
	}

	.hero-title,
	.section-heading h2,
	.cta-shell h2,
	.entry-title {
		line-height: 0.96;
	}

	.hero-visual-stage,
	.selection-media,
	.experience-board {
		min-height: 420px;
	}

	.hero-visual-caption {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.hero-mini-card {
		grid-template-columns: 1fr;
	}

	.hero-mini-card__media {
		min-height: 180px;
	}

	.timeline-item {
		grid-template-columns: 1fr;
	}

	.cta-shell {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-actions,
	.button-link,
	.button-link.is-secondary {
		width: 100%;
	}
}
