/* =====================================================================
   GEO Index Demo Kitchen
   Editorial, food-forward theme. Warm paper + terracotta, with GEO
   Index teal/indigo accents reserved for plugin-related surfaces.
   ===================================================================== */

:root {
	/* Paper + ink */
	--cream:    #FBF6EE;
	--cream-2:  #F4ECDF;
	--paper:    #FFFFFF;
	--ink:      #211C16;
	--ink-soft: #6E6358;
	--ink-faint:#9C9183;
	--line:     rgba(33, 28, 22, 0.12);
	--line-2:   rgba(33, 28, 22, 0.06);

	/* Food accents */
	--terra:    #C5562A;
	--terra-d:  #A8431E;
	--saffron:  #E3A12C;
	--olive:    #5C6B3C;

	/* GEO brand accents */
	--teal:     #0FA98D;
	--teal-d:   #0B7E69;
	--indigo:   #5A63E6;

	/* Type */
	--display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
	--mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

	--radius:   18px;
	--radius-s: 12px;
	--shadow:   0 22px 50px -28px rgba(33, 28, 22, 0.45);
	--shadow-s: 0 10px 26px -18px rgba(33, 28, 22, 0.4);
	--wrap:     min(1160px, 92vw);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--body);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	background-image:
		radial-gradient(ellipse 70% 50% at 80% -10%, rgba(227, 161, 44, 0.10), transparent 60%),
		radial-gradient(ellipse 60% 45% at 0% 5%, rgba(197, 86, 42, 0.07), transparent 55%);
	background-attachment: fixed;
}

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

a { color: var(--terra-d); text-decoration: none; }
a:hover { color: var(--terra); }

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

.mono {
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.kicker {
	display: inline-block;
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--terra);
	margin: 0 0 0.9rem;
}

.hl { color: var(--terra); font-style: italic; }
.hl-geo {
	font-style: italic;
	background: linear-gradient(100deg, var(--teal), var(--indigo));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
	z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Header / nav ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(251, 246, 238, 0.82);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 0.9rem 0;
}
.brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--ink);
	font-family: var(--display);
	font-weight: 600;
	font-size: 1.18rem;
}
.brand:hover { color: var(--ink); }
.brand__mark {
	width: 30px; height: 30px;
	border-radius: 9px;
	flex: none;
	background:
		radial-gradient(circle at 32% 30%, var(--saffron), transparent 60%),
		conic-gradient(from 210deg, var(--terra), var(--saffron), var(--olive), var(--terra));
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}
.brand__text { line-height: 1.05; }
.brand__text small {
	display: block;
	font-family: var(--mono);
	font-size: 0.56rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-faint);
	margin-top: 2px;
}

.site-nav { margin-left: auto; }
.site-nav .menu {
	list-style: none;
	display: flex;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
}
.site-nav .menu a {
	display: inline-block;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.94rem;
	color: var(--ink-soft);
	transition: background 0.2s, color 0.2s;
}
.site-nav .menu a:hover,
.site-nav .menu .current-menu-item > a {
	color: var(--ink);
	background: var(--cream-2);
}

.nav-toggle {
	display: none;
	width: 44px; height: 40px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--paper);
	cursor: pointer;
	position: relative;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	content: "";
	position: absolute;
	left: 50%; transform: translateX(-50%);
	width: 20px; height: 2px;
	background: var(--ink);
}
.nav-toggle__bar { top: 50%; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.7rem 1.25rem;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s, color 0.2s;
	line-height: 1;
}
.btn span[aria-hidden] { transition: transform 0.2s ease; }
.btn:hover span[aria-hidden] { transform: translateX(3px); }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1.02rem; }

