:root {
	--ink: #07130f;
	--ink-soft: #0d1d17;
	--ink-card: #12251d;
	--cream: #f5f3e9;
	--paper: #fcfbf5;
	--text: #f8f7ef;
	--text-dark: #14231c;
	--muted: #b9c7bf;
	--muted-dark: #5a6a61;
	--line: rgba(255, 255, 255, 0.13);
	--line-dark: rgba(20, 35, 28, 0.14);
	--green: #a4e36a;
	--green-deep: #3f782e;
	--gold: #dfbd72;
	--success: #a4e36a;
	--danger: #ff9c8c;
	--radius-sm: 14px;
	--radius: 24px;
	--radius-lg: 38px;
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
	--container: min(1180px, calc(100% - 40px));
	--font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

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

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

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

body.menu-open {
	overflow: hidden;
}

img,
video {
	display: block;
	max-width: 100%;
}

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

button,
input,
textarea {
	font: inherit;
}

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

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

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

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

.narrow {
	max-width: 820px;
}

.sr-only,
.honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 999;
	padding: 10px 16px;
	background: var(--paper);
	color: var(--text-dark);
	border-radius: 8px;
	transform: translateY(-160%);
}

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

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(7, 19, 15, 0.88);
	border-color: var(--line);
	box-shadow: 0 8px 34px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(18px);
}

body:not(.home) .site-header {
	background: rgba(7, 19, 15, 0.96);
	border-color: var(--line);
	box-shadow: 0 8px 34px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(18px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--text);
	text-decoration: none;
	font-weight: 760;
	letter-spacing: -0.04em;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	background: var(--green);
	color: var(--ink);
	border-radius: 12px 12px 12px 4px;
	font-family: var(--serif);
	font-size: 24px;
	font-style: italic;
	font-weight: 800;
	box-shadow: 0 8px 28px rgba(164, 227, 106, 0.16);
}

.brand-word {
	font-size: 23px;
}

.brand-word span {
	color: var(--green);
}

.brand-logo .custom-logo-link,
.brand-logo img {
	display: block;
}

.brand-logo img {
	width: auto;
	max-height: 54px;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.primary-nav > a:not(.button) {
	position: relative;
	color: #d6ded9;
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 2px;
	background: var(--green);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 160ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-toggle {
	display: none;
	position: relative;
	width: 46px;
	height: 46px;
	padding: 11px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 12px;
	cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
	position: absolute;
	top: 50%;
	left: 11px;
	right: 11px;
	display: block;
	height: 2px;
	margin: 0;
	background: var(--text);
	border-radius: 2px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle > span:nth-child(2) {
	transform: translateY(-8px);
}

.menu-toggle > span:nth-child(3) {
	transform: translateY(-1px);
}

.menu-toggle > span:nth-child(4) {
	transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
	transform: translateY(-1px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
	transform: translateY(-1px) rotate(-45deg);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 13px 24px;
	background: var(--green);
	color: var(--ink);
	border: 1px solid var(--green);
	border-radius: 999px;
	box-shadow: 0 12px 34px rgba(164, 227, 106, 0.16);
	cursor: pointer;
	font-weight: 780;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
	background: #b6ee82;
	box-shadow: 0 16px 42px rgba(164, 227, 106, 0.23);
	transform: translateY(-2px);
}

.button-small {
	min-height: 42px;
	padding: 9px 18px;
	font-size: 14px;
}

.button-ghost {
	background: transparent;
	color: var(--text);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: none;
}

.button-ghost:hover {
	background: rgba(255, 255, 255, 0.07);
	box-shadow: none;
}

.button-outline-dark {
	background: transparent;
	color: var(--text-dark);
	border-color: rgba(20, 35, 28, 0.25);
	box-shadow: none;
}

.button-outline-dark:hover {
	background: rgba(20, 35, 28, 0.06);
	border-color: rgba(20, 35, 28, 0.42);
	box-shadow: none;
}

.button-share {
	background: #edf3ee;
	color: var(--text-dark);
	border-color: #cad7ce;
	box-shadow: none;
}

.button-share:hover,
.button-share:focus-visible {
	background: #dfeadf;
	color: var(--text-dark);
	border-color: #a9bea9;
	box-shadow: none;
}

.button-block {
	width: 100%;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 800px;
	padding: 168px 0 104px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		var(--ink);
	background-size: 64px 64px;
}

.hero::after {
	position: absolute;
	right: -15%;
	bottom: -44%;
	width: 68vw;
	height: 68vw;
	border: 1px solid rgba(164, 227, 106, 0.08);
	border-radius: 50%;
	content: "";
}

.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	pointer-events: none;
}

.hero-glow-one {
	top: -220px;
	right: -120px;
	width: 540px;
	height: 540px;
	background: radial-gradient(circle, rgba(79, 151, 56, 0.23), transparent 68%);
}

.hero-glow-two {
	left: 24%;
	bottom: -230px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(223, 189, 114, 0.1), transparent 69%);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.8fr);
	align-items: center;
	gap: clamp(50px, 7vw, 105px);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 18px;
	color: var(--green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 28px;
	height: 1px;
	background: currentColor;
	content: "";
}

.eyebrow-dark {
	color: var(--green-deep);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2,
.entry-header h1 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 620;
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.hero h1 {
	max-width: 770px;
	font-size: clamp(54px, 6.4vw, 94px);
}

.hero-title-line {
	display: block;
}

.hero-title-line em {
	color: var(--green);
	font-style: italic;
	font-weight: inherit;
}

.hero-title-line span {
	color: var(--text);
	font-style: normal;
}

.hero-intro {
	max-width: 660px;
	margin: 28px 0 0;
	color: var(--muted);
	font-size: clamp(18px, 1.5vw, 21px);
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 36px;
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin: 30px 0 0;
	padding: 0;
	color: #ced8d2;
	font-size: 13px;
	font-weight: 660;
	list-style: none;
}

.trust-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.trust-list li::before {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	background: rgba(164, 227, 106, 0.12);
	color: var(--green);
	border: 1px solid rgba(164, 227, 106, 0.3);
	border-radius: 50%;
	content: "✓";
	font-size: 10px;
}

.hero-board {
	position: relative;
	padding: 22px;
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025));
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	backdrop-filter: blur(12px);
}

.hero-board::before {
	position: absolute;
	inset: 7px;
	border: 1px solid rgba(255, 255, 255, 0.055);
	border-radius: 31px;
	content: "";
	pointer-events: none;
}

.hero-board-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 7px 20px;
}

