:root {
	--ink: #25332c;
	--muted: #65716a;
	--cream: #fbf8f1;
	--paper: #ffffff;
	--sage: #dfe9d5;
	--green: #2f694f;
	--green-dark: #1f4b38;
	--coral: #df765f;
	--line: #dfe4df;
	--shadow: 0 20px 55px rgba(37, 51, 44, .10);
	--radius: 24px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--cream);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
}

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

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

a {
	color: var(--green);
}

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

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

h1,
h2,
h3 {
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -.045em;
}

h1 {
	font-size: clamp(2.7rem, 7vw, 5.4rem);
	margin-bottom: 24px;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 18px;
}

h3 {
	font-size: 1.45rem;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.narrow {
	max-width: 790px;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--ink);
	color: #fff;
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(251, 248, 241, .94);
	border-bottom: 1px solid rgba(37, 51, 44, .08);
	backdrop-filter: blur(16px);
}

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

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
}

.brand-mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: #fff;
	background: var(--green);
	border-radius: 50% 50% 50% 18%;
	transition: border-radius .3s ease, transform .3s ease;
}

.brand:hover .brand-mark {
	border-radius: 18% 50% 50% 50%;
	transform: rotate(-6deg);
}

.main-navigation {
	display: flex;
	align-items: center;
	gap: 28px;
}

.main-navigation a {
	color: var(--ink);
	font-size: .92rem;
	font-weight: 700;
	text-decoration: none;
}

.main-navigation .nav-cta {
	padding: 10px 18px;
	color: #fff;
	background: var(--green);
	border-radius: 999px;
}

.menu-toggle {
	display: none;
	padding: 9px 14px;
	color: var(--ink);
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 999px;
}