.btn-primary {
	background: var(--terra);
	color: #fff;
	box-shadow: var(--shadow-s);
}
.btn-primary:hover { background: var(--terra-d); color: #fff; transform: translateY(-2px); }

.btn-outline {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn-ghost {
	background: var(--cream-2);
	color: var(--ink);
	padding: 0.55rem 1rem;
	font-size: 0.9rem;
}
.btn-ghost:hover { background: var(--saffron); color: var(--ink); }

.btn-geo {
	background: linear-gradient(100deg, var(--teal), var(--indigo));
	color: #fff;
	box-shadow: 0 14px 30px -16px var(--teal);
}
.btn-geo:hover { color: #fff; transform: translateY(-2px); }

/* WP admin "delete" button (importer) is styled by core; no rule needed here. */

/* ---------- Hero (home) ---------- */
.hero { padding: 5.5rem 0 3rem; }
.hero__title {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(2.6rem, 6vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0 0 1.4rem;
	max-width: 16ch;
}
.hero__lead {
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	color: var(--ink-soft);
	max-width: 58ch;
	margin: 0 0 2.2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Home pillars ---------- */
.home-pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin: 2rem auto 4rem;
}
.pillar {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 2.2rem;
	border-radius: var(--radius);
	color: var(--ink);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--paper);
	box-shadow: var(--shadow-s);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	min-height: 230px;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--ink); }
.pillar::after {
	content: "";
	position: absolute;
	inset: auto -30% -40% auto;
	width: 60%; aspect-ratio: 1;
	border-radius: 50%;
	opacity: 0.5;
	filter: blur(8px);
}
.pillar--recipes::after { background: radial-gradient(circle, rgba(197,86,42,0.35), transparent 65%); }
.pillar--authors::after { background: radial-gradient(circle, rgba(92,107,60,0.32), transparent 65%); }
.pillar__tag { color: var(--ink-faint); }
.pillar__title {
	font-family: var(--display);
	font-size: 2.1rem;
	font-weight: 600;
	margin: 0.2rem 0 0.3rem;
}
.pillar__text { color: var(--ink-soft); margin: 0; max-width: 40ch; }
.pillar__link { margin-top: auto; font-weight: 700; color: var(--terra-d); }
.pillar:hover .pillar__link { color: var(--terra); }

/* ---------- Home: how it works ---------- */
.home-how { margin: 0 auto 5rem; }
.section-title {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	letter-spacing: -0.01em;
	margin: 0 0 1.6rem;
}
.steps {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	counter-reset: step;
}
.step {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
	padding: 1.6rem;
}
.step__num {
	font-size: 0.9rem;
	color: var(--terra);
	font-weight: 700;
}
.step h3 {
	font-family: var(--display);
	font-size: 1.25rem;
	margin: 0.5rem 0 0.4rem;
}
.step p { margin: 0; color: var(--ink-soft); }
.steps--geo .step__num { color: var(--teal-d); }
.home-how__cta { margin: 0; }

/* ---------- Page heads / archives ---------- */
.page-head {
	padding: 3.2rem 0 1.8rem;
	border-bottom: 1px solid var(--line);
	margin-bottom: 2.4rem;
}
.page-head__title {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	letter-spacing: -0.02em;
	margin: 0 0 0.6rem;
}
.page-head__lead { color: var(--ink-soft); max-width: 60ch; margin: 0; font-size: 1.08rem; }
.page-head code, .prose code {
	font-family: var(--mono);
	font-size: 0.85em;
	background: var(--cream-2);
	padding: 0.1em 0.4em;
	border-radius: 5px;
}

/* ---------- Cards ---------- */
.card-grid {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 3rem;
}
.card-grid--recipes { grid-template-columns: repeat(3, 1fr); }
.card-grid--authors { grid-template-columns: repeat(4, 1fr); }

.card {
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-s);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-media {
	position: relative;
	display: block;
	aspect-ratio: 3 / 2;
	background: var(--cream-2);
	overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-media--round {
	aspect-ratio: 1;
	padding: 1.4rem 1.4rem 0;
	background: transparent;
}
.card-media--round img {
	border-radius: 50%;
	aspect-ratio: 1;
	border: 3px solid var(--paper);
	box-shadow: var(--shadow-s);
}

.card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.card-body--center { text-align: center; align-items: center; }
.card-title {
	font-family: var(--display);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--terra); }
.card-meta { margin: 0; color: var(--ink-faint); font-size: 0.9rem; }
.card-meta .mono { color: var(--terra); margin-right: 0.3rem; }
.card-body .btn { margin-top: auto; align-self: flex-start; }
.card-body--center .btn { align-self: center; }

.chip {
	display: inline-block;
	font-family: var(--mono);
	font-size: 0.66rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.35em 0.7em;
	border-radius: 999px;
	font-weight: 600;
}
.chip-course {
	background: var(--ink);
	color: var(--cream);
}
.card-media .chip-course {
	position: absolute;
	top: 0.9rem; left: 0.9rem;
	background: rgba(33, 28, 22, 0.82);
	backdrop-filter: blur(4px);
	color: #fff;
}

.empty-state {
	text-align: center;
	padding: 4rem 1rem;
	background: var(--paper);
	border: 1px dashed var(--line);
	border-radius: var(--radius);
}
.empty-state h2 { font-family: var(--display); margin: 0 0 0.5rem; }

/* ---------- Single recipe ---------- */
.recipe-banner {
	width: 100%;
	max-height: 480px;
	overflow: hidden;
	background: var(--cream-2);
}
.recipe-banner img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; }

.recipe__head { padding: 2.4rem 0 0.5rem; }
.recipe__title {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	letter-spacing: -0.02em;
	margin: 0.7rem 0 0;
}

.recipe-info {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	margin: 1.8rem 0 2.6rem;
}
.recipe-info__cell {
	background: var(--paper);
	padding: 1.2rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.recipe-info__label { color: var(--ink-faint); }
.recipe-info__value {
	font-family: var(--display);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--ink);
}
.recipe-info__sub { font-size: 0.82rem; color: var(--ink-soft); }

.recipe__body {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 3rem;
	margin-bottom: 3rem;
	align-items: start;
}
.recipe-section__title {
	font-family: var(--display);
	font-size: 1.7rem;
	font-weight: 600;
	margin: 0 0 1rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var(--saffron);
	display: inline-block;
}
.recipe-section--ingredients { position: sticky; top: 90px; }

.recipe-rte { color: var(--ink-soft); font-size: 1.05rem; }
.recipe-rte ul, .recipe-rte ol { padding-left: 1.2rem; margin: 0; }
.recipe-rte li { margin-bottom: 0.7rem; }
.recipe-rte ul { list-style: none; padding-left: 0; }
.recipe-rte ul li {
	position: relative;
	padding-left: 1.6rem;
}
.recipe-rte ul li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.55em;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--terra);
}
.recipe-rte--steps ol { counter-reset: prep; list-style: none; padding-left: 0; }
.recipe-rte--steps ol li {
	counter-increment: prep;
	position: relative;
	padding-left: 2.6rem;
	margin-bottom: 1.1rem;
}
.recipe-rte--steps ol li::before {
	content: counter(prep);
	position: absolute;
	left: 0; top: -0.1em;
	width: 1.8rem; height: 1.8rem;
	display: grid; place-items: center;
	background: var(--ink);
	color: var(--cream);
	border-radius: 50%;
	font-family: var(--mono);
	font-size: 0.85rem;
	font-weight: 700;
}