.board-kicker {
	font-family: var(--serif);
	font-size: 22px;
	font-style: italic;
	font-weight: 700;
}

.board-status {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.board-status i {
	width: 8px;
	height: 8px;
	background: var(--green);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(164, 227, 106, 0.1);
}

.board-focus {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 330px;
	padding: 48px 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at center, rgba(164, 227, 106, 0.11), transparent 58%),
		linear-gradient(145deg, rgba(7, 19, 15, 0.78), rgba(18, 37, 29, 0.86));
	border: 1px solid var(--line);
	border-radius: 26px;
	text-align: center;
}

.board-focus::before,
.board-focus::after {
	position: absolute;
	width: 250px;
	height: 250px;
	border: 1px solid rgba(164, 227, 106, 0.12);
	border-radius: 50%;
	content: "";
}

.board-focus::after {
	width: 190px;
	height: 190px;
	border-color: rgba(223, 189, 114, 0.11);
}

.board-number,
.board-focus p {
	position: relative;
	z-index: 1;
}

.board-number {
	font-family: var(--serif);
	font-size: clamp(82px, 9vw, 124px);
	font-weight: 600;
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.board-number span {
	color: var(--green);
	font-size: 0.52em;
	vertical-align: top;
}

.board-focus p {
	max-width: 230px;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.board-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 12px;
}

.board-stats > div {
	display: flex;
	flex-direction: column;
	padding: 17px 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line);
	border-radius: 18px;
}

.board-stats strong {
	color: var(--text);
	font-family: var(--serif);
	font-size: 23px;
	letter-spacing: -0.025em;
}

.board-stats span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.section {
	padding: 108px 0;
}

.section-light {
	background: var(--cream);
	color: var(--text-dark);
}

.section-dark {
	background: var(--ink-soft);
	color: var(--text);
}

.section-heading {
	max-width: 710px;
	margin-bottom: 52px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
	font-size: clamp(42px, 5vw, 67px);
	line-height: 1.04;
}

.section-heading > p:last-child,
.about-copy > p,
.contact-copy > p {
	max-width: 650px;
	margin: 21px 0 0;
	color: var(--muted-dark);
	font-size: 18px;
}

