:root {
  color-scheme: light;
  --bg: #fff8ef;
  --surface: #ffffff;
  --surface-soft: #fff1df;
  --orange: #f97316;
  --orange-soft: #fdba74;
  --gold: #facc15;
  --sage: #84a98c;
  --text: #1f2933;
  --muted: #6b7280;
  --border: #f1e5d8;
  --shadow: 0 18px 45px rgba(31, 41, 51, 0.08);
  --shadow-soft: 0 10px 24px rgba(31, 41, 51, 0.06);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--white {
  background: rgba(255, 255, 255, 0.62);
  border-block: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  overflow-wrap: anywhere;
  font-size: clamp(2.25rem, 5.6vw, 4.75rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.muted {
  color: var(--muted);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(241, 229, 216, 0.85);
  background: rgba(255, 248, 239, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 8px;
  background: var(--surface);
  color: var(--orange);
  box-shadow: var(--shadow-soft);
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--orange);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu {
  display: none;
}

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

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

.mobile-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 240px;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-menu__panel a {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.mobile-menu__panel a:hover,
.mobile-menu__panel a:focus-visible {
  background: #fff4e6;
  color: var(--orange);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 6px 16px rgba(31, 41, 51, 0.05);
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--orange);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.2);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
}

.button--secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
  box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(249, 115, 22, 0.38);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 44px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--border);
  content: "";
}

.hero-grid,
.recipe-hero__grid,
.editorial-grid,
.newsletter,
.content-layout {
  display: grid;
}

.hero-grid > *,
.recipe-hero__grid > *,
.editorial-grid > *,
.newsletter > *,
.content-layout > * {
  min-width: 0;
}

.hero-grid {
  align-items: center;
  gap: 44px;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(241, 229, 216, 0.9);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.05rem;
}

.search-form {
  display: flex;
  max-width: 720px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.search-form svg {
  flex: 0 0 auto;
  margin-left: 8px;
  color: var(--orange);
}

.search-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
}

.search-form .button {
  flex: 0 0 auto;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.04);
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
  border-color: rgba(249, 115, 22, 0.36);
  background: #fff4e6;
  color: var(--orange);
}

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

.recipe-card,
.article-card,
.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.recipe-card:hover,
.article-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow: var(--shadow);
}

.recipe-card__media,
.article-card__media,
.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

.recipe-card__media img,
.article-card__media img,
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media {
  aspect-ratio: 5 / 4;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.recipe-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.recipe-card__body,
.article-card__body,
.product-card__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.recipe-card__meta,
.recipe-hero__meta,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 9px;
  background: #fffaf4;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.editorial-band {
  border-block: 1px solid var(--border);
  padding: 56px 0;
  background: linear-gradient(90deg, rgba(132, 169, 140, 0.18), transparent 62%), rgba(255, 255, 255, 0.42);
}

.editorial-grid {
  align-items: center;
  gap: 34px;
  grid-template-columns: 0.92fr 1.08fr;
}

.time-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.time-row {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.9fr 0.9fr;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.93rem;
}

.time-row:last-child {
  border-bottom: 0;
}

.time-row strong {
  color: var(--text);
}

.time-row--head {
  background: #fff3e4;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter {
  align-items: center;
  gap: 28px;
  grid-template-columns: 1fr 0.88fr;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(253, 186, 116, 0.28), rgba(250, 204, 21, 0.14)), var(--surface);
  box-shadow: var(--shadow-soft);
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
}

.footer {
  border-top: 1px solid var(--border);
  background: #fffaf4;
}

.footer-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1fr;
  padding: 42px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.disclosure {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 62px 0 34px;
}

.page-hero__grid {
  display: grid;
  gap: 20px;
}

.content-layout {
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.prose {
  display: grid;
  gap: 24px;
  font-size: 1.03rem;
}

.prose h2,
.prose h3 {
  margin-top: 12px;
}

.prose ul,
.prose ol {
  margin: 0;
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 8px;
}

.info-block {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-block--sage {
  border-color: rgba(132, 169, 140, 0.35);
  background: rgba(132, 169, 140, 0.12);
}

.info-block--orange {
  border-color: rgba(249, 115, 22, 0.26);
  background: #fff3e5;
}

.recipe-hero {
  padding: 54px 0 36px;
}

.recipe-hero__grid {
  align-items: center;
  gap: 36px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
}

.recipe-hero__media {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.recipe-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.numbered-steps {
  counter-reset: steps;
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: steps;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 18px 18px 60px;
  background: var(--surface);
}

.numbered-steps li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  content: counter(steps);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.affiliate-note {
  border-left: 4px solid var(--orange);
  padding: 12px 14px;
  background: #fff3e5;
  color: var(--muted);
  font-size: 0.92rem;
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.wp-block-image img,
.alignwide,
.alignfull {
  border-radius: 8px;
}

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

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .recipe-hero__grid,
  .editorial-grid,
  .newsletter,
  .footer-inner,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-image {
    min-height: 360px;
  }

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

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

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
    line-height: 1.12;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-media,
  .hero-image {
    min-height: 300px;
  }

  .hero-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px;
  }

  .search-form,
  .newsletter form {
    align-items: stretch;
    flex-direction: column;
  }

  .search-form svg {
    display: none;
  }

  .search-form input {
    width: 100%;
  }

  .search-form .button,
  .newsletter .button {
    width: 100%;
  }

  .section-header {
    display: grid;
    align-items: start;
  }

  .recipe-grid,
  .article-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .time-table {
    overflow-x: auto;
  }

  .time-row {
    min-width: 640px;
  }

  .footer-links {
    display: grid;
  }
}

