:root {
  --ink: #33211b;
  --muted: #775f55;
  --line: #ead8c6;
  --paper: #fffaf3;
  --soft: #fff1db;
  --cream: #f9eddb;
  --brand: #b84f2f;
  --brand-dark: #83351f;
  --leaf: #537d68;
  --gold: #e4a64a;
  --shadow: 0 14px 34px rgba(66, 41, 28, .12);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
main { min-height: 60vh; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(18px, calc((100vw - var(--wrap)) / 2));
  background: rgba(255, 250, 243, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand img { width: 180px; height: 45px; object-fit: contain; }
.site-nav ul,
.site-footer ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
}
.site-nav a:hover { background: var(--soft); }
.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(131, 53, 31, .48);
  background-color: var(--soft);
  background-image: linear-gradient(180deg, #fff8ed, #f6d6ba);
  color: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(66, 41, 28, .13), inset 0 1px 0 rgba(255, 255, 255, .7);
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 900;
}
.menu-toggle::before {
  content: "";
  width: 17px;
  height: 12px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 5px / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 10px / 100% 2px no-repeat;
}
.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle:active,
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(131, 53, 31, .48);
  background-color: var(--soft);
  background-image: linear-gradient(180deg, #fff8ed, #f6d6ba);
  color: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(66, 41, 28, .13), inset 0 1px 0 rgba(255, 255, 255, .7);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: stretch;
  width: min(var(--wrap), calc(100vw - 36px));
  margin: 28px auto 18px;
  min-height: 520px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff7e9, #fde2bf 52%, #eab27a);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 8px;
}
.hero-carousel {
  position: relative;
  display: block;
  padding: clamp(16px, 3vw, 28px);
  min-height: 0;
}
.hero-carousel__viewport {
  overflow: hidden;
  border-radius: 8px;
}
.hero-carousel__track {
  display: flex;
  align-items: stretch;
  transition: transform .45s ease;
  will-change: transform;
}
.hero-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  min-height: 470px;
  border-left: 0;
  outline: 0;
  box-shadow: none;
}
.hero-carousel__slide:hover,
.hero-carousel__slide:focus,
.hero-carousel__slide:focus-within,
.hero-carousel__slide:active {
  border-left: 0;
  outline: 0;
  box-shadow: none;
}
.hero-carousel__slide::before,
.hero-carousel__slide::after {
  content: none;
}
.hero-carousel__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: clamp(10px, 2vw, 22px) 0;
}
.hero-carousel__category {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(184, 79, 47, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .55);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-carousel__heading {
  max-width: 720px;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
}
.hero-carousel__excerpt {
  max-width: 580px;
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
}
.hero-carousel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
}
.hero-carousel__meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(131, 53, 31, .16);
  border-radius: 999px;
  background: rgba(255, 250, 243, .68);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}
.hero-carousel__visual {
  position: relative;
  min-width: 0;
  min-height: 430px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(131, 53, 31, .16);
  border-left: 0;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 18px 32px -24px rgba(66, 41, 28, .26);
}
.hero-carousel__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(51, 33, 27, 0), rgba(51, 33, 27, .32));
  pointer-events: none;
}
.hero-carousel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.42);
  transform-origin: center top;
}
.hero-carousel__visual figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 1px;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 8px;
  background: rgba(255, 250, 243, .92);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(66, 41, 28, .16);
}
.hero-carousel__visual figcaption span {
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-carousel__visual figcaption strong {
  overflow: hidden;
  font-size: .98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-carousel__content .button {
  width: max-content;
  margin-top: 2px;
}
.hero-carousel__note {
  max-width: 820px;
  margin-top: 0;
  color: var(--muted);
  font-size: .98rem !important;
}
.hero-carousel__footer {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(131, 53, 31, .14);
}
.hero-carousel__search {
  margin: 0;
}
.hero-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}
.hero-carousel__arrows {
  display: flex;
  gap: 8px;
}
.hero-carousel__arrow {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(131, 53, 31, .28);
  background: rgba(255, 248, 237, .92);
  color: var(--brand-dark);
  font-size: 0;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(66, 41, 28, .14);
}
.hero-carousel__arrow span {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.hero-carousel__arrow--prev span {
  margin-left: 4px;
  transform: rotate(-45deg);
}
.hero-carousel__arrow--next span {
  margin-right: 4px;
  transform: rotate(135deg);
}
.hero-carousel__arrow:hover,
.hero-carousel__arrow:focus-visible,
.hero-carousel__arrow:active {
  background: var(--brand);
  color: #fff;
  outline: none;
}
.hero-carousel__arrow:disabled {
  opacity: .42;
  cursor: default;
}
.hero-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
  gap: 8px;
}
.hero-carousel__dot {
  width: 9px;
  min-width: 9px;
  height: 9px;
  min-height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(131, 53, 31, .3);
}
.hero-carousel__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--brand);
}
.hero__media { min-height: 360px; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 64px);
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
}
h1 { font-size: clamp(2.25rem, 6vw, 5.3rem); max-width: 820px; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.25rem; }
.hero p { max-width: 600px; font-size: 1.12rem; }
.hero-search,
.inline-search {
  display: flex;
  gap: 8px;
  width: min(100%, 560px);
}
input,
button,
select,
textarea {
  font: inherit;
}
.hero-search input,
.inline-search input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 13px 14px;
  border-radius: 8px;
}
button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
  cursor: pointer;
}
button:hover,
.button:hover { background: var(--brand-dark); }