.section-dark .section-heading > p:last-child,
.about-copy > p,
.contact-copy > p {
	color: var(--muted);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.step-card {
	position: relative;
	min-height: 290px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	box-shadow: 0 20px 50px rgba(20, 35, 28, 0.05);
}

.step-number {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 46px;
	background: var(--text-dark);
	color: var(--green);
	border-radius: 50%;
	font-family: var(--serif);
	font-size: 17px;
	font-style: italic;
	font-weight: 700;
}

.step-card h3,
.benefit-card h3 {
	margin: 0 0 12px;
	font-family: var(--serif);
	font-size: 29px;
	font-weight: 620;
	letter-spacing: -0.03em;
}

.step-card p,
.benefit-card p {
	margin: 0;
	color: var(--muted-dark);
	font-size: 15px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.benefit-card {
	display: grid;
	grid-template-columns: 82px 1fr;
	column-gap: 24px;
	align-items: start;
	min-height: 230px;
	padding: 30px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.benefit-icon {
	display: grid;
	grid-row: span 2;
	place-items: center;
	width: 82px;
	height: 82px;
	background: rgba(164, 227, 106, 0.09);
	color: var(--green);
	border: 1px solid rgba(164, 227, 106, 0.22);
	border-radius: 24px;
	font-family: var(--serif);
	font-size: 23px;
	font-style: italic;
	font-weight: 700;
}

.benefit-card h3 {
	align-self: end;
	color: var(--text);
}

.benefit-card p {
	color: var(--muted);
}

.media-section {
	background: var(--paper);
	color: var(--text-dark);
}

.media-grid {
	display: grid;
	grid-template-columns: 0.65fr 1.35fr;
	align-items: center;
	gap: 64px;
}

.media-grid .section-heading {
	margin: 0;
}

.product-video {
	width: 100%;
	background: var(--ink-soft);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.tm7-scroll {
	--tm7-progress: 0;
	--tm7-intro-opacity: 1;
	--tm7-intro-shift: 0px;
	--tm7-outro-opacity: 1;
	--tm7-outro-shift: 0px;
	position: relative;
	background: #020605;
	color: var(--text);
}

.tm7-scroll.is-enhanced {
	height: 360vh;
}

.tm7-scroll-track {
	height: 100%;
}

.tm7-scroll-stage {
	position: relative;
	isolation: isolate;
	min-height: clamp(720px, 82vw, 900px);
	overflow: hidden;
	background: #020605;
}

.tm7-scroll.is-enhanced .tm7-scroll-stage {
	position: sticky;
	top: 0;
	height: 100vh;
	height: 100svh;
	min-height: 620px;
}

.tm7-scroll-media,
.tm7-scroll-poster,
.tm7-scroll-video,
.tm7-scroll-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.tm7-scroll-media {
	z-index: 0;
	background: #020605;
}

.tm7-scroll-poster,
.tm7-scroll-video {
	object-fit: cover;
	object-position: center;
}

.tm7-scroll-video {
	opacity: 0;
	transition: opacity 320ms ease;
}

.tm7-scroll.is-video-ready .tm7-scroll-video {
	opacity: 1;
}

.tm7-scroll.is-video-ready .tm7-scroll-poster {
	opacity: 0;
}

.tm7-scroll-shade {
	background:
		linear-gradient(90deg, rgba(2, 6, 5, 0.82) 0%, rgba(2, 6, 5, 0.2) 38%, rgba(2, 6, 5, 0.08) 62%, rgba(2, 6, 5, 0.7) 100%),
		linear-gradient(180deg, rgba(2, 6, 5, 0.56) 0%, transparent 28%, transparent 61%, rgba(2, 6, 5, 0.98) 83%, #020605 91%);
}

.tm7-scroll-copy {
	position: absolute;
	z-index: 2;
	width: min(540px, calc(100% - 48px));
}

.tm7-scroll-copy h2 {
	max-width: 680px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(46px, 6vw, 78px);
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.tm7-scroll-copy > p:not(.eyebrow) {
	max-width: 500px;
	margin: 22px 0 0;
	color: #d8e2dc;
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.6;
}

.tm7-scroll-intro {
	top: clamp(90px, 13vh, 140px);
	left: max(24px, calc((100vw - 1180px) / 2));
}

.tm7-scroll-outro {
	right: max(24px, calc((100vw - 1180px) / 2));
	bottom: clamp(62px, 9vh, 104px);
}

.tm7-scroll-outro .button {
	margin-top: 28px;
}

.tm7-scroll.is-enhanced .tm7-scroll-intro {
	top: auto;
	bottom: clamp(72px, 10vh, 112px);
	opacity: var(--tm7-intro-opacity);
	transform: translateY(var(--tm7-intro-shift));
}

.tm7-scroll.is-enhanced .tm7-scroll-outro {
	opacity: var(--tm7-outro-opacity);
	transform: translateY(var(--tm7-outro-shift));
}

.tm7-scroll-hint {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tm7-scroll-hint i {
	position: relative;
	width: 20px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 999px;
}

.tm7-scroll-hint i::after {
	position: absolute;
	top: 7px;
	left: 50%;
	width: 3px;
	height: 6px;
	background: var(--green);
	border-radius: 999px;
	content: "";
	transform: translateX(-50%);
}

.tm7-scroll-progress {
	position: absolute;
	top: 50%;
	right: clamp(16px, 2.4vw, 38px);
	z-index: 3;
	width: 2px;
	height: 120px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	transform: translateY(-50%);
}

.tm7-scroll-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--green);
	border-radius: inherit;
	transform: scaleY(var(--tm7-progress));
	transform-origin: top;
}

.tm7-scroll.is-static .tm7-scroll-video,
.tm7-scroll.is-static .tm7-scroll-progress,
.tm7-scroll.is-static .tm7-scroll-hint {
	display: none;
}

.about-section {
	position: relative;
	overflow: hidden;
	background: #0a1813;
}

.about-section::before {
	position: absolute;
	left: -10%;
	bottom: -60%;
	width: 750px;
	height: 750px;
	background: radial-gradient(circle, rgba(164, 227, 106, 0.1), transparent 67%);
	border-radius: 50%;
	content: "";
}

.about-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.15fr);
	align-items: center;
	gap: clamp(55px, 8vw, 120px);
}

.portrait-wrap {
	position: relative;
	aspect-ratio: 4 / 5;
}

.portrait-wrap::before {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 94px;
	height: 94px;
	border-top: 1px solid var(--green);
	border-left: 1px solid var(--green);
	border-radius: 28px 0 0;
	content: "";
}

.portrait,
.portrait-placeholder {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5;
	border: 1px solid var(--line);
	border-radius: 34px 34px 34px 8px;
	box-shadow: var(--shadow);
}

.portrait {
	display: block;
	object-fit: cover;
	object-position: 50% 60%;
}

.portrait-placeholder {
	display: grid;
	place-content: center;
	background:
		radial-gradient(circle at 70% 24%, rgba(164, 227, 106, 0.2), transparent 25%),
		linear-gradient(145deg, #183126, #0d1c16);
	text-align: center;
}

.portrait-placeholder span {
	font-family: var(--serif);
	font-size: clamp(58px, 7vw, 88px);
	font-style: italic;
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.portrait-placeholder small {
	margin-top: 24px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.area-note {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 490px;
	margin-top: 32px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid var(--line);
	border-radius: 18px;
}

.area-note > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	background: rgba(164, 227, 106, 0.1);
	color: var(--green);
	border-radius: 13px;
	font-size: 22px;
}

.area-note strong {
	display: block;
	font-size: 13px;
}

.area-note p {
	margin: 2px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 28px;
	color: var(--green);
	font-weight: 750;
	text-decoration: none;
}

.text-link span {
	transition: transform 150ms ease;
}

.text-link:hover span {
	transform: translateX(5px);
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.65fr 1fr;
	align-items: start;
	gap: 80px;
}

.faq-grid .section-heading {
	position: sticky;
	top: 124px;
	margin: 0;
}

.faq-list {
	border-top: 1px solid var(--line-dark);
}

.faq-list details {
	border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
	position: relative;
	padding: 26px 54px 26px 0;
	cursor: pointer;
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 620;
	letter-spacing: -0.025em;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	position: absolute;
	top: 50%;
	right: 5px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	background: var(--text-dark);
	color: var(--green);
	border-radius: 50%;
	content: "+";
	font-family: var(--font);
	font-size: 18px;
	transform: translateY(-50%);
}

.faq-list details[open] summary::after {
	content: "–";
}

.faq-list details p {
	max-width: 650px;
	margin: -7px 0 27px;
	padding-right: 54px;
	color: var(--muted-dark);
}

.contact-section {
	background:
		radial-gradient(circle at 12% 82%, rgba(164, 227, 106, 0.1), transparent 24%),
		var(--ink);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	align-items: start;
	gap: clamp(54px, 7vw, 96px);
}

.contact-copy {
	position: relative;
}

.contact-methods {
	display: grid;
	gap: 10px;
	margin-top: 37px;
}

.contact-methods a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 17px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid var(--line);
	border-radius: 15px;
	text-decoration: none;
	transition: background-color 150ms ease, border-color 150ms ease;
}

.contact-methods a:hover {
	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(164, 227, 106, 0.38);
}

.contact-methods span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 720;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-methods strong {
	font-size: 15px;
}

.form-card {
	position: sticky;
	top: 124px;
	padding: clamp(25px, 4vw, 44px);
	background: var(--paper);
	color: var(--text-dark);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.direct-contact-card h3 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 620;
	letter-spacing: -0.04em;
	line-height: 1.04;
}

.direct-contact-card > p:not(.eyebrow):not(.direct-contact-note) {
	margin: 20px 0 0;
	color: var(--muted-dark);
	font-size: 17px;
}

.direct-contact-actions {
	display: grid;
	gap: 11px;
	margin-top: 30px;
}

.direct-contact-note {
	margin: 24px 0 0;
	padding-top: 20px;
	color: var(--muted-dark);
	border-top: 1px solid var(--line-dark);
	font-size: 12px;
	line-height: 1.6;
}

.form-notice {
	margin-bottom: 24px;
	padding: 14px 16px;
	border: 1px solid;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 650;
}

.form-notice-success {
	background: #e7f6dc;
	color: #234d18;
	border-color: #88b96a;
}

.form-notice-error {
	background: #fff0ed;
	color: #7b2419;
	border-color: #e5a095;
}

.contact-copy .form-notice {
	margin: 30px 0 0;
}

.lead-form {
	display: grid;
	gap: 20px;
}

.lead-form-compact {
	gap: 18px;
	margin-top: 32px;
}

.contact-copy .form-notice + .lead-form-compact {
	margin-top: 18px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.lead-form label > span,
.lead-form legend {
	display: block;
	margin-bottom: 7px;
	color: #314039;
	font-size: 13px;
	font-weight: 750;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form textarea {
	width: 100%;
	min-height: 52px;
	padding: 13px 14px;
	background: #fff;
	color: var(--text-dark);
	border: 1px solid #c8d0cb;
	border-radius: 11px;
	font-size: 16px;
	line-height: 1.4;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.lead-form textarea {
	min-height: 118px;
	resize: vertical;
}

.lead-form input[type="text"]:focus,
.lead-form input[type="tel"]:focus,
.lead-form input[type="email"]:focus,
.lead-form textarea:focus {
	border-color: var(--green-deep);
	box-shadow: 0 0 0 4px rgba(63, 120, 46, 0.12);
	outline: none;
}

.contact-copy .lead-form label > span {
	color: #dbe7df;
}

.contact-copy .lead-form input[type="text"],
.contact-copy .lead-form input[type="tel"],
.contact-copy .lead-form input[type="email"] {
	background: rgba(255, 255, 255, 0.065);
	color: var(--text);
	border-color: rgba(255, 255, 255, 0.19);
}

.contact-copy .lead-form input::placeholder {
	color: #8fa097;
}

.contact-copy .lead-form input[type="text"]:focus,
.contact-copy .lead-form input[type="tel"]:focus,
.contact-copy .lead-form input[type="email"]:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 4px rgba(164, 227, 106, 0.12);
}

.consent-field input:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 3px;
}

.lead-form button:disabled {
	cursor: wait;
	opacity: 0.68;
}

.lead-form fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.radio-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.radio-group label {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 49px;
	padding: 11px 13px;
	background: #fff;
	border: 1px solid #c8d0cb;
	border-radius: 11px;
	cursor: pointer;
}

.radio-group input,
.consent-field input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--green-deep);
}

.radio-group label > span {
	margin: 0;
	font-size: 14px;
}

.consent-field {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 11px;
	cursor: pointer;
}

.consent-field input {
	margin-top: 3px;
}

.consent-field > span {
	margin: 0 !important;
	color: var(--muted-dark) !important;
	font-size: 12px !important;
	font-weight: 520 !important;
	line-height: 1.55;
}

.consent-field a {
	color: var(--green-deep);
	font-weight: 700;
}

.contact-copy .consent-field > span {
	color: var(--muted) !important;
}

.contact-copy .consent-field a {
	color: var(--green);
}

.form-footnote {
	margin: -7px 0 0;
	color: var(--muted-dark);
	font-size: 11px;
	text-align: center;
}

.contact-copy .form-footnote {
	color: #8fa097;
}

.site-footer {
	padding: 68px 0 30px;
	background: #040b08;
	border-top: 1px solid var(--line);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.65fr 0.8fr;
	gap: 60px;
}

.brand-footer {
	margin-bottom: 18px;
}

.footer-intro {
	max-width: 390px;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}

.footer-title {
	margin: 0 0 5px;
	color: var(--text);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-links a {
	color: var(--muted);
	font-size: 13px;
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--green);
}

.footer-legal {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-top: 54px;
	padding-top: 23px;
	border-top: 1px solid var(--line);
}

.footer-legal p {
	max-width: 650px;
	margin: 0;
	color: #829088;
	font-size: 10px;
	line-height: 1.6;
}

.content-page {
	min-height: 70vh;
	padding: 150px 0 90px;
	background: var(--cream);
	color: var(--text-dark);
}

.entry-card {
	padding: clamp(25px, 5vw, 55px);
	background: var(--paper);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
}

.entry-header h1 {
	font-size: clamp(42px, 6vw, 70px);
}

.entry-content {
	margin-top: 28px;
}

.entry-content a {
	color: var(--green-deep);
}

.entry-content h2 {
	margin: 38px 0 12px;
	font-family: var(--serif);
	font-size: clamp(27px, 4vw, 38px);
	line-height: 1.15;
}

.entry-content p,
.entry-content li {
	color: var(--muted-dark);
}

.entry-content p {
	margin: 0 0 17px;
}

.entry-content ul {
	margin: 0 0 22px;
	padding-left: 22px;
}

.entry-content li + li {
	margin-top: 7px;
}

.catalog-page {
	background: var(--cream);
	color: var(--text-dark);
}

.catalog-hero {
	position: relative;
	padding: 168px 0 82px;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 8%, rgba(164, 227, 106, 0.2), transparent 34%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(245, 243, 233, 0.18)),
		var(--cream);
	border-bottom: 1px solid var(--line-dark);
}

.catalog-hero::after {
	position: absolute;
	top: -190px;
	right: max(-110px, calc((100vw - 1180px) / 2 - 120px));
	width: 430px;
	height: 430px;
	border: 1px solid rgba(63, 120, 46, 0.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 52px rgba(63, 120, 46, 0.035),
		0 0 0 104px rgba(63, 120, 46, 0.025);
	content: "";
	pointer-events: none;
}

.catalog-hero .container {
	position: relative;
	z-index: 1;
}

.catalog-hero h1 {
	max-width: 900px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(54px, 7vw, 92px);
	font-weight: 620;
	letter-spacing: -0.052em;
	line-height: 0.96;
}

.catalog-intro {
	max-width: 690px;
	margin: 25px 0 0;
	color: var(--muted-dark);
	font-size: clamp(17px, 1.7vw, 21px);
	line-height: 1.65;
}

.catalog-content {
	min-height: 42vh;
	padding: 76px 0 108px;
}

.catalog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 42px;
	padding: 0 0 24px;
	border-bottom: 1px solid var(--line-dark);
}

.catalog-filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 17px;
	background: rgba(255, 255, 255, 0.56);
	color: #3d4c44;
	border: 1px solid rgba(20, 35, 28, 0.16);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 720;
	line-height: 1.25;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.catalog-filter:hover,
.catalog-filter:focus-visible {
	background: #fff;
	color: var(--green-deep);
	border-color: rgba(63, 120, 46, 0.45);
	transform: translateY(-1px);
}

.catalog-filter.is-active {
	background: var(--text-dark);
	color: var(--green);
	border-color: var(--text-dark);
}

.catalog-grid,
.community-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.recipe-card,
.community-card {
	min-width: 0;
	overflow: hidden;
	background: var(--paper);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	box-shadow: 0 18px 50px rgba(20, 35, 28, 0.065);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.recipe-card {
	display: flex;
	flex-direction: column;
}

.recipe-card:hover,
.community-card:hover {
	border-color: rgba(63, 120, 46, 0.3);
	box-shadow: 0 25px 65px rgba(20, 35, 28, 0.11);
	transform: translateY(-4px);
}

.recipe-card-media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #dce7dc;
	text-decoration: none;
}

.recipe-card-image,
.recipe-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.recipe-card-image {
	object-fit: cover;
	transition: transform 420ms ease;
}

.recipe-card:hover .recipe-card-image {
	transform: scale(1.035);
}

.recipe-card-placeholder {
	position: relative;
	background:
		radial-gradient(circle at 72% 22%, rgba(164, 227, 106, 0.75), transparent 28%),
		linear-gradient(145deg, #142a20, #315f31);
}

.recipe-card-placeholder::before {
	position: absolute;
	left: 24px;
	bottom: 18px;
	color: rgba(255, 255, 255, 0.82);
	content: "TM7";
	font-family: var(--serif);
	font-size: 42px;
	font-style: italic;
	font-weight: 650;
	letter-spacing: -0.05em;
}

.recipe-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 25px;
}

.recipe-card-meta {
	margin: 0 0 10px;
	color: var(--green-deep);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1.45;
	text-transform: uppercase;
}

.recipe-card h2,
.community-card h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(27px, 2.5vw, 34px);
	font-weight: 620;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.recipe-card h2 a {
	text-decoration: none;
}

.recipe-card h2 a:hover {
	color: var(--green-deep);
}

.recipe-card-body > p:not(.recipe-card-meta) {
	margin: 15px 0 0;
	color: var(--muted-dark);
	font-size: 14px;
	line-height: 1.6;
}

.recipe-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 23px;
	color: var(--green-deep);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.recipe-card-link::after {
	content: "\2192";
	font-size: 17px;
	line-height: 1;
	transition: transform 160ms ease;
}

.recipe-card-link:hover::after {
	transform: translateX(4px);
}

.community-card {
	display: grid;
	grid-template-rows: auto 1fr;
}

.community-photo-trigger {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--ink-soft);
	cursor: zoom-in;
	text-decoration: none;
}

.community-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease, filter 180ms ease;
}