.hero {
	padding: 82px 0 96px;
	background: linear-gradient(135deg, var(--cream) 40%, #eef1e7 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: clamp(40px, 7vw, 100px);
}

.hero-content {
	max-width: 650px;
}

.hero-content > * {
	animation: rise-in .65s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-content > *:nth-child(2) {
	animation-delay: .08s;
}

.hero-content > *:nth-child(3) {
	animation-delay: .16s;
}

.hero-content > *:nth-child(4),
.hero-content > *:nth-child(5) {
	animation-delay: .24s;
}

.eyebrow {
	margin-bottom: 16px;
	color: var(--green);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.hero-lead,
.page-hero > .container > p:last-child {
	max-width: 720px;
	color: var(--muted);
	font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 34px 0;
}

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(37, 51, 44, .13);
}

.button-primary {
	color: #fff;
	background: var(--green);
}

.button-primary:hover {
	color: #fff;
	background: var(--green-dark);
}

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

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin: 0;
	padding: 0;
	color: var(--muted);
	font-size: .88rem;
	list-style: none;
}

.trust-list li::before {
	content: "✓";
	margin-right: 7px;
	color: var(--green);
	font-weight: 900;
}

.hero-visual {
	position: relative;
	animation: visual-in .8s .14s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-visual img {
	width: 100%;
	aspect-ratio: 1 / .86;
	object-fit: cover;
	border-radius: 48% 48% 22px 22px;
	box-shadow: var(--shadow);
	transition: border-radius .5s ease, transform .5s ease;
}

.hero-visual:hover img {
	border-radius: 22px 48% 48% 22px;
	transform: scale(1.015);
}

.hero-note {
	position: absolute;
	right: -18px;
	bottom: 24px;
	display: flex;
	max-width: 250px;
	flex-direction: column;
	padding: 18px 22px;
	background: var(--paper);
	border-radius: 16px;
	box-shadow: var(--shadow);
	animation: note-float 5s 1s ease-in-out infinite;
}

.hero-note span {
	color: var(--muted);
	font-size: .85rem;
}

.section {
	padding: 90px 0;
}

.section-soft {
	background: var(--sage);
}

.section-heading,
.results-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}

.section-heading h2 {
	max-width: 650px;
	margin-bottom: 0;
}

.text-link {
	font-weight: 800;
	text-underline-offset: 4px;
}

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

.recipe-card {
	overflow: hidden;
	background: var(--paper);
	border: 1px solid rgba(37, 51, 44, .08);
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(37, 51, 44, .04);
	transition: transform .2s ease, box-shadow .2s ease;
}

.recipe-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.recipe-card-image {
	display: block;
	overflow: hidden;
}

.recipe-card-image img {
	width: 100%;
	aspect-ratio: 1.45 / 1;
	object-fit: cover;
	transition: transform .35s ease;
}

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

.recipe-card-content {
	padding: 24px;
}

.recipe-card-label {
	margin-bottom: 8px;
	color: var(--coral);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.recipe-card h2 {
	font-size: 1.55rem;
	margin-bottom: 12px;
}

.recipe-card h2 a {
	color: var(--ink);
	text-decoration: none;
}

.recipe-card-content > p:not(.recipe-card-label) {
	color: var(--muted);
	font-size: .95rem;
}

.editorial-notice,
.empty-state {
	padding: clamp(30px, 6vw, 64px);
	text-align: center;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

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

.promise-grid h2 {
	font-size: 1.7rem;
}

.promise-number {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--green);
	font-weight: 900;
}

.page-hero {
	padding: 100px 0 80px;
	background: var(--sage);
}

.page-hero-small h1 {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.section-filter {
	padding: 35px 0;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.filter-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr) auto;
	align-items: end;
	gap: 14px;
}

label {
	display: block;
	margin-bottom: 7px;
	font-size: .82rem;
	font-weight: 800;
}

input,
select,
textarea {
	width: 100%;
	padding: 13px 14px;
	color: var(--ink);
	background: #fff;
	border: 1px solid #cbd3cc;
	border-radius: 10px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
	outline: 3px solid rgba(47, 105, 79, .3);
	outline-offset: 3px;
}

.filter-grid button,
.newsletter-field button {
	min-height: 52px;
	padding: 12px 20px;
	color: #fff;
	background: var(--green);
	border: 0;
	border-radius: 10px;
	font-weight: 800;
	cursor: pointer;
}

.results-heading {
	align-items: center;
}

.results-heading p {
	margin-bottom: 0;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-top: 55px;
}

.pagination a {
	padding: 10px 17px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
}

.recipe-breadcrumb {
	display: flex;
	gap: 10px;
	padding-top: 28px;
	color: var(--muted);
	font-size: .85rem;
}

.recipe-header {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: center;
	gap: clamp(40px, 7vw, 90px);
	padding-top: 55px;
	padding-bottom: 75px;
}

.recipe-header h1 {
	font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.recipe-intro {
	color: var(--muted);
	font-size: 1.15rem;
}

.recipe-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.recipe-meta span {
	padding: 10px 13px;
	background: var(--sage);
	border-radius: 8px;
	font-size: .88rem;
}

.recipe-main-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.review-warning {
	margin-bottom: 50px;
	padding: 22px 26px;
	background: #fff5e4;
	border-left: 4px solid #d08d24;
	border-radius: 6px 14px 14px 6px;
}

.review-warning p {
	margin-bottom: 0;
}

.recipe-content-grid {
	display: grid;
	grid-template-columns: minmax(260px, .75fr) 1.45fr;
	align-items: start;
	gap: clamp(45px, 8vw, 100px);
	padding-bottom: 90px;
}

.ingredients-card {
	position: sticky;
	top: 115px;
	padding: 32px;
	background: var(--sage);
	border-radius: var(--radius);
}

.ingredients-card h2,
.instructions h2 {
	font-size: 2.1rem;
}

.ingredients-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ingredients-card li {
	padding: 11px 0;
	border-bottom: 1px solid rgba(37, 51, 44, .13);
}

.instructions ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.instructions li {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 18px;
	padding: 25px 0;
	border-bottom: 1px solid var(--line);
}

.instructions li > span {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	color: #fff;
	background: var(--green);
	border-radius: 50%;
	font-weight: 800;
}

.instructions li p {
	margin: 5px 0 0;
}

.editorial-card {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: 60px;
	margin-bottom: 90px;
	padding: 38px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.content-columns {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(50px, 8vw, 110px);
}

.method-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: method;
}

.method-list li {
	display: grid;
	grid-template-columns: 1fr;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}

.method-list span {
	color: var(--muted);
}

.prose h2:not(:first-child) {
	margin-top: 45px;
}

.contact-form {
	display: grid;
	gap: 22px;
	padding: clamp(25px, 5vw, 48px);
	background: var(--paper);
	border-radius: var(--radius);
}

.contact-form .button {
	justify-self: start;
}

.form-message {
	padding: 16px 20px;
	background: var(--sage);
	border-radius: 10px;
}

.newsletter-section {
	padding: 80px 0;
	color: #fff;
	background: var(--green-dark);
}

.newsletter-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: center;
	gap: clamp(45px, 8vw, 100px);
}

.newsletter-section .eyebrow {
	color: #b9ddc8;
}

.newsletter-form {
	padding: 28px;
	color: var(--ink);
	background: #fff;
	border-radius: 18px;
}

.newsletter-field {
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content;
	align-items: end;
	gap: 10px;
}

.newsletter-field button {
	white-space: nowrap;
}

.consent {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 9px;
	margin-top: 15px;
	color: var(--muted);
	font-size: .75rem;
	font-weight: 500;
}

.consent input {
	width: auto;
	margin-top: 4px;
}

.consent span {
	min-width: 0;
}

.consent a {
	display: inline;
}

.form-status {
	margin: 12px 0 0;
	font-size: .85rem;
}

.site-footer {
	padding: 55px 0 25px;
	color: #dce5df;
	background: #19251f;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
}

.brand-footer {
	color: #fff;
}

.footer-grid p {
	max-width: 520px;
	margin-top: 14px;
	color: #aab8b0;
}

.footer-grid nav {
	display: grid;
	gap: 9px;
}

.footer-grid nav a {
	color: #fff;
}

.footer-bottom {
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: #8fa198;
	font-size: .82rem;
}

@keyframes rise-in {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes visual-in {
	from {
		opacity: 0;
		transform: translateX(28px) scale(.98);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes note-float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