/* recipe author block */
.recipe-author { margin: 0 auto 3rem; }
.recipe-author__card {
	display: flex;
	gap: 1.6rem;
	align-items: center;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.8rem 2rem;
	box-shadow: var(--shadow-s);
}
.recipe-author__avatar {
	width: 96px; height: 96px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
	border: 3px solid var(--cream-2);
}
.recipe-author__name { font-family: var(--display); font-size: 1.5rem; margin: 0.2rem 0 0.4rem; }
.recipe-author__bio { margin: 0 0 0.9rem; color: var(--ink-soft); }

.recipe__back, .profile__back { margin: 0 auto 4rem; }
.back-link { color: var(--ink-soft); font-weight: 600; }
.back-link:hover { color: var(--terra); }

/* ---------- Author profile ---------- */
.profile__grid {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 3rem;
	padding: 3rem 0;
	align-items: start;
}
.profile__side {
	position: sticky;
	top: 90px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.8rem;
	box-shadow: var(--shadow-s);
}
.profile__avatar {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--radius-s);
	margin-bottom: 1.4rem;
}
.profile__facts { margin: 0; }
.profile__facts dt { margin-top: 0.9rem; }
.profile__facts dt:first-child { margin-top: 0; }
.profile__facts dd {
	margin: 0.1rem 0 0;
	font-size: 1.02rem;
	color: var(--ink);
	word-break: break-word;
}
.profile__name {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(2rem, 4.5vw, 3rem);
	letter-spacing: -0.02em;
	margin: 0 0 1.4rem;
}
.profile__bio { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.profile__bio p { margin: 0 0 1rem; }
.profile__recipes { margin-top: 2.5rem; }

/* ---------- About page ---------- */
.about-hero {
	padding: 5rem 0 3.5rem;
	background:
		radial-gradient(ellipse 60% 60% at 85% 0%, rgba(90, 99, 230, 0.12), transparent 60%),
		radial-gradient(ellipse 50% 60% at 5% 20%, rgba(15, 169, 141, 0.12), transparent 60%);
}
.about-hero__title {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	letter-spacing: -0.02em;
	line-height: 1.03;
	margin: 0 0 1.3rem;
}
.about-hero__lead {
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
	color: var(--ink-soft);
	max-width: 62ch;
	margin: 0;
}
.about-block { padding: 3.2rem 0; }
.about-block__title {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(1.8rem, 3.6vw, 2.7rem);
	letter-spacing: -0.01em;
	margin: 0 0 1rem;
	max-width: 22ch;
}
.about-block__lead { color: var(--ink-soft); max-width: 64ch; font-size: 1.1rem; margin: 0 0 2rem; }

.thennow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1.6rem; }
.thennow__col {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.8rem;
}
.thennow__col--now { border-color: var(--teal); box-shadow: 0 18px 40px -28px var(--teal); }
.thennow__tag { color: var(--ink-faint); margin: 0 0 0.6rem; }
.thennow__col--now .thennow__tag { color: var(--teal-d); }
.thennow__col p:last-child { margin: 0; color: var(--ink-soft); }