.community-photo-trigger:hover .community-card-image,
.community-photo-trigger:focus-visible .community-card-image {
	filter: brightness(0.93);
	transform: scale(1.035);
}

.community-card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 23px 24px 25px;
}

.community-photo-credit {
	margin: 10px 0 0;
	color: var(--muted-dark);
	font-size: 12px;
	line-height: 1.45;
}

.community-card-body .button {
	margin-top: auto;
	padding-top: 9px;
}

.community-card h2 + .button,
.community-photo-credit + .button {
	margin-top: 22px;
}

.catalog-page .navigation.pagination {
	margin-top: 50px;
}

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

.catalog-page .navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.catalog-page .navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 13px;
	background: var(--paper);
	color: var(--text-dark);
	border: 1px solid var(--line-dark);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
}

.catalog-page .navigation.pagination a.page-numbers:hover,
.catalog-page .navigation.pagination a.page-numbers:focus-visible,
.catalog-page .navigation.pagination .page-numbers.current {
	background: var(--text-dark);
	color: var(--green);
	border-color: var(--text-dark);
}

.catalog-empty {
	max-width: 790px;
	margin-inline: auto;
	padding: clamp(34px, 6vw, 68px);
	background: var(--paper);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 70px rgba(20, 35, 28, 0.07);
	text-align: center;
}