.section {
  width: min(var(--wrap), calc(100vw - 36px));
  margin: 0 auto;
  padding: 44px 0;
}
.section--narrow { width: min(850px, calc(100vw - 36px)); }
.section--tint {
  width: 100%;
  padding-inline: max(18px, calc((100vw - var(--wrap)) / 2));
  background: #f5ead9;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.text-link {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.recipe-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.recipe-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(66, 41, 28, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.recipe-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.recipe-card__image {
  display: block;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  background: var(--soft);
}
.recipe-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-card__body { padding: 16px; }
.recipe-card h3 { margin: 4px 0 8px; }
.recipe-card p {
  margin: 0 0 12px;
  color: var(--muted);
}
.card-kicker {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-meta,
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card-meta span,
.recipe-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.section-subtitle {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}
.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.category-pill {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}
.category-pill img {
  width: 72px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.content-with-sidebar,
.recipe-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}
.recipe-layout {
  width: min(var(--wrap), calc(100vw - 36px));
  margin: 0 auto;
}
.sidebar {
  display: grid;
  gap: 18px;
}
.widget {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 18px;
}
.widget h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}
.mini-link {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}
.mini-link:first-of-type { border-top: 0; }
.mini-link img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 800;
}

.stories-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.story-grid--wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.story-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.7));
}
.story-card h3,
.story-card span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  color: #fff;
}
.story-card span {
  top: 14px;
  width: max-content;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(0,0,0,.45);
  font-size: 12px;
  font-weight: 900;
}
.story-card h3 {
  bottom: 16px;
  font-size: 1.35rem;
}

.listing-hero,
.page-shell {
  width: min(920px, calc(100vw - 36px));
  margin: 34px auto 0;
  padding: 34px 0 16px;
}
.listing-hero h1,
.page-shell h1 { margin-bottom: 12px; }
.listing-hero p,
.page-shell > p { color: var(--muted); font-size: 1.08rem; }
.listing-hero--image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  width: min(var(--wrap), calc(100vw - 36px));
}
.listing-hero--image img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.pagination a {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}
.pagination a.is-active { background: var(--brand); color: #fff; }

.recipe-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 32px;
  align-items: center;
  width: min(var(--wrap), calc(100vw - 36px));
  margin: 28px auto 34px;
}
.recipe-hero__copy .lede {
  color: var(--muted);
  font-size: 1.15rem;
}
.recipe-hero__image {
  margin: 0;
}
.recipe-hero__image img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.recipe-main {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(20px, 4vw, 42px);
}
.author-line,
.author-box {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.author-line img,
.author-box img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}
.author-line span { display: block; color: var(--muted); }
.recipe-block {
  margin: 34px 0;
}
.ingredient-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.ingredient-list li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.ingredient-list input { margin-right: 8px; }
.step-list {
  display: grid;
  gap: 16px;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}
.step-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.step-list img {
  width: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 12px 14px;
  margin: 10px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
}
.author-box {
  grid-template-columns: 88px minmax(0, 1fr);
  margin-top: 36px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.author-box img {
  width: 88px;
  height: 88px;
}

.prose :where(p, ul, ol, blockquote) { color: var(--muted); }
.prose a { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose h2, .prose h3 { margin-top: 1.2em; color: var(--ink); }
.prose blockquote {
  margin-inline: 0;
  padding: 12px 16px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
}

.ad-slot {
  width: min(var(--wrap), calc(100vw - 36px));
  margin: 24px auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.ad-slot:empty { display: none; }
.ad-slot span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.recipe-grid .ad-slot {
  grid-column: 1 / -1;
  width: 100%;
}
.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, .96), rgba(255, 241, 219, .82)),
    radial-gradient(circle at 88% 8%, rgba(228, 166, 74, .24), transparent 34%);
  box-shadow: var(--shadow);
}
.home-about h2 {
  max-width: 760px;
  margin-bottom: 14px;
}
.home-about .prose p {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.home-about__notes {
  display: grid;
  gap: 10px;
}
.home-about__notes span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(184, 79, 47, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--brand-dark);
  font-weight: 900;
}
.home-about__notes span::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
}