.about-benefits {
	padding: 4rem 0;
	background: var(--ink);
	color: var(--cream);
}
.about-benefits .kicker { color: var(--saffron); }
.about-benefits .about-block__title { color: var(--cream); }
.about-benefits .about-block__lead { color: rgba(251, 246, 238, 0.7); }
.benefit-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.4rem;
	margin-top: 1.5rem;
}
.benefit {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 1.8rem;
}
.benefit h3 {
	font-family: var(--display);
	font-size: 1.4rem;
	margin: 0 0 0.5rem;
	color: var(--cream);
}
.benefit p { margin: 0; color: rgba(251, 246, 238, 0.72); }

.about-steps { padding: 4rem 0; }

.about-try {
	padding: 4.5rem 0;
	background:
		linear-gradient(120deg, rgba(15, 169, 141, 0.1), rgba(90, 99, 230, 0.1)),
		var(--cream-2);
	text-align: center;
}
.about-try h2 {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	margin: 0 0 0.8rem;
}
.about-try p { color: var(--ink-soft); max-width: 54ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.about-try__cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.about-extra { padding: 3rem 0; }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; padding: 2rem 0 3rem; }
.prose h2 { font-family: var(--display); }

/* ---------- Pagination ---------- */
.archive-pagination { margin: 1rem 0 4rem; }
.archive-pagination .nav-links {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	justify-content: center;
}
.archive-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px; height: 42px;
	padding: 0 0.4rem;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: var(--paper);
	color: var(--ink);
	font-weight: 600;
}
.archive-pagination .page-numbers.current { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.archive-pagination .page-numbers:hover { border-color: var(--terra); color: var(--terra); }

/* ---------- Footer ---------- */
.site-footer {
	margin-top: 4rem;
	background: var(--ink);
	color: rgba(251, 246, 238, 0.78);
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--saffron); }
.site-footer__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 1.5rem 2rem;
	padding: 3rem 0 2.2rem;
	align-items: start;
}
.site-footer__brand { display: flex; gap: 0.9rem; align-items: flex-start; }
.site-footer__brand p { margin: 0; }
.site-footer__nav { display: flex; flex-direction: column; gap: 0.5rem; justify-self: end; }
.site-footer__legal {
	grid-column: 1 / -1;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 1.4rem;
	margin: 0.6rem 0 0;
	color: rgba(251, 246, 238, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
	.recipe__body { grid-template-columns: 1fr; gap: 2.2rem; }
	.recipe-section--ingredients { position: static; }
	.profile__grid { grid-template-columns: 1fr; gap: 2rem; }
	.profile__side { position: static; }
	.card-grid--authors { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
	.nav-toggle { display: block; margin-left: auto; }
	.site-nav { position: relative; }
	.site-nav .menu {
		display: none;
		position: absolute;
		right: 0; top: calc(100% + 12px);
		flex-direction: column;
		gap: 0.2rem;
		background: var(--paper);
		border: 1px solid var(--line);
		border-radius: var(--radius-s);
		padding: 0.6rem;
		min-width: 220px;
		box-shadow: var(--shadow);
	}
	.site-nav.is-open .menu { display: flex; }

	.home-pillars { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.card-grid--recipes { grid-template-columns: repeat(2, 1fr); }
	.card-grid--authors { grid-template-columns: repeat(2, 1fr); }
	.recipe-info { grid-template-columns: repeat(2, 1fr); }
	.thennow, .benefit-grid { grid-template-columns: 1fr; }
	.recipe-author__card { flex-direction: column; text-align: center; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.site-footer__nav { justify-self: start; }
}

@media (max-width: 480px) {
	.card-grid--recipes, .card-grid--authors { grid-template-columns: 1fr; }
	.hero { padding: 3.5rem 0 2rem; }
}