.catalog-empty h1,
.catalog-empty h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 620;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.catalog-empty p {
	max-width: 560px;
	margin: 18px auto 0;
	color: var(--muted-dark);
	font-size: 16px;
}

.catalog-empty .button {
	margin-top: 28px;
}

.single-catalog.content-page {
	padding-top: 142px;
	background: var(--cream);
}

.catalog-entry {
	padding: clamp(28px, 5.2vw, 58px);
	box-shadow: 0 24px 75px rgba(20, 35, 28, 0.07);
}

.catalog-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--green-deep);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.catalog-back-link::before {
	content: "\2190";
	font-size: 17px;
	line-height: 1;
	transition: transform 160ms ease;
}

.catalog-back-link:hover::before {
	transform: translateX(-4px);
}

.catalog-entry-header {
	margin-top: 31px;
}

.catalog-entry-header .eyebrow {
	margin-bottom: 13px;
}

.catalog-entry-header h1 {
	font-size: clamp(44px, 7vw, 72px);
}

.catalog-featured {
	margin: 38px 0 0;
	overflow: hidden;
	background: #e4e8e1;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
}

.catalog-featured img {
	width: 100%;
	height: auto;
	max-height: 760px;
	object-fit: contain;
}

.community-featured a {
	display: block;
	background: var(--ink-soft);
	cursor: zoom-in;
}