.home-faq {
  padding-top: 24px;
}
.home-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.home-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(66, 41, 28, .07);
  overflow: hidden;
}
.home-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 16px 18px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}
.home-faq summary::-webkit-details-marker { display: none; }
.home-faq summary::after {
  content: "+";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--brand-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1;
}
.home-faq details[open] summary {
  color: var(--brand-dark);
  background: var(--paper);
}
.home-faq details[open] summary::after {
  content: "-";
  background: var(--brand);
  color: #fff;
}
.home-faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: start;
  width: min(var(--wrap), calc(100vw - 36px));
  margin: 42px auto 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, #fff8ed, #f8e7d3);
  box-shadow: 0 -8px 22px rgba(66, 41, 28, .05);
}
.site-footer > div img {
  width: 180px;
  height: 48px;
  object-fit: contain;
}
.site-footer p {
  color: var(--muted);
  max-width: 420px;
  margin: 12px 0 0;
}
.site-footer nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site-footer ul {
  justify-content: end;
  flex-wrap: wrap;
  gap: 9px 10px;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(184, 79, 47, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
}
.site-footer a:hover {
  border-color: rgba(184, 79, 47, .34);
  background: #fff;
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    padding-inline: 16px;
  }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    display: grid;
    gap: 4px;
  }
}

@media (max-width: 980px) {
  .hero,
  .recipe-hero,
  .listing-hero--image,
  .content-with-sidebar,
  .recipe-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero-carousel { padding: 18px; }
  .hero-carousel__slide {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }
  .hero-carousel__visual {
    order: -1;
    min-height: 320px;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .hero-carousel__visual img { transform: scale(1.28); }
  .hero-carousel__content { padding: 0; }
  .hero-carousel__footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-carousel__controls {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .recipe-grid,
  .recipe-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-grid,
  .story-grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer nav { justify-content: flex-start; }
  .site-footer ul { justify-content: start; }
  .sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-about,
  .home-faq__list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero {
    margin-top: 16px;
    min-height: 0;
  }
  .hero__media { min-height: 260px; }
  .hero__copy { padding: 24px; }
  .hero-carousel { padding: 12px; }
  .hero-carousel__slide {
    gap: 16px;
    min-height: 0;
  }
  .hero-carousel__visual {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
  .hero-carousel__visual img {
    object-position: center top;
    transform: scale(1.42);
  }
  .hero-carousel__visual figcaption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 10px;
  }
  .hero-carousel__heading {
    font-size: 2.35rem;
  }
  .hero-carousel__excerpt {
    font-size: 1rem;
  }
  .hero-carousel__footer {
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
  }
  .hero-carousel__controls {
    flex-direction: column;
    justify-content: center;
  }
  .hero-carousel__arrows,
  .hero-carousel__dots {
    justify-content: center;
  }
  h1 { font-size: 2.35rem; }
  .hero-search,
  .inline-search { flex-direction: column; }
  .section { width: min(100% - 28px, var(--wrap)); padding: 32px 0; }
  .home-about {
    width: min(100% - 28px, var(--wrap));
    padding: 22px;
  }
  .home-faq summary {
    min-height: 56px;
    padding: 14px 15px;
  }
  .home-faq p { padding-inline: 15px; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }
  .menu-toggle::before {
    width: 18px;
    height: 13px;
  }
  .site-footer {
    width: min(100% - 28px, var(--wrap));
    padding: 22px;
  }
  .site-footer nav,
  .site-footer ul { justify-content: center; }
  .site-footer ul { width: 100%; }
  .site-footer a {
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .recipe-grid,
  .recipe-grid--compact,
  .category-strip,
  .story-grid,
  .story-grid--wide,
  .sidebar {
    grid-template-columns: 1fr;
  }
  .recipe-layout { width: min(100% - 28px, var(--wrap)); }
  .category-pill { grid-template-columns: 78px minmax(0, 1fr); }
  .step-list li { grid-template-columns: 1fr; }
  .step-list img { width: 100%; }
  .author-box { grid-template-columns: 1fr; }
}
