/*
Theme Name: TahayHub
Theme URI: https://tahayhub.com/
Author: TahayHub
Description: Leichtes, konfigurierbares WordPress-Theme für eigenständige TahayHub-Content-Marken.
Version: 0.3.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: tahayhub
*/

:root {
	--thh-cream: #f7f0df;
	--thh-cream-light: #fffaf0;
	--thh-paper: #fffdf7;
	--thh-ink: #201b17;
	--thh-ink-soft: #625a52;
	--thh-red: #7f1d1d;
	--thh-red-dark: #5b1517;
	--thh-gold: #b9893b;
	--thh-green: #556b45;
	--thh-line: rgba(32, 27, 23, 0.14);
	--thh-shadow: 0 24px 64px rgba(44, 31, 21, 0.14);
	--thh-radius: 1.25rem;
	--thh-container: min(1180px, calc(100% - 2rem));
	--thh-serif: Georgia, Cambria, "Times New Roman", serif;
	--thh-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--thh-cream-light);
	color: var(--thh-ink);
	font-family: var(--thh-sans);
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
	top: 32px;
}

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

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

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

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

h1,
h2,
h3,
h4 {
	margin-top: 0;
	font-family: var(--thh-serif);
	font-weight: 700;
	line-height: 1.08;
	text-wrap: balance;
}

p {
	margin-top: 0;
}

.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;
}

.screen-reader-text:focus,
.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 0.75rem;
	left: 0.75rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--thh-paper);
	color: var(--thh-ink);
	box-shadow: var(--thh-shadow);
}

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

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

.site-header {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid var(--thh-line);
	background: rgba(255, 253, 247, 0.96);
	box-shadow: 0 8px 24px rgba(44, 31, 21, 0.06);
}

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

.brand-lockup {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 0.85rem;
}

.custom-logo-link {
	flex: 0 0 auto;
}

.custom-logo {
	width: 3.25rem;
	max-height: 3.25rem;
	object-fit: contain;
}

.brand-copy {
	display: grid;
	min-width: 0;
	color: var(--thh-ink);
	line-height: 1.05;
	text-decoration: none;
}

.brand-copy:hover {
	color: var(--thh-red);
}