.community-featured figcaption {
	padding: 11px 16px;
	color: var(--muted-dark);
	font-size: 12px;
	line-height: 1.5;
}

.catalog-entry-content {
	font-size: 17px;
}

.catalog-entry-content > :first-child {
	margin-top: 0;
}

.catalog-entry-content > :last-child {
	margin-bottom: 0;
}

.catalog-entry-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 38px;
	padding-top: 30px;
	border-top: 1px solid var(--line-dark);
}

.community-modal {
	width: min(1100px, calc(100% - 40px));
	max-width: none;
	max-height: calc(100vh - 40px);
	max-height: calc(100dvh - 40px);
	margin: auto;
	padding: 0;
	overflow: visible;
	background: transparent;
	color: var(--text);
	border: 0;
}

.community-modal:not([open]) {
	display: none;
}

.community-modal::backdrop {
	background: rgba(2, 7, 5, 0.86);
	backdrop-filter: blur(12px);
}

.community-modal-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
	max-height: calc(100vh - 40px);
	max-height: calc(100dvh - 40px);
	overflow: hidden;
	background: var(--ink-soft);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 28px;
	box-shadow: 0 35px 110px rgba(0, 0, 0, 0.55);
}

.community-modal-image {
	width: 100%;
	height: min(78vh, 780px);
	background: #020705;
	object-fit: contain;
}

