/* ==========================================================================
   TheKitchenRecipes — design system + component styles
   Tokens straight from the design handoff: colors, type, radii, spacing.
   ========================================================================== */

:root {
	--tk-bg: #FAF7F2;
	--tk-ink: #2D2D2D;
	--tk-red: #E63946;
	--tk-red-hover: #c92f3b;
	--tk-mustard: #F4A261;
	--tk-olive: #6A994E;
	--tk-border: rgba(45, 45, 45, 0.08);
	--tk-border-strong: rgba(45, 45, 45, 0.15);
	--tk-muted: #6b6b6b;
	--tk-muted-2: #8a8a8a;
	--tk-white: #ffffff;

	--tk-font-heading: 'Playfair Display', Georgia, serif;
	--tk-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	--tk-radius-sm: 8px;
	--tk-radius-md: 12px;
	--tk-radius-lg: 16px;
	--tk-radius-xl: 20px;
	--tk-radius-2xl: 24px;
	--tk-radius-pill: 999px;

	--tk-max-home: 1240px;
	--tk-max-1000: 1000px;
	--tk-max-900: 900px;
	--tk-max-760: 760px;
	--tk-max-720: 720px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--tk-bg);
	color: var(--tk-ink);
	font-family: var(--tk-font-body);
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tk-red); text-decoration: none; }
a:hover { color: var(--tk-red-hover); }
h1, h2, h3, h4 { font-family: var(--tk-font-heading); font-weight: 700; margin: 0; color: var(--tk-ink); }
button, input, select, textarea { font-family: var(--tk-font-body); }
ul, ol { margin: 0; padding: 0; list-style: none; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.tk-skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 999;
	width: auto; height: auto; clip: auto;
	background: var(--tk-ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}

/* ---- Layout helpers ---- */
.tk-container { max-width: var(--tk-max-home); margin: 0 auto; padding: 0 24px; }
.tk-width-900 { max-width: var(--tk-max-900); }
.tk-width-1000 { max-width: var(--tk-max-1000); }
.tk-width-760 { max-width: var(--tk-max-760); }
.tk-width-720 { max-width: var(--tk-max-720); }
.tk-section { margin-top: 56px; }
.tk-section-top { margin-top: 20px; }
.tk-h2 { font-size: 26px; margin-bottom: 20px; }
.tk-h2--center { text-align: center; }

body.tk-width-recipe .tk-recipe-body,
body.tk-width-mealplan .tk-form-card,
body.tk-width-faq .tk-accordion,
body.tk-width-narrow .tk-prose { max-width: 100%; }

/* ---- Buttons ---- */
.tk-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-weight: 600; font-size: 14.5px;
	padding: 14px 26px; border-radius: var(--tk-radius-pill);
	border: 1.5px solid transparent; cursor: pointer;
	text-decoration: none; transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
	line-height: 1.2;
}
.tk-btn--primary { background: var(--tk-red); color: #fff; }
.tk-btn--primary:hover { background: var(--tk-red-hover); color: #fff; }
.tk-btn--outline { background: transparent; border-color: var(--tk-ink); color: var(--tk-ink); }
.tk-btn--outline:hover { background: var(--tk-ink); color: #fff; }
.tk-btn--dark { background: var(--tk-ink); color: #fff; }
.tk-btn--dark:hover { background: #1a1a1a; color: #fff; }
.tk-btn--sm { padding: 10px 18px; font-size: 13px; border-radius: var(--tk-radius-pill); }
.tk-btn--block { width: 100%; padding: 15px; font-weight: 700; }

.tk-eyebrow {
	display: inline-block; background: #fff3ea; color: var(--tk-mustard);
	font-weight: 700; font-size: 12px; letter-spacing: .05em; text-transform: uppercase;
	padding: 6px 14px; border-radius: var(--tk-radius-pill); margin-bottom: 16px;
}
.tk-eyebrow--green { background: #eef3e6; color: var(--tk-olive); }
.tk-eyebrow--light { background: transparent; color: var(--tk-mustard); padding: 0; margin-bottom: 12px; }

/* ---- Image placeholder (shown only when no real photo/attachment exists) ---- */
.tk-img-placeholder {
	width: 100%; height: 100%; min-height: 120px;
	background: repeating-linear-gradient(135deg, #f2f0eb, #f2f0eb 10px, #ece9e2 10px, #ece9e2 20px);
	border: 1px dashed #d8d4cb; border-radius: inherit;
	display: flex; align-items: center; justify-content: center; text-align: center; padding: 12px;
}
.tk-img-placeholder span { font-family: ui-monospace, Menlo, monospace; font-size: 11.5px; color: #a39c8c; }
.tk-img-placeholder--circle { border-radius: 999px; }

/* ==========================================================================
   Header
   ========================================================================== */
.tk-header {
	font-family: var(--tk-font-body);
	background: var(--tk-bg);
	border-bottom: 1px solid var(--tk-border);
	position: sticky; top: 0; z-index: 50;
}
.tk-header__top {
	max-width: var(--tk-max-home); margin: 0 auto; padding: 16px 24px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.tk-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.tk-brand__logo {
	width: 44px; height: 44px; border-radius: 12px; flex: none;
	background: linear-gradient(135deg, var(--tk-red), var(--tk-mustard));
	display: flex; align-items: center; justify-content: center;
}
.tk-brand__logo span { font-family: var(--tk-font-heading); font-weight: 800; color: var(--tk-bg); font-size: 20px; }
.tk-brand__logo--custom { background: none; }
.tk-brand__logo--custom img { border-radius: 12px; width: 44px; height: 44px; object-fit: cover; }
.tk-brand__name { font-family: var(--tk-font-heading); font-weight: 700; font-size: 20px; color: var(--tk-ink); line-height: 1.1; }
.tk-brand__tagline { font-size: 11.5px; color: var(--tk-muted-2); letter-spacing: .03em; text-transform: uppercase; }

.tk-search {
	flex: 1; max-width: 360px; display: flex; align-items: center; gap: 10px;
	background: #fff; border: 1px solid var(--tk-border-strong); border-radius: var(--tk-radius-pill);
	padding: 9px 16px; color: var(--tk-muted-2);
}
.tk-search input { border: none; outline: none; background: transparent; font-size: 13.5px; width: 100%; color: var(--tk-ink); }
.tk-search--mobile { display: none; max-width: none; margin: 0 24px 12px; }
.tk-mobile-search-toggle, .tk-nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--tk-ink); padding: 8px; }
.tk-nav-toggle { flex-direction: column; gap: 4px; width: 36px; height: 36px; align-items: center; justify-content: center; }
.tk-nav-toggle span { display: block; width: 20px; height: 2px; background: var(--tk-ink); border-radius: 2px; }

.tk-nav { border-top: 1px solid rgba(45, 45, 45, 0.06); }
.tk-nav__links { max-width: var(--tk-max-home); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 32px; overflow-x: auto; }
.tk-nav__links li { position: relative; }
.tk-nav__links a {
	display: block; padding: 14px 2px; font-size: 13.5px; font-weight: 600;
	color: var(--tk-ink); white-space: nowrap; border-bottom: 2px solid transparent;
}
.tk-nav__links li.current-menu-item > a,
.tk-nav__links li.current-menu-parent > a,
.tk-nav__links li.current-menu-ancestor > a { color: var(--tk-red); border-bottom-color: var(--tk-red); }

.tk-nav__links .sub-menu {
	display: none; position: absolute; top: 100%; left: 0; z-index: 60;
	background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-md);
	padding: 8px; min-width: 200px; box-shadow: 0 12px 28px rgba(45, 45, 45, .12);
}
.tk-nav__links li:hover > .sub-menu,
.tk-nav__links li:focus-within > .sub-menu { display: block; }
.tk-nav__links .sub-menu a { padding: 8px 12px; border-radius: 8px; border-bottom: none; }
.tk-nav__links .sub-menu a:hover { background: var(--tk-bg); }

/* ==========================================================================
   Ad slots
   ========================================================================== */
.tk-ad-slot {
	position: relative; width: 100%; max-width: 100%; margin: 0 auto;
	border-radius: var(--tk-radius-sm); box-sizing: border-box; overflow: hidden;
	display: flex; align-items: center; justify-content: center; text-align: center;
}
.tk-ad-slot__label { position: absolute; top: 6px; left: 10px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #b3b3b3; }
.tk-ad-slot--empty {
	min-height: 90px; background: repeating-linear-gradient(135deg, #f2f0eb, #f2f0eb 10px, #ece9e2 10px, #ece9e2 20px);
	border: 1px dashed #d8d4cb; flex-direction: column; gap: 4px; padding: 16px;
}
.tk-ad-slot__hint { font-size: 11px; color: #a39c8c; }
.tk-ad-slot--leaderboard { max-width: 728px; }
.tk-ad-slot--in-content { min-height: 100px; }
.tk-ad-slot--skyscraper { max-width: 160px; }
.tk-ad-slot--sticky-mobile { max-width: 320px; }

.tk-sticky-ad-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; display: none; justify-content: center; align-items: center; gap: 10px; padding: 8px; background: var(--tk-bg); border-top: 1px solid var(--tk-border); }
.tk-sticky-ad-bar.is-visible { display: flex; }
.tk-sticky-ad-bar__close { background: none; border: none; font-size: 20px; line-height: 1; cursor: pointer; color: var(--tk-muted); padding: 4px 8px; }

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */
.tk-hero { margin-top: 56px; padding-top: 0; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.tk-hero__heading { font-weight: 800; font-size: 52px; line-height: 1.08; margin: 0 0 20px; }
.tk-hero__sub { font-size: 16.5px; line-height: 1.7; color: var(--tk-muted); max-width: 480px; margin: 0 0 28px; }
.tk-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.tk-hero__media { height: 380px; border-radius: var(--tk-radius-2xl); overflow: hidden; }
.tk-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Category cards ---- */
.tk-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tk-cat {
	position: relative; border-radius: 18px; overflow: hidden; text-decoration: none; color: #fff;
	display: flex; align-items: flex-end; height: 260px; transition: transform .25s ease;
}
.tk-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tk-cat .tk-img-placeholder { position: absolute; inset: 0; border-radius: 0; border: none; }
.tk-cat:hover { transform: translateY(-5px); }
.tk-cat__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.05) 55%); pointer-events: none; }
.tk-cat__content { position: relative; padding: 22px; width: 100%; }
.tk-cat__name { font-family: var(--tk-font-heading); font-weight: 700; font-size: 22px; margin-bottom: 6px; }
.tk-cat__desc { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 14px; max-width: 220px; }
.tk-cat__btn { display: inline-block; background: rgba(255,255,255,.92); color: var(--tk-ink); font-weight: 600; font-size: 12.5px; padding: 8px 16px; border-radius: var(--tk-radius-pill); transition: all .2s ease; }
.tk-cat:hover .tk-cat__btn { background: var(--tk-red); color: #fff; }

/* ==========================================================================
   Recipe cards + grids
   ========================================================================== */
.tk-card-grid { display: grid; gap: 20px; }
.tk-card-grid--2 { grid-template-columns: repeat(2, 1fr); margin-bottom: 48px; }
.tk-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tk-card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tk-card {
	text-decoration: none; color: inherit; display: block; background: #fff;
	border-radius: var(--tk-radius-lg); overflow: hidden;
	box-shadow: 0 1px 3px rgba(45,45,45,.06); border: 1px solid var(--tk-border);
	transition: transform .2s ease, box-shadow .2s ease;
}
.tk-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(45,45,45,.12); }
.tk-card__media { position: relative; height: 170px; }
.tk-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tk-card__badge { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,.92); color: var(--tk-ink); font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: var(--tk-radius-pill); z-index: 2; }
.tk-card__body { padding: 16px 18px 18px; }
.tk-card__category { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--tk-red); margin-bottom: 6px; }
.tk-card__title { font-family: var(--tk-font-heading); font-weight: 700; font-size: 17px; color: var(--tk-ink); line-height: 1.3; margin-bottom: 8px; }
.tk-card__meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--tk-muted-2); }

.tk-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.tk-view-all { font-size: 13.5px; font-weight: 600; }

/* ---- Content grid (main + sidebar) ---- */
.tk-content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.tk-sidebar__sticky { position: sticky; top: 150px; display: flex; flex-direction: column; gap: 24px; }
.tk-widget { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-lg); padding: 20px; }
.tk-widget__title { font-family: var(--tk-font-heading); font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.tk-picks__item { display: flex; gap: 10px; align-items: center; text-decoration: none; color: var(--tk-ink); margin-bottom: 12px; }
.tk-picks__item:last-child { margin-bottom: 0; }
.tk-picks__thumb { width: 52px; height: 52px; border-radius: 10px; flex: none; object-fit: cover; }
.tk-picks__thumb--placeholder { background: repeating-linear-gradient(135deg, #f0e2cf, #f0e2cf 6px, #e6d3ba 6px, #e6d3ba 12px); }
.tk-picks__title { font-size: 13px; font-weight: 600; line-height: 1.35; }

/* ---- CTA banner ---- */
.tk-cta-banner {
	background: linear-gradient(120deg, var(--tk-ink), #3a2f2a); border-radius: var(--tk-radius-2xl); padding: 48px;
	display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.tk-cta-banner__content { max-width: 520px; }
.tk-cta-banner__content h2 { color: #fff; font-size: 28px; margin: 0 0 12px; }
.tk-cta-banner__content p { color: rgba(255,255,255,.65); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.tk-breadcrumbs-row { margin-top: 20px; }
.tk-breadcrumbs { font-size: 13px; color: var(--tk-muted-2); }
.tk-breadcrumbs a { color: var(--tk-muted-2); }
.tk-breadcrumbs a:hover { color: var(--tk-red); }
.tk-breadcrumbs__sep { margin: 0 6px; }
.tk-breadcrumbs__current { color: var(--tk-ink); }

/* ==========================================================================
   Category archive
   ========================================================================== */
.tk-category-hero { margin-top: 16px; padding-bottom: 8px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.tk-category-hero__media { width: 120px; height: 120px; border-radius: 20px; flex: none; overflow: hidden; }
.tk-category-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.tk-category-hero__title { font-weight: 800; font-size: 34px; margin: 0 0 8px; }
.tk-category-hero__desc { font-size: 14.5px; color: var(--tk-muted); max-width: 560px; line-height: 1.6; margin: 0; }

.tk-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.tk-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.tk-filter { font-size: 12.5px; font-weight: 600; padding: 8px 16px; border-radius: var(--tk-radius-pill); background: #fff; color: var(--tk-ink); border: 1px solid var(--tk-border-strong); }
.tk-filter.is-active { background: var(--tk-ink); color: #fff; border-color: var(--tk-ink); }
.tk-sort select { border: 1px solid var(--tk-border-strong); border-radius: var(--tk-radius-sm); padding: 8px 12px; font-size: 13px; background: #fff; }
.tk-load-more { display: flex; justify-content: center; margin-top: 36px; }

/* ==========================================================================
   Single recipe
   ========================================================================== */
.tk-recipe-title { font-weight: 800; font-size: 38px; line-height: 1.15; margin: 16px 0 14px; }
.tk-recipe-byline { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--tk-muted); margin-bottom: 20px; }
.tk-recipe-byline__author { display: flex; align-items: center; gap: 8px; }
.tk-recipe-byline img.avatar { border-radius: 999px; }
.tk-rating { color: var(--tk-mustard); }
.tk-recipe-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.tk-recipe-actions .tk-share { margin-left: auto; }
.tk-share { display: flex; gap: 8px; }
.tk-share__icon { width: 36px; height: 36px; border-radius: 999px; background: #fff; border: 1px solid var(--tk-border-strong); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--tk-ink); }
.tk-recipe-hero { height: 420px; border-radius: var(--tk-radius-xl); overflow: hidden; margin-bottom: 8px; }
.tk-recipe-hero img { width: 100%; height: 100%; object-fit: cover; }

.tk-stats-bar { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-lg); padding: 24px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; text-align: center; margin-bottom: 36px; }
.tk-stats-bar__label { font-size: 11px; color: var(--tk-muted-2); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.tk-stats-bar__value { font-weight: 700; font-size: 15px; }

.tk-recipe-intro { font-size: 15px; line-height: 1.75; color: #4a4a4a; margin: 0 0 36px; }
.tk-serves { font-size: 13px; color: var(--tk-muted-2); margin-bottom: 16px; }

.tk-ingredients { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-lg); padding: 24px; margin-bottom: 36px; }
.tk-ingredients__item { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 14.5px; border-bottom: 1px solid rgba(45,45,45,.05); cursor: pointer; }
.tk-ingredients__item:last-child { border-bottom: none; }
.tk-ingredients__item input { width: 17px; height: 17px; accent-color: var(--tk-red); }
.tk-ingredients__item:has(input:checked) { color: var(--tk-muted-2); text-decoration: line-through; }

.tk-instructions { margin-bottom: 36px; counter-reset: none; }
.tk-instructions__item { display: flex; gap: 16px; margin-bottom: 24px; }
.tk-instructions__num { width: 32px; height: 32px; border-radius: 999px; background: var(--tk-red); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex: none; }
.tk-instructions__item p { font-size: 14.5px; line-height: 1.7; color: #4a4a4a; margin: 4px 0 0; }

.tk-two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.tk-info-card { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-lg); padding: 20px; }
.tk-info-card__title { font-family: var(--tk-font-heading); font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.tk-info-card p { font-size: 13.5px; line-height: 1.7; color: var(--tk-muted); margin: 0; }

.tk-nutrition-grid { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-lg); padding: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.tk-nutrition-grid__item { text-align: center; }
.tk-nutrition-grid__value { font-weight: 700; font-size: 18px; }
.tk-nutrition-grid__label { font-size: 11.5px; color: var(--tk-muted-2); text-transform: uppercase; letter-spacing: .03em; }

.tk-accordion { margin-bottom: 48px; display: flex; flex-direction: column; gap: 10px; }
.tk-accordion__item { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-md); padding: 16px 20px; }
.tk-accordion__item summary { cursor: pointer; font-weight: 600; font-size: 14.5px; color: var(--tk-ink); list-style: none; }
.tk-accordion__item summary::-webkit-details-marker { display: none; }
.tk-accordion__item summary::after { content: '+'; float: right; font-weight: 400; color: var(--tk-muted-2); }
.tk-accordion__item[open] summary::after { content: '−'; }
.tk-accordion__item p { font-size: 13.5px; line-height: 1.7; color: var(--tk-muted); margin: 10px 0 0; }

/* ---- Comments ---- */
.tk-comments { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-lg); padding: 28px; margin-bottom: 56px; }
.tk-comments__title { font-family: var(--tk-font-heading); font-weight: 700; font-size: 20px; margin-bottom: 16px; }
.tk-comment-textarea, .comment-form-comment textarea { width: 100%; box-sizing: border-box; border: 1px solid var(--tk-border-strong); border-radius: 10px; padding: 12px; font-size: 13.5px; min-height: 70px; margin-bottom: 12px; resize: vertical; }
.comment-form-author input, .comment-form-email input { width: 100%; box-sizing: border-box; border: 1px solid var(--tk-border-strong); border-radius: 10px; padding: 10px 12px; font-size: 13.5px; margin-bottom: 12px; }
.comment-form-author, .comment-form-email { display: inline-block; width: calc(50% - 6px); }
.comment-form-author { margin-right: 12px; }
#tk-content .tk-comments form p { margin: 0; }
.tk-comments__list { margin-top: 20px; }
.tk-comments__item { display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(45,45,45,.06); }
.tk-comments__item img.avatar { border-radius: 999px; flex: none; }
.tk-comments__author { font-weight: 600; font-size: 13.5px; margin-bottom: 2px; }
.tk-comments__text { font-size: 13.5px; color: var(--tk-muted); line-height: 1.6; }
.tk-comments__closed { color: var(--tk-muted-2); font-size: 13.5px; }

/* ==========================================================================
   Forms (Meal Plan / Contact / Newsletter)
   ========================================================================== */
.tk-page-head { margin-bottom: 32px; }
.tk-page-head--center { text-align: center; }
.tk-page-head p { font-size: 14.5px; color: var(--tk-muted); max-width: 480px; margin: 0 auto; line-height: 1.6; }
.tk-page-head h1 { font-weight: 800; font-size: 34px; margin-bottom: 12px; }

.tk-form-card { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-xl); padding: 32px; }
.tk-form-card--success { text-align: center; padding: 48px 32px; }
.tk-success-icon { width: 64px; height: 64px; border-radius: 999px; background: #eef3e6; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--tk-olive); }
.tk-success-icon--sm { width: 56px; height: 56px; font-size: 24px; margin-bottom: 16px; }
.tk-success-title { font-family: var(--tk-font-heading); font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.tk-form-card p { color: var(--tk-muted); font-size: 14px; margin: 0; }

.tk-form-notice { padding: 14px 18px; border-radius: var(--tk-radius-md); font-size: 13.5px; margin-bottom: 16px; }
.tk-form-notice--error { background: #fdecee; color: #b3212f; border: 1px solid rgba(230,57,70,.25); }

.tk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.tk-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.tk-field--full { grid-column: 1 / -1; margin-bottom: 18px; }
.tk-field input, .tk-field select, .tk-field textarea {
	border: 1px solid var(--tk-border-strong); border-radius: 10px; padding: 11px 13px;
	font-size: 13.5px; color: var(--tk-ink); outline: none; box-sizing: border-box; width: 100%;
}
.tk-field textarea { min-height: 80px; resize: vertical; }
.tk-field input:focus, .tk-field select:focus, .tk-field textarea:focus { border-color: var(--tk-red); }
.tk-checkbox-field { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--tk-muted-2); margin-bottom: 20px; font-weight: 400; }
.tk-checkbox-field input { width: 16px; height: 16px; accent-color: var(--tk-red); }

.tk-honeypot-wrap { position: absolute !important; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.tk-contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; }
.tk-contact-side { display: flex; flex-direction: column; gap: 20px; }
.tk-map { height: 200px; border-radius: var(--tk-radius-lg); overflow: hidden; background: #e5e0d6; }
.tk-map iframe { width: 100%; height: 100%; border: 0; }
.tk-contact-card { background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-lg); padding: 24px; }
.tk-contact-card__title { font-family: var(--tk-font-heading); font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.tk-contact-card__info { font-size: 13.5px; line-height: 2; color: var(--tk-muted); }
.tk-social { display: flex; gap: 10px; margin-top: 16px; }
.tk-social__icon { width: 34px; height: 34px; border-radius: 999px; background: #f2f0eb; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--tk-ink); }
.tk-social--light .tk-social__icon { background: rgba(250,247,242,.1); color: var(--tk-bg); }

/* ==========================================================================
   About page
   ========================================================================== */
.tk-about-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.tk-about-hero__copy p { font-size: 14.5px; line-height: 1.75; color: var(--tk-muted); margin: 0 0 14px; }
.tk-about-hero__copy p:last-child { margin-bottom: 0; }
.tk-about-hero__media { height: 280px; border-radius: var(--tk-radius-xl); overflow: hidden; }
.tk-about-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.tk-about-hero--author { grid-template-columns: auto 1fr; align-items: center; margin-bottom: 0; gap: 24px; }

.tk-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.tk-team-member { text-align: center; }
.tk-team-member__photo { width: 100px; height: 100px; margin: 0 auto 12px; border-radius: 999px; overflow: hidden; }
.tk-team-member__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.tk-team-member__photo--author { width: 100px; height: 100px; }
.tk-team-member__name { font-weight: 700; font-size: 14.5px; margin-bottom: 2px; }
.tk-team-member__role { font-size: 12.5px; color: var(--tk-muted-2); }

/* ---- Generic prose (Pages, blog posts) ---- */
.tk-prose { font-size: 15px; line-height: 1.8; color: #4a4a4a; }
.tk-prose h2 { font-size: 24px; margin: 32px 0 14px; }
.tk-prose h3 { font-size: 19px; margin: 24px 0 10px; }
.tk-prose p { margin: 0 0 18px; }
.tk-prose ul, .tk-prose ol { margin: 0 0 18px 20px; list-style: revert; }
.tk-prose a { text-decoration: underline; }
.tk-page-thumb { border-radius: var(--tk-radius-xl); overflow: hidden; margin-bottom: 24px; }

/* ---- 404 ---- */
.tk-404 { text-align: center; }
.tk-404__code { font-family: var(--tk-font-heading); font-size: 72px; font-weight: 800; color: var(--tk-mustard); }
.tk-404 p { color: var(--tk-muted); margin: 12px 0 28px; }
.tk-404__links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.tk-search--inline { max-width: 420px; margin: 0 auto; background: #fff; }
.tk-search--inline button { border: none; background: var(--tk-red); color: #fff; padding: 8px 16px; border-radius: var(--tk-radius-pill); font-size: 13px; margin: -9px -16px -9px 0; cursor: pointer; }

/* ==========================================================================
   Footer
   ========================================================================== */
.tk-footer { font-family: var(--tk-font-body); background: var(--tk-ink); color: var(--tk-bg); margin-top: 64px; }
.tk-footer__grid { max-width: var(--tk-max-home); margin: 0 auto; padding: 56px 24px 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.tk-brand--footer { margin-bottom: 14px; }
.tk-brand--footer .tk-brand__logo { width: 36px; height: 36px; border-radius: 10px; }
.tk-brand--footer .tk-brand__logo span { font-size: 16px; }
.tk-brand__name { font-family: var(--tk-font-heading); font-weight: 700; font-size: 18px; }
.tk-footer__brand p { font-size: 13.5px; line-height: 1.7; color: rgba(250,247,242,.65); max-width: 320px; margin: 0 0 18px; }
.tk-footer__heading { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--tk-mustard); margin-bottom: 16px; }
.tk-footer__heading--small { margin-bottom: 10px; }
.tk-footer__links { display: flex; flex-direction: column; gap: 11px; }
.tk-footer__links a { color: rgba(250,247,242,.75); font-size: 13.5px; }
.tk-footer__links a:hover { color: #fff; }
.tk-footer__address { font-size: 13.5px; line-height: 1.9; color: rgba(250,247,242,.75); }
.tk-footer__address a { color: rgba(250,247,242,.75); }
.tk-footer__newsletter { margin-top: 18px; }
.tk-newsletter-form { display: flex; gap: 8px; }
.tk-newsletter-form input[type="email"] { flex: 1; min-width: 0; border: 1px solid rgba(250,247,242,.2); background: rgba(250,247,242,.06); border-radius: 8px; padding: 9px 12px; color: var(--tk-bg); font-size: 13px; outline: none; }
.tk-newsletter-form button { background: var(--tk-red); border: none; color: #fff; padding: 9px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.tk-newsletter-success { color: var(--tk-mustard); font-size: 12.5px; margin-top: 8px; }
.tk-footer__ad { max-width: var(--tk-max-home); margin: 0 auto; padding: 0 24px 32px; display: flex; justify-content: center; }
.tk-footer__bottom { border-top: 1px solid rgba(250,247,242,.1); }
.tk-footer__bottom > span, .tk-footer__bottom { display: flex; }
.tk-footer__bottom { max-width: var(--tk-max-home); margin: 0 auto; padding: 20px 24px; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: rgba(250,247,242,.5); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
	.tk-recipe-body .tk-two-up,
	.tk-recipe-body { grid-template-columns: 1fr; }
	.tk-content-grid,
	.tk-card-grid--3 { grid-template-columns: 1fr 1fr; }
	.tk-card-grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.tk-search { display: none; }
	.tk-mobile-search-toggle, .tk-nav-toggle { display: flex; }
	.tk-search--mobile.is-open { display: flex; }

	.tk-nav { display: none; }
	.tk-nav.is-open { display: block; }
	.tk-nav__links { flex-direction: column; align-items: stretch; gap: 0; overflow: visible; }
	.tk-nav__links a { padding: 12px 0; border-bottom: 1px solid var(--tk-border); }
	.tk-nav__links .sub-menu { display: block; position: static; border: none; box-shadow: none; padding: 0 0 0 16px; }

	.tk-hero { grid-template-columns: 1fr; }
	.tk-hero__media { height: 260px; order: -1; }
	.tk-hero__heading { font-size: 38px; }

	.tk-cats { grid-template-columns: 1fr 1fr; }
	.tk-content-grid { grid-template-columns: 1fr; }
	.tk-sidebar { display: none; }
	.tk-card-grid--2, .tk-card-grid--3, .tk-card-grid--4 { grid-template-columns: 1fr 1fr; }

	.tk-footer__grid { grid-template-columns: 1fr 1fr; }
	.tk-about-hero, .tk-contact-grid, .tk-form-grid { grid-template-columns: 1fr; }
	.tk-team-grid { grid-template-columns: repeat(2, 1fr); }

	.tk-sticky-ad-bar.is-visible { display: flex; }
}

@media (max-width: 640px) {
	.tk-container, .tk-hero, section { padding-left: 16px; padding-right: 16px; }
	.tk-cats { grid-template-columns: 1fr; }
	.tk-card-grid--2, .tk-card-grid--3, .tk-card-grid--4 { grid-template-columns: 1fr; }
	.tk-stats-bar { grid-template-columns: repeat(3, 1fr); }
	.tk-nutrition-grid { grid-template-columns: repeat(2, 1fr); }
	.tk-footer__grid { grid-template-columns: 1fr; }
	.tk-recipe-title, .tk-page-head h1 { font-size: 28px; }
	.tk-hero__heading { font-size: 30px; }
	.tk-recipe-actions .tk-share { margin-left: 0; }
}

/* ---- Print (Print Recipe button → window.print()) ---- */
@media print {
	.tk-header, .tk-footer, .tk-sticky-ad-bar, .tk-ad-slot, .tk-recipe-actions,
	.tk-comments, .tk-sidebar, .tk-breadcrumbs-row { display: none !important; }
	body { background: #fff; }
	.tk-content-grid { grid-template-columns: 1fr; }
}