.brand-copy__name {
	font-family: var(--thh-serif);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.brand-copy__tagline {
	margin-top: 0.28rem;
	color: var(--thh-ink-soft);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.primary-nav ul,
.footer-nav ul {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a,
.footer-nav a {
	color: inherit;
	font-size: 0.93rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.footer-nav a:hover {
	color: var(--thh-red);
}

.mobile-menu {
	display: none;
	position: relative;
}

.mobile-menu summary {
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
	display: none;
}

.mobile-menu summary::before {
	display: inline-block;
	width: 1.35rem;
	margin-right: 0.5rem;
	content: "☰";
	text-align: center;
}

.mobile-menu[open] summary::before {
	content: "×";
}

.mobile-menu__panel {
	position: absolute;
	top: calc(100% + 1rem);
	right: 0;
	width: min(19rem, calc(100vw - 2rem));
	padding: 1rem;
	border: 1px solid var(--thh-line);
	border-radius: 1rem;
	background: var(--thh-paper);
	box-shadow: var(--thh-shadow);
}

.mobile-menu ul {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.mobile-menu a {
	display: block;
	padding: 0.75rem;
	border-bottom: 1px solid var(--thh-line);
	color: var(--thh-ink);
	font-weight: 700;
	text-decoration: none;
}

.brand-hero {
	position: relative;
	min-height: clamp(38rem, 63vw, 49rem);
	isolation: isolate;
	overflow: hidden;
	background-color: #9f7a4e;
	background-image:
		linear-gradient(90deg, rgba(19, 12, 8, 0.9) 0%, rgba(28, 18, 12, 0.76) 34%, rgba(27, 17, 11, 0.25) 67%, rgba(18, 11, 7, 0.06) 100%),
		linear-gradient(0deg, rgba(17, 10, 6, 0.48) 0%, transparent 42%),
		url("assets/images/hero-regional-table-filled.webp");
	background-position: center;
	background-size: cover;
}

.brand-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 233, 197, 0.04), transparent 30%, rgba(10, 6, 3, 0.2));
	content: "";
	pointer-events: none;
}

.brand-hero__inner {
	display: flex;
	width: var(--thh-container);
	min-height: inherit;
	align-items: center;
	justify-content: flex-start;
	margin-inline: auto;
	padding-block: clamp(4rem, 9vw, 7.5rem);
}

.brand-hero__panel {
	width: min(45rem, 61%);
	text-align: left;
}

.brand-hero__slogan {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1rem;
	color: #f0cf91;
	font-size: clamp(0.72rem, 1.1vw, 0.88rem);
	font-weight: 900;
	letter-spacing: 0.22em;
	line-height: 1.4;
	text-transform: uppercase;
}

.brand-hero__slogan::before {
	width: 2.75rem;
	height: 1px;
	flex: 0 0 auto;
	background: currentcolor;
	content: "";
}

.brand-hero__title {
	max-width: 11ch;
	margin: 0;
	color: #fff8e8;
	font-size: clamp(3rem, 6vw, 5.8rem);
	letter-spacing: -0.06em;
	line-height: 0.9;
	text-shadow: 0 0.15rem 1.25rem rgba(10, 6, 3, 0.34);
	text-transform: uppercase;
}

.brand-hero__title--segmented {
	display: grid;
	max-width: none;
	gap: 0;
}

.brand-hero__title-primary,
.brand-hero__title-emphasis {
	display: block;
	width: fit-content;
	max-width: 100%;
	font-size: clamp(3.3rem, 6.35vw, 6.25rem);
	letter-spacing: -0.065em;
	line-height: 0.83;
}

.brand-hero__title-connector {
	display: block;
	width: fit-content;
	margin: 0.12em 0 -0.03em 1.35em;
	color: #f0cf91;
	font-size: clamp(1.45rem, 2.6vw, 2.55rem);
	font-style: italic;
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 0.9;
	text-transform: lowercase;
}

.brand-hero__title-emphasis {
	color: #e37a68;
	font-size: clamp(4.3rem, 8.3vw, 8rem);
	letter-spacing: -0.075em;
}

.brand-hero__subline {
	max-width: 34rem;
	margin: 1.45rem 0 0;
	color: #fff3dd;
	font-size: clamp(0.76rem, 1.2vw, 0.98rem);
	font-weight: 900;
	letter-spacing: 0.14em;
	line-height: 1.5;
	text-transform: uppercase;
}

.brand-hero__link {
	display: inline-flex;
	min-height: 3.15rem;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.8rem;
	padding: 0.75rem 1.15rem;
	border: 1px solid rgba(255, 248, 232, 0.58);
	border-radius: 999px;
	background: rgba(20, 12, 8, 0.28);
	color: #fff8e8;
	backdrop-filter: blur(0.25rem);
	font-weight: 800;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.brand-hero__link::after {
	content: "↓";
	transition: transform 160ms ease;
}

.brand-hero__link:hover::after {
	transform: translateY(0.2rem);
}

.brand-hero__link:hover {
	border-color: #fff8e8;
	background: #fff8e8;
	color: var(--thh-red-dark);
}

.home-section {
	padding-block: clamp(4rem, 9vw, 7.5rem);
}

.home-section--cream {
	background: var(--thh-cream);
}

.section-heading {
	display: grid;
	max-width: 46rem;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-kicker {
	margin-bottom: 0;
	color: var(--thh-red);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.section-heading h2,
.brand-intro h2,
.trust-panel h2,
.social-callout h2 {
	margin-bottom: 0;
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	letter-spacing: -0.035em;
}

.section-heading p {
	margin-bottom: 0;
	color: var(--thh-ink-soft);
	font-size: 1.06rem;
}

.brand-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
}

.brand-intro__copy > p:last-child {
	margin-bottom: 0;
	color: var(--thh-ink-soft);
	font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.brand-intro__principles {
	display: grid;
	gap: 1px;
	padding: 1px;
	border: 1px solid var(--thh-line);
	border-radius: var(--thh-radius);
	background: var(--thh-line);
	overflow: hidden;
	box-shadow: var(--thh-shadow);
}

.brand-principle {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: center;
	padding: 1.25rem;
	background: var(--thh-paper);
}

.brand-principle__number {
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	place-items: center;
	border-radius: 50%;
	background: var(--thh-red);
	color: #fff;
	font-family: var(--thh-serif);
	font-weight: 700;
}

.brand-principle strong {
	display: block;
	font-family: var(--thh-serif);
	font-size: 1.12rem;
}

.brand-principle span:last-child {
	color: var(--thh-ink-soft);
	font-size: 0.9rem;
}

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

.category-card {
	position: relative;
	display: flex;
	min-height: 13rem;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	border: 1px solid var(--thh-line);
	border-radius: var(--thh-radius);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent),
		var(--thh-red-dark);
	color: #fff;
	overflow: hidden;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:nth-child(3n + 2) {
	background-color: var(--thh-green);
}

.category-card:nth-child(3n + 3) {
	background-color: #875e34;
}

.category-card::before {
	position: absolute;
	top: -3rem;
	right: -2rem;
	width: 9rem;
	height: 9rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	content: "";
}

.category-card:hover {
	color: #fff;
	transform: translateY(-0.25rem);
	box-shadow: var(--thh-shadow);
}

.category-card__number {
	margin-bottom: auto;
	color: rgba(255, 255, 255, 0.68);
	font-family: var(--thh-serif);
	font-size: 0.9rem;
}

.category-card__title {
	font-family: var(--thh-serif);
	font-size: clamp(1.45rem, 3vw, 2.05rem);
	font-weight: 700;
	line-height: 1.08;
}

.category-card__hint {
	margin-top: 0.65rem;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.featured-recipe {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
	border: 1px solid var(--thh-line);
	border-radius: calc(var(--thh-radius) + 0.5rem);
	background: var(--thh-paper);
	overflow: hidden;
	box-shadow: var(--thh-shadow);
}

.featured-recipe__media {
	min-height: 27rem;
	background: linear-gradient(135deg, #d9c4a5, #8c623d);
}

.featured-recipe__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-recipe__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 5vw, 4rem);
}

.featured-recipe__body h3 {
	margin-bottom: 1rem;
	font-size: clamp(2rem, 4vw, 3.6rem);
}

.featured-recipe__body p {
	color: var(--thh-ink-soft);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	font-weight: 900;
	text-decoration: none;
}

.text-link::after {
	content: "→";
}

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

.recipe-card {
	border: 1px solid var(--thh-line);
	border-radius: var(--thh-radius);
	background: var(--thh-paper);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.recipe-card:hover {
	transform: translateY(-0.2rem);
	box-shadow: 0 18px 40px rgba(44, 31, 21, 0.12);
}

.recipe-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #dcc7a7, #9a6b44);
	overflow: hidden;
}

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

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

.recipe-card__body {
	padding: 1.3rem;
}

.recipe-card h3 {
	margin-bottom: 0.55rem;
	font-size: 1.45rem;
}

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

.recipe-card p {
	display: -webkit-box;
	margin-bottom: 0;
	color: var(--thh-ink-soft);
	font-size: 0.92rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.editor-empty-state {
	padding: 1.2rem 1.4rem;
	border: 1px dashed var(--thh-gold);
	border-radius: 0.85rem;
	background: #fff8e7;
	color: #6b4e21;
}

.trust-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.9fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
	padding: clamp(2rem, 6vw, 5rem);
	border-radius: calc(var(--thh-radius) + 0.75rem);
	background: var(--thh-ink);
	color: #fff;
}

.trust-panel p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.05rem;
}

.trust-list {
	display: grid;
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.trust-list li {
	position: relative;
	padding: 1rem 1rem 1rem 3.2rem;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.04);
	font-weight: 700;
}

.trust-list li::before {
	position: absolute;
	top: 0.85rem;
	left: 1rem;
	display: grid;
	width: 1.6rem;
	height: 1.6rem;
	place-items: center;
	border-radius: 50%;
	background: var(--thh-red);
	content: "✓";
	font-size: 0.8rem;
}

.social-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid var(--thh-line);
	border-radius: var(--thh-radius);
	background: var(--thh-paper);
	box-shadow: var(--thh-shadow);
}

.social-callout h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.social-callout p {
	margin-bottom: 0;
	color: var(--thh-ink-soft);
}

.button {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.15rem;
	border-radius: 999px;
	background: var(--thh-red);
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

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

.site-content {
	width: var(--thh-container);
	margin-inline: auto;
	padding-block: 4rem 6rem;
}

.page-heading {
	max-width: 48rem;
	margin-bottom: 2rem;
}

.page-heading h1 {
	font-size: clamp(2.6rem, 6vw, 5.5rem);
}

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

.pagination {
	margin-top: 2rem;
}

/* Static editorial and legal pages. */
.static-page__article {
	max-width: 54rem;
}

.static-page__header {
	padding-bottom: 1.5rem;
	margin-bottom: 2.25rem;
	border-bottom: 1px solid var(--thh-line);
}

.static-page__header h1 {
	margin-bottom: 0;
	font-size: clamp(2.5rem, 6vw, 4.75rem);
}

.static-page__content > :first-child {
	margin-top: 0;
}

.static-page__content h2,
.static-page__content h3 {
	margin-top: 2.5rem;
}

.static-page__content address {
	font-style: normal;
}

.static-page__content a {
	overflow-wrap: anywhere;
}

.static-page__content .wpcf7-form {
	display: grid;
	gap: 1.15rem;
	max-width: 42rem;
	margin-top: 2rem;
}

.static-page__content .wpcf7-form p {
	margin-bottom: 0;
}

.static-page__content .wpcf7-form label {
	display: grid;
	gap: 0.45rem;
	font-weight: 700;
}

.static-page__content .wpcf7-form input[type="text"],
.static-page__content .wpcf7-form input[type="email"],
.static-page__content .wpcf7-form textarea {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--thh-line);
	border-radius: 0.45rem;
	background: #fff;
	color: var(--thh-ink);
}

.static-page__content .wpcf7-form input:focus-visible,
.static-page__content .wpcf7-form textarea:focus-visible {
	border-color: var(--thh-red);
	outline: 3px solid rgba(151, 32, 38, 0.2);
	outline-offset: 1px;
}

.static-page__content .wpcf7-submit {
	justify-self: start;
	padding: 0.8rem 1.15rem;
	border: 1px solid var(--thh-red);
	border-radius: 999px;
	background: var(--thh-red);
	color: #fff;
	cursor: pointer;
	font-weight: 700;
}

.static-page__content .wpcf7-submit:hover {
	border-color: var(--thh-red-dark);
	background: var(--thh-red-dark);
}

.static-page__content .contact-privacy-note,
.static-page__content .wpcf7-not-valid-tip {
	font-size: 0.9rem;
}

.static-page__content .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	color: var(--thh-red-dark);
}

.static-page__content .wpcf7-response-output {
	margin: 0;
	padding: 0.85rem 1rem;
	border-radius: 0.45rem;
}

/* Provider adapters render into these slots only after consent and fill. */
.ad-slot {
	width: var(--thh-container);
	max-width: 54rem;
	margin: clamp(2rem, 4vw, 3.5rem) auto;
}

.ad-slot:empty {
	display: none;
}

/* Structured recipe template. */
.recipe-page {
	--thh-recipe-panel-padding: clamp(1.5rem, 2.2vw, 2rem);
	--thh-recipe-card-padding: clamp(1.25rem, 1.6vw, 1.5rem);
	padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(3rem, 5vw, 5rem);
}

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

.recipe-breadcrumbs {
	margin-bottom: 1.5rem;
	color: var(--thh-ink-soft);
	font-size: 0.84rem;
}

.recipe-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.recipe-breadcrumbs li:not(:last-child)::after {
	margin-left: 0.4rem;
	color: var(--thh-gold);
	content: "/";
}

.recipe-breadcrumbs a {
	color: inherit;
}

.recipe-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
	border: 1px solid var(--thh-line);
	border-radius: calc(var(--thh-radius) + 0.75rem);
	background: var(--thh-paper);
	overflow: hidden;
	box-shadow: var(--thh-shadow);
}

.recipe-hero__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.75rem, 2.5vw, 2.5rem);
}