.community-modal-caption {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 68px 30px 32px;
}

.community-modal-caption h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(30px, 3.5vw, 46px);
	font-weight: 620;
	letter-spacing: -0.04em;
	line-height: 1.03;
}

.community-modal-caption .button {
	margin-top: 25px;
}

.community-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0 0 3px;
	background: rgba(7, 19, 15, 0.82);
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
	cursor: pointer;
	font-size: 31px;
	font-weight: 300;
	line-height: 1;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.community-modal-close:hover {
	background: var(--green);
	color: var(--ink);
	border-color: var(--green);
	transform: rotate(4deg);
}

.has-js .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 620ms ease, transform 620ms ease;
}

.has-js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1150px) {
	.menu-toggle {
		display: block;
	}

	.primary-nav {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		position: absolute;
		top: calc(100% - 1px);
		left: 17px;
		right: 17px;
		max-height: calc(100vh - 100px);
		padding: 12px;
		background: rgba(13, 29, 23, 0.98);
		border: 1px solid var(--line);
		border-radius: 18px;
		box-shadow: var(--shadow);
		overflow-y: auto;
		backdrop-filter: blur(18px);
	}

	.has-js .primary-nav {
		display: none;
	}

	.has-js .primary-nav[data-open="true"] {
		display: grid;
	}

	.primary-nav > a:not(.button) {
		padding: 13px 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		font-size: 14px;
	}

	.primary-nav > a:not(.button)::after {
		display: none;
	}

	.primary-nav .button {
		margin-top: 10px;
	}
}

@media (max-width: 980px) {
	:root {
		--container: min(100% - 34px, 760px);
	}

	.tm7-scroll.is-enhanced {
		height: 330vh;
	}

	.tm7-scroll-copy {
		width: min(500px, calc(100% - 68px));
	}

	.tm7-scroll-intro {
		left: 34px;
	}

	.tm7-scroll-outro {
		right: 34px;
	}

	.hero {
		min-height: auto;
		padding: 142px 0 86px;
	}

	.hero-grid,
	.media-grid,
	.about-grid,
	.faq-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		gap: 56px;
	}

	.hero-board {
		max-width: 560px;
	}

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

	.step-card {
		min-height: auto;
	}

	.step-number {
		margin-bottom: 30px;
	}

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

	.media-grid,
	.about-grid,
	.faq-grid,
	.contact-grid {
		gap: 50px;
	}

	.portrait-wrap {
		max-width: 520px;
	}

	.faq-grid .section-heading,
	.contact-copy,
	.form-card {
		position: static;
	}

	.footer-grid {
		grid-template-columns: 1.2fr 0.8fr 1fr;
		gap: 35px;
	}

	.catalog-hero {
		padding: 148px 0 70px;
	}

	.catalog-content {
		padding: 64px 0 92px;
	}

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

	.community-modal-inner {
		grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.75fr);
	}

	.community-modal-caption {
		padding-inline: 24px;
	}
}