.recipe-context {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.recipe-context span {
	padding: 0.32rem 0.65rem;
	border: 1px solid rgba(127, 29, 29, 0.23);
	border-radius: 999px;
	color: var(--thh-red);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.recipe-hero h1 {
	margin-bottom: 0.75rem;
	font-size: clamp(2.5rem, 4vw, 3.2rem);
	hyphens: none;
	letter-spacing: -0.045em;
	line-height: 0.95;
	overflow-wrap: normal;
	text-wrap: balance;
	word-break: normal;
}

.recipe-alternative-name {
	margin-bottom: 1rem;
	color: var(--thh-red);
	font-family: var(--thh-serif);
	font-size: 1.15rem;
	font-style: italic;
}

.recipe-summary {
	margin-bottom: 1.25rem;
	color: var(--thh-ink-soft);
	font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.recipe-byline {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	color: var(--thh-ink-soft);
	font-size: 0.78rem;
}

.recipe-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.recipe-print-button {
	min-height: 3rem;
	padding: 0.7rem 1.05rem;
	border: 1px solid var(--thh-line);
	border-radius: 999px;
	background: transparent;
	color: var(--thh-ink);
	cursor: pointer;
	font-weight: 800;
}

.recipe-print-button:hover {
	border-color: var(--thh-red);
	color: var(--thh-red);
}

.recipe-hero__media {
	min-height: 34rem;
	background: linear-gradient(135deg, #d9c4a5, #8c623d);
}

.recipe-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recipe-image-missing {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 30rem;
	place-items: center;
	padding: 2rem;
	background:
		linear-gradient(135deg, rgba(127, 29, 29, 0.82), rgba(85, 107, 69, 0.78)),
		var(--thh-red-dark);
	color: #fff;
	font-family: var(--thh-serif);
	font-size: 1.5rem;
	text-align: center;
}

.recipe-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin-top: 1.25rem;
	padding: 1px;
	border: 1px solid var(--thh-line);
	border-radius: var(--thh-radius);
	background: var(--thh-line);
	overflow: hidden;
}

.recipe-fact {
	display: grid;
	gap: 0.25rem;
	padding: 1rem 1.15rem;
	background: var(--thh-paper);
}

.recipe-fact__label {
	color: var(--thh-ink-soft);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.recipe-fact strong {
	font-family: var(--thh-serif);
	font-size: 1.08rem;
	line-height: 1.25;
}

.recipe-section {
	max-width: 54rem;
	margin: clamp(2rem, 3vw, 3rem) auto 0;
}

.recipe-section > h2,
.recipe-section > div > h2,
.recipe-instructions > h2,
.recipe-card-panel > h2,
.recipe-editorial h2 {
	margin-bottom: 1rem;
	font-size: clamp(1.75rem, 2.6vw, 2.75rem);
	letter-spacing: -0.035em;
}

.recipe-success {
	display: grid;
	max-width: none;
	grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
	gap: clamp(1.5rem, 2.5vw, 2.25rem);
	align-items: start;
	padding: var(--thh-recipe-panel-padding);
	border-radius: calc(var(--thh-radius) + 0.35rem);
	background: var(--thh-ink);
	color: #fff;
}

.recipe-success .section-kicker {
	color: #e9bd72;
}

.recipe-success ul,
.recipe-notes ul,
.recipe-simple-list {
	display: grid;
	gap: 0.8rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.recipe-success li,
.recipe-notes li,
.recipe-simple-list li {
	position: relative;
	padding-left: 1.8rem;
}

.recipe-success li::before,
.recipe-notes li::before,
.recipe-simple-list li::before {
	position: absolute;
	top: 0.05rem;
	left: 0;
	color: #e9bd72;
	content: "✓";
	font-weight: 900;
}

.recipe-notes li::before,
.recipe-simple-list li::before {
	color: var(--thh-red);
}

.recipe-core {
	display: grid;
	grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: start;
	margin-top: clamp(2rem, 3vw, 3rem);
}

.recipe-card-panel {
	padding: var(--thh-recipe-card-padding);
	border: 1px solid var(--thh-line);
	border-radius: var(--thh-radius);
	background: var(--thh-cream);
}

.recipe-yield {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--thh-line);
	color: var(--thh-ink-soft);
	font-size: 0.9rem;
}

.ingredient-group + .ingredient-group {
	margin-top: 2rem;
}

.ingredient-group h3,
.recipe-equipment h3,
.instruction-section > h3 {
	margin-bottom: 0.8rem;
	font-size: 1.25rem;
}

.ingredient-group ul,
.recipe-equipment ul {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ingredient-group li {
	display: grid;
	grid-template-columns: minmax(4.4rem, auto) 1fr;
	gap: 0.8rem;
	padding-block: 0.65rem;
	border-bottom: 1px solid var(--thh-line);
	line-height: 1.45;
}

.ingredient-amount {
	color: var(--thh-red);
	font-weight: 800;
}

.ingredient-group small {
	display: block;
	color: var(--thh-ink-soft);
}

.recipe-equipment {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--thh-line);
}

.recipe-equipment li {
	padding-block: 0.3rem;
}

.recipe-instructions > .section-kicker,
.recipe-instructions > h2 {
	margin-left: 4.2rem;
}

.instruction-section + .instruction-section {
	margin-top: 3rem;
}

.instruction-section > h3 {
	margin-left: 4.2rem;
	color: var(--thh-red);
}

.instruction-list {
	display: grid;
	gap: 2rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.instruction-step {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 1.2rem;
	scroll-margin-top: 2rem;
}

.instruction-step__number {
	display: grid;
	width: 3rem;
	height: 3rem;
	place-items: center;
	border-radius: 50%;
	background: var(--thh-red);
	color: #fff;
	font-family: var(--thh-serif);
	font-size: 1.25rem;
	font-weight: 700;
}

.instruction-step h4 {
	margin-bottom: 0.45rem;
	font-size: 1.25rem;
}

.instruction-step p {
	margin-bottom: 0.7rem;
}

.instruction-step__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.7rem;
}

.instruction-step__facts span {
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	background: var(--thh-cream);
	color: var(--thh-red-dark);
	font-size: 0.76rem;
	font-weight: 800;
}

.recipe-cue,
.recipe-safety,
.recipe-tips {
	padding: 0.8rem 1rem;
	border-left: 3px solid var(--thh-green);
	background: rgba(85, 107, 69, 0.08);
	font-size: 0.92rem;
}

.recipe-safety {
	border-left-color: var(--thh-red);
	background: rgba(127, 29, 29, 0.07);
}

.recipe-tips {
	display: grid;
	gap: 0.35rem;
	margin: 0 0 0.7rem;
	list-style: none;
}

.recipe-notes {
	padding: var(--thh-recipe-panel-padding);
	border: 1px solid var(--thh-line);
	border-radius: var(--thh-radius);
	background: var(--thh-paper);
	box-shadow: 0 16px 40px rgba(44, 31, 21, 0.08);
}

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

.recipe-detail-grid article {
	padding: var(--thh-recipe-card-padding);
	border: 1px solid var(--thh-line);
	border-radius: 1rem;
	background: var(--thh-paper);
}

.recipe-detail-grid h3 {
	margin-bottom: 0.55rem;
	font-size: 1.15rem;
}

.recipe-detail-grid p {
	margin-bottom: 0;
	color: var(--thh-ink-soft);
}

.recipe-detail-note {
	margin-top: 0.6rem;
	color: var(--thh-ink-soft);
	font-size: 0.84rem;
}

.recipe-nutrition dl,
.recipe-editorial dl {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	padding: 1px;
	border: 1px solid var(--thh-line);
	border-radius: 1rem;
	background: var(--thh-line);
	overflow: hidden;
}

.recipe-nutrition dl > div,
.recipe-editorial dl > div {
	padding: 1rem;
	background: var(--thh-paper);
}

.recipe-nutrition dt,
.recipe-editorial dt {
	color: var(--thh-ink-soft);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.recipe-nutrition dd,
.recipe-editorial dd {
	margin: 0.25rem 0 0;
	font-weight: 800;
}

.recipe-story {
	padding: var(--thh-recipe-panel-padding);
	border-radius: calc(var(--thh-radius) + 0.35rem);
	background: var(--thh-cream);
}

.recipe-story p:last-child {
	margin-bottom: 0;
	color: var(--thh-ink-soft);
	font-size: 1.08rem;
}

.recipe-faq__items {
	display: grid;
	gap: 0.75rem;
}

.recipe-faq details {
	border: 1px solid var(--thh-line);
	border-radius: 0.9rem;
	background: var(--thh-paper);
}

.recipe-faq summary {
	position: relative;
	padding: 1.1rem 3.2rem 1.1rem 1.2rem;
	cursor: pointer;
	font-family: var(--thh-serif);
	font-size: 1.08rem;
	font-weight: 700;
	list-style: none;
}

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

.recipe-faq summary::after {
	position: absolute;
	top: 50%;
	right: 1.2rem;
	color: var(--thh-red);
	content: "+";
	font-family: var(--thh-sans);
	font-size: 1.4rem;
	transform: translateY(-50%);
}

.recipe-faq details[open] summary::after {
	content: "−";
}

.recipe-faq details p {
	padding: 0 1.2rem 1.2rem;
	margin: 0;
	color: var(--thh-ink-soft);
}

.recipe-editorial {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
	gap: clamp(1.5rem, 2.5vw, 2.25rem);
	align-items: center;
	max-width: none;
	margin-top: clamp(2rem, 3vw, 3rem);
	padding: var(--thh-recipe-panel-padding);
	border-radius: calc(var(--thh-radius) + 0.35rem);
	background: var(--thh-ink);
	color: #fff;
}

.recipe-editorial .section-kicker {
	color: #e9bd72;
}

.recipe-editorial p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.74);
}

.recipe-editorial dl {
	grid-template-columns: 1fr;
	margin: 0;
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.12);
}

.recipe-editorial dl > div {
	background: rgba(255, 255, 255, 0.05);
}

.recipe-editorial dt {
	color: rgba(255, 255, 255, 0.58);
}

.recipe-unavailable {
	max-width: 50rem;
}

.recipe-unavailable h1 {
	font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.recipe-unavailable .editor-empty-state {
	margin-top: 2rem;
}

.site-footer {
	padding-block: 4.5rem 2rem;
	background: #171310;
	color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
	color: inherit;
}

.site-footer a:hover {
	color: #fff;
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 3rem;
	align-items: start;
	padding-bottom: 3rem;
}

.site-footer__brand {
	max-width: 31rem;
}

.site-footer__brand-name {
	display: block;
	margin-bottom: 0.45rem;
	color: #fff;
	font-family: var(--thh-serif);
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	font-weight: 700;
}

.site-footer__brand p {
	margin-bottom: 0;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.82rem;
}

.site-footer__meta,
.site-footer__legal {
	display: flex;
	align-items: flex-end;
	gap: 0.7rem 1.25rem;
}

.site-footer__meta {
	flex-direction: column;
}

.footer-legal-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.5rem 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-legal-nav a,
.footer-privacy-controls a,
.footer-privacy-controls button {
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

@media (max-width: 900px) {
	.primary-nav {
		display: none;
	}

	.mobile-menu {
		display: block;
	}

	.brand-hero__panel {
		width: min(38rem, 68%);
	}

	.brand-hero__title-primary {
		font-size: clamp(2.8rem, 7.2vw, 4.4rem);
	}

	.brand-hero__title-emphasis {
		font-size: clamp(3.8rem, 10vw, 6rem);
	}

	.brand-intro,
	.featured-recipe,
	.trust-panel,
	.recipe-hero,
	.recipe-success,
	.recipe-core,
	.recipe-editorial {
		grid-template-columns: 1fr;
	}

	.recipe-hero__media {
		min-height: 28rem;
		grid-row: 1;
	}

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

	.recipe-success,
	.recipe-editorial {
		gap: 1.5rem;
	}

	.recipe-core {
		gap: 3.5rem;
	}

	.featured-recipe__media {
		min-height: 22rem;
	}

	.category-grid,
	.recipe-grid,
	.content-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__top {
		grid-template-columns: 1fr;
	}

	.footer-nav ul {
		flex-wrap: wrap;
	}
}

@media (max-width: 600px) {
	body.admin-bar .site-header {
		top: 0;
	}

	.site-header__inner {
		min-height: 4.25rem;
		gap: 1rem;
	}

	.brand-copy__tagline {
		display: none;
	}

	.brand-hero {
		min-height: 0;
		padding-top: clamp(18rem, 61vw, 23rem);
		background-color: var(--thh-cream);
		background-image: url("assets/images/hero-regional-table-filled.webp");
		background-position: center top;
		background-size: auto clamp(18rem, 61vw, 23rem);
		background-repeat: no-repeat;
	}

	.brand-hero::after {
		display: none;
	}

	.brand-hero__inner {
		width: 100%;
		min-height: 0;
		margin-inline: 0;
		padding: 0;
	}

	.brand-hero__panel {
		width: 100%;
		padding: 2.5rem max(1rem, calc((100% - 34rem) / 2)) 2.5rem;
		background: var(--thh-cream);
		text-align: center;
	}

	.brand-hero__slogan {
		justify-content: center;
		margin-bottom: 0.9rem;
		color: var(--thh-red);
		font-size: 0.7rem;
	}

	.brand-hero__slogan::before {
		display: none;
	}

	.brand-hero__title,
	.brand-hero__title--segmented {
		max-width: 100%;
		color: var(--thh-ink);
		text-align: center;
		text-shadow: none;
	}

	.brand-hero__title {
		font-size: clamp(2.15rem, 10vw, 3.2rem);
	}

	.brand-hero__title-primary,
	.brand-hero__title-emphasis,
	.brand-hero__title-connector {
		width: auto;
		max-width: none;
		margin-inline: 0;
	}

	.brand-hero__title-primary {
		font-size: clamp(2.15rem, 10.6vw, 3.55rem);
	}

	.brand-hero__title-connector {
		margin-block: 0.16em 0.04em;
		color: var(--thh-red);
		font-size: clamp(1.25rem, 6vw, 1.9rem);
	}

	.brand-hero__title-emphasis {
		color: var(--thh-red);
		font-size: clamp(3.4rem, 17vw, 5.25rem);
	}

	.brand-hero__subline {
		max-width: 28rem;
		margin: 1.3rem auto 0;
		color: var(--thh-red-dark);
		font-size: 0.72rem;
	}

	.brand-hero__link {
		margin-top: 1.5rem;
		padding-inline: 1rem;
		border-color: var(--thh-red);
		background: var(--thh-red);
		color: #fff;
		backdrop-filter: none;
		font-size: 0.84rem;
	}

	.brand-hero__link:hover {
		border-color: var(--thh-red-dark);
		background: var(--thh-red-dark);
		color: #fff;
	}

	.home-section {
		padding-block: 3.75rem;
	}

	.category-grid,
	.recipe-grid,
	.content-list {
		grid-template-columns: 1fr;
	}

	.recipe-page {
		padding-top: 1.2rem;
	}

	.recipe-hero {
		border-radius: var(--thh-radius);
	}

	.recipe-hero__copy {
		padding: 1.5rem;
	}

	.recipe-hero__media {
		min-height: 20rem;
	}

	.recipe-hero h1 {
		font-size: clamp(2.15rem, 10vw, 2.85rem);
	}

	.recipe-facts,
	.recipe-detail-grid,
	.recipe-nutrition dl {
		grid-template-columns: 1fr;
	}

	.recipe-success,
	.recipe-editorial,
	.recipe-card-panel,
	.recipe-story {
		padding: 1.5rem;
	}

	.recipe-instructions > .section-kicker,
	.recipe-instructions > h2,
	.instruction-section > h3 {
		margin-left: 0;
	}

	.instruction-step {
		grid-template-columns: 2.4rem 1fr;
		gap: 0.85rem;
	}

	.instruction-step__number {
		width: 2.4rem;
		height: 2.4rem;
		font-size: 1rem;
	}

	.category-card {
		min-height: 10rem;
	}

	.social-callout,
	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__meta,
	.site-footer__legal {
		align-items: flex-start;
	}

	.footer-legal-nav ul {
		justify-content: flex-start;
	}
}

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

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

@media print {
	.site-header,
	.site-footer,
	.mobile-menu,
	.brand-hero__link,
	.social-callout,
	.recipe-breadcrumbs,
	.recipe-actions,
	.recipe-success,
	.recipe-detail-section,
	.recipe-story,
	.recipe-faq,
	.recipe-editorial,
	.ad-slot {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.site-shell,
	.site-content,
	.recipe-shell {
		width: 100%;
	}

	.recipe-page {
		padding: 0;
	}

	.recipe-hero,
	.recipe-core {
		display: block;
		border: 0;
		box-shadow: none;
	}

	.recipe-hero__copy,
	.recipe-card-panel {
		padding: 0;
	}

	.recipe-hero__media,
	.recipe-notes {
		display: none;
	}

	.recipe-facts {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.recipe-core {
		margin-top: 2rem;
	}

	.recipe-card-panel {
		border: 0;
		background: #fff;
	}

	.recipe-instructions {
		margin-top: 2rem;
	}
}