@media (max-width: 680px) {
	:root {
		--container: calc(100% - 28px);
	}

	html {
		scroll-padding-top: 76px;
	}

	.tm7-scroll.is-enhanced {
		height: 300vh;
	}

	.tm7-scroll-stage {
		min-height: 720px;
	}

	.tm7-scroll.is-enhanced .tm7-scroll-stage {
		height: 100vh;
		height: 100svh;
		min-height: 0;
	}

	.tm7-scroll-poster,
	.tm7-scroll-video {
		object-position: 51% center;
	}

	.tm7-scroll-shade {
		background:
			linear-gradient(180deg, rgba(2, 6, 5, 0.74) 0%, rgba(2, 6, 5, 0.12) 32%, rgba(2, 6, 5, 0.08) 55%, rgba(2, 6, 5, 0.98) 76%, #020605 88%),
			linear-gradient(90deg, rgba(2, 6, 5, 0.42), transparent 48%, rgba(2, 6, 5, 0.38));
	}

	.tm7-scroll-copy {
		left: 20px;
		right: 20px;
		width: auto;
	}

	.tm7-scroll-copy h2 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.tm7-scroll-copy > p:not(.eyebrow) {
		margin-top: 16px;
		font-size: 15px;
	}

	.tm7-scroll-intro {
		top: 94px;
	}

	.tm7-scroll-outro {
		bottom: 44px;
	}

	.tm7-scroll.is-enhanced .tm7-scroll-intro {
		bottom: 72px;
	}

	.tm7-scroll.is-enhanced .tm7-scroll-outro {
		bottom: 42px;
	}

	.tm7-scroll-outro .button {
		width: 100%;
		margin-top: 22px;
	}

	.tm7-scroll-progress {
		right: 10px;
		height: 82px;
	}

	.tm7-scroll-hint {
		margin-top: 22px;
	}

	.header-inner {
		min-height: 72px;
	}

	.brand-word {
		font-size: 21px;
	}

	.brand-mark {
		width: 35px;
		height: 35px;
	}

	.hero {
		padding: 124px 0 72px;
		background-size: 42px 42px;
	}

	.hero h1 {
		font-size: clamp(48px, 15vw, 68px);
	}

	.hero-intro {
		font-size: 17px;
	}

	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-actions .button {
		width: 100%;
	}

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

	.hero-board {
		padding: 13px;
		border-radius: 27px;
	}

	.board-focus {
		min-height: 280px;
	}

	.board-stats {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 78px 0;
	}

	.section-heading {
		margin-bottom: 37px;
	}

	.section-heading h2,
	.about-copy h2,
	.contact-copy h2 {
		font-size: clamp(39px, 12vw, 52px);
	}

	.section-heading > p:last-child,
	.about-copy > p,
	.contact-copy > p {
		font-size: 16px;
	}

	.step-card,
	.benefit-card {
		padding: 24px;
	}

	.benefit-card {
		grid-template-columns: 60px 1fr;
		column-gap: 18px;
		min-height: auto;
	}

	.benefit-icon {
		width: 60px;
		height: 60px;
		border-radius: 18px;
		font-size: 18px;
	}

	.benefit-card h3 {
		font-size: 25px;
	}

	.portrait-wrap::before {
		display: none;
	}

	.faq-list summary {
		padding-right: 48px;
		font-size: 21px;
	}

	.faq-list details p {
		padding-right: 0;
	}

	.form-row,
	.radio-group {
		grid-template-columns: 1fr;
	}

	.contact-methods a {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.form-card {
		border-radius: 26px;
	}

	.catalog-hero {
		padding: 118px 0 56px;
	}

	.catalog-hero::after {
		top: -225px;
		right: -245px;
	}

	.catalog-hero h1 {
		font-size: clamp(45px, 14vw, 64px);
	}

	.catalog-intro {
		margin-top: 19px;
		font-size: 16px;
	}

	.catalog-content {
		padding: 48px 0 76px;
	}

	.catalog-filters {
		flex-wrap: nowrap;
		margin-right: -14px;
		margin-bottom: 30px;
		margin-left: -14px;
		padding-right: 14px;
		padding-bottom: 17px;
		padding-left: 14px;
		overflow-x: auto;
		scrollbar-width: thin;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}

	.catalog-filter {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}

	.catalog-grid,
	.community-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
	}

	.recipe-card,
	.community-card {
		border-radius: 22px;
	}

	.recipe-card-body,
	.community-card-body {
		padding: 22px;
	}

	.recipe-card h2,
	.community-card h2 {
		font-size: 30px;
	}

	.catalog-empty {
		padding: 31px 22px;
		border-radius: 24px;
	}

	.catalog-empty h1,
	.catalog-empty h2 {
		font-size: 36px;
	}

	.single-catalog.content-page {
		padding: 108px 0 70px;
	}

	.catalog-entry {
		padding: 25px 20px;
		border-radius: 22px;
	}

	.catalog-entry-header {
		margin-top: 25px;
	}

	.catalog-entry-header h1 {
		font-size: clamp(40px, 13vw, 56px);
	}

	.catalog-featured {
		margin-top: 30px;
		border-radius: 18px;
	}

	.catalog-entry-content {
		font-size: 16px;
	}

	.catalog-entry-actions .button {
		width: 100%;
	}

	.community-modal {
		width: calc(100% - 24px);
		max-height: calc(100vh - 24px);
		max-height: calc(100dvh - 24px);
	}

	.community-modal-inner {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: minmax(0, 1fr) auto;
		max-height: calc(100vh - 24px);
		max-height: calc(100dvh - 24px);
		border-radius: 22px;
	}

	.community-modal-image {
		height: auto;
		max-height: 64vh;
		max-height: 64dvh;
	}

	.community-modal-caption {
		padding: 20px;
	}

	.community-modal-caption h2 {
		font-size: 31px;
	}

	.community-modal-caption .button {
		width: 100%;
		margin-top: 18px;
	}

	.community-modal-close {
		top: 10px;
		right: 10px;
	}

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

	.footer-grid > div:first-child {
		grid-column: 1 / -1;
	}

	.footer-legal {
		flex-direction: column;
		gap: 14px;
	}
}

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

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

	.has-js .reveal {
		opacity: 1;
		transform: none;
	}
}
