:root {
  --ink: #17231d;
  --green: #123d2c;
  --green-2: #1e5b40;
  --lime: #d8ef6c;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --orange: #e76538;
  --line: rgba(23, 35, 29, 0.16);
  --muted: #68716b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.reading-progress {
  position: fixed; inset: 0 0 auto; height: 3px; z-index: 100;
}
.reading-progress span {
  display: block; width: 0; height: 100%; background: var(--lime);
}

.topbar { background: var(--green); color: #fff; font-size: 12px; }
.topbar-inner {
  min-height: 36px; display: flex; align-items: center;
  justify-content: space-between; letter-spacing: .02em;
}
.topbar p { margin: 0; color: rgba(255,255,255,.72); }
.topbar-links { display: flex; gap: 28px; }
.topbar-links a:hover { color: var(--lime); }

.site-header {
  position: relative; z-index: 20; background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { height: 92px; display: flex; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 10px; line-height: .9; }
.brand-mark { width: 44px; height: 44px; }
.brand-mark svg { width: 100%; fill: var(--green); }
.brand-mark .star { fill: var(--orange); }
.brand > span:last-child { display: grid; }
.brand strong {
  font: 800 20px/1 "Manrope", sans-serif; letter-spacing: .12em;
}
.brand b {
  color: var(--orange); font: 800 11px/1.4 "Manrope", sans-serif;
  letter-spacing: .35em;
}
.desktop-nav { display: flex; margin-left: auto; gap: 34px; }
.desktop-nav a {
  font-weight: 600; font-size: 14px; position: relative;
}
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px;
  height: 2px; background: var(--orange); transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.nav-cta {
  margin-left: 34px; padding: 13px 18px; color: #fff; background: var(--green);
  font-size: 13px; font-weight: 700; transition: .2s ease;
}
.nav-cta:hover { background: var(--orange); }
.nav-cta span { margin-left: 10px; }
.menu-button, .mobile-nav { display: none; }

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::before {
  content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: var(--lime); opacity: .28; left: -310px; top: -220px;
}
.hero-pattern {
  position: absolute; inset: 0 0 0 50%;
  background-image: radial-gradient(rgba(18,61,44,.14) 1.1px, transparent 1.1px);
  background-size: 17px 17px; opacity: .45;
}
.hero-grid {
  min-height: 620px; display: grid; grid-template-columns: .95fr 1.05fr;
  align-items: center; gap: 90px; position: relative;
}
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
  color: var(--orange); text-transform: uppercase; letter-spacing: .16em;
  font-size: 11px; font-weight: 800;
}
.eyebrow > span { width: 27px; height: 2px; background: currentColor; }
.hero h1 {
  margin: 0; font: 800 clamp(52px, 6vw, 84px)/.98 "Manrope", sans-serif;
  letter-spacing: -.055em; color: var(--green);
}
.hero-copy > p {
  max-width: 440px; margin: 28px 0 0; color: #526158; font-size: 18px;
}
.hero-visual { position: relative; padding: 48px 12px 28px 0; }
.image-frame { position: relative; }
.image-frame::before {
  content: ""; position: absolute; inset: -14px 34px 20px -14px;
  border: 1px solid rgba(18,61,44,.35); z-index: -1;
}
.image-frame img { height: 468px; object-fit: cover; }
.image-label {
  position: absolute; top: 0; right: 0; padding: 9px 16px; color: var(--green);
  background: var(--lime); text-transform: uppercase; letter-spacing: .12em;
  font-size: 10px; font-weight: 800;
}
.hero-seal {
  position: absolute; width: 112px; height: 112px; left: -55px; bottom: 2px;
  display: grid; place-items: center; border-radius: 50%; color: #fff;
  background: var(--orange); box-shadow: 0 10px 30px rgba(43,29,20,.14);
}
.hero-seal svg { position: absolute; width: 100%; height: 100%; animation: spin 20s linear infinite; }
.hero-seal text { fill: #fff; font-size: 8.5px; font-weight: 700; letter-spacing: 1.8px; }
.hero-seal > span { font-size: 23px; font-weight: 700; }
@keyframes spin { to { transform: rotate(360deg); } }

.article-meta {
  min-height: 94px; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; align-items: center;
}
.article-meta > div { display: grid; }
.article-meta span {
  color: var(--muted); font-size: 10px; text-transform: uppercase;
  letter-spacing: .13em; font-weight: 700;
}
.article-meta strong { font-size: 13px; }
.article-meta .share { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.share > span { margin-right: 6px; }
.share a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 700;
}
.share a:hover { color: #fff; background: var(--green); }

.article {
  display: grid; grid-template-columns: 220px minmax(0, 720px);
  justify-content: center; gap: 90px; padding-top: 90px; padding-bottom: 120px;
}
.toc {
  position: sticky; top: 30px; height: max-content; display: grid;
  border-top: 2px solid var(--green); padding-top: 18px;
}
.toc p {
  margin: 0 0 18px; text-transform: uppercase; font-size: 10px;
  letter-spacing: .14em; font-weight: 800;
}
.toc a {
  color: var(--muted); border-left: 1px solid var(--line); padding: 7px 0 7px 16px;
  font-size: 13px; line-height: 1.35;
}
.toc a.active { color: var(--green); border-left: 2px solid var(--orange); font-weight: 700; }
.article-body section { scroll-margin-top: 30px; }
.article-body > section + section { margin-top: 95px; }
.article-body p { color: #445048; }
.article-body .lead {
  margin-top: 0; color: var(--ink); font: 600 26px/1.55 "Manrope", sans-serif;
  letter-spacing: -.02em;
}
.intro-list {
  margin-top: 36px; padding: 27px 30px; background: var(--cream);
  border-left: 3px solid var(--orange);
}
.intro-list p { margin: 0 0 8px; font-weight: 700; color: var(--ink); }
.intro-list ul { margin: 0; padding-left: 19px; color: #445048; }
.intro-list li { padding: 2px 0; }
.section-number {
  color: var(--orange); font-size: 11px; letter-spacing: .16em; font-weight: 800;
  margin-bottom: 10px;
}
.article-body h2 {
  color: var(--green); margin: 0 0 25px;
  font: 800 clamp(35px, 4vw, 52px)/1.08 "Manrope", sans-serif; letter-spacing: -.045em;
}
blockquote {
  position: relative; margin: 42px 0; padding: 28px 35px 28px 68px;
  color: var(--green); background: var(--lime);
  font: 700 21px/1.5 "Manrope", sans-serif;
}
blockquote span { position: absolute; left: 24px; top: 8px; font-size: 56px; font-family: Georgia, serif; }
.tip-card {
  margin-top: 36px; padding: 25px; display: flex; gap: 20px;
  border: 1px solid rgba(18,61,44,.2); background: #fbfaf4;
}
.tip-icon {
  flex: 0 0 48px; height: 48px; display: grid; place-items: center;
  color: #fff; background: var(--green); border-radius: 50%;
}
.tip-card strong { font: 700 16px "Manrope", sans-serif; }
.tip-card p { margin: 3px 0 0; font-size: 14px; }

.category-heading { margin: 65px 0 26px; display: flex; align-items: center; gap: 20px; }
.category-heading span {
  white-space: nowrap; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em; color: var(--orange);
}
.category-heading div { height: 1px; width: 100%; background: var(--line); }
.recipe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
.recipe-image { position: relative; height: 250px; overflow: hidden; }
.recipe-image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.recipe-card:hover img { transform: scale(1.035); }
.recipe-image > span {
  position: absolute; left: 0; bottom: 0; width: 44px; height: 44px;
  display: grid; place-items: center; color: #fff; background: var(--orange);
  font-size: 11px; font-weight: 800;
}
.recipe-copy { padding-top: 17px; }
.recipe-copy > p:first-child, .feature-content > p:first-of-type, .simple-recipes article div > p:first-child {
  margin: 0 0 5px; color: var(--orange); font-size: 10px;
  font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.recipe-copy h3, .feature-content h3, .simple-recipes h3 {
  margin: 0; color: var(--green); font: 700 23px/1.25 "Manrope", sans-serif; letter-spacing: -.025em;
}
.recipe-copy > p:last-child { margin: 9px 0 0; font-size: 14px; line-height: 1.55; }
.no-image { background: #cddaaa; display: grid; place-items: center; }
.no-image.yellow { background: #efd78e; }
.ingredient-art {
  width: 110px; height: 110px; display: grid; place-items: center;
  border-radius: 50%; color: rgba(18,61,44,.74); border: 2px solid rgba(18,61,44,.28);
  font: 800 60px "Manrope", sans-serif;
}
.feature-recipe {
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: 440px; background: var(--green);
}
.feature-recipe > img { height: 100%; object-fit: cover; }
.feature-content { padding: 48px 38px; color: #fff; }
.feature-content > span { color: var(--lime); font: 800 12px "Manrope", sans-serif; }
.feature-content > p:first-of-type { margin-top: 36px; color: var(--lime); }
.feature-content h3 { color: #fff; font-size: 34px; }
.feature-content > p:not(:first-of-type) { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; }
.feature-content a {
  display: inline-flex; justify-content: space-between; width: 100%; margin-top: 20px;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 12px; font-weight: 700;
}
.simple-recipes { border-top: 1px solid var(--line); }
.simple-recipes article {
  display: grid; grid-template-columns: 62px 1fr; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.simple-recipes article > span {
  padding-top: 4px; color: var(--orange); font-size: 11px; font-weight: 800;
}
.simple-recipes h3 { font-size: 22px; }
.simple-recipes article div > p:last-child { margin: 7px 0 0; font-size: 14px; }
.simple-recipes.dark { display: grid; grid-template-columns: repeat(3, 1fr); border: 0; background: var(--cream); }
.simple-recipes.dark article {
  display: block; padding: 28px; border: 0; border-right: 1px solid var(--line);
}
.simple-recipes.dark article:last-child { border: 0; }
.simple-recipes.dark article > span { display: block; margin-bottom: 35px; }
.simple-recipes.dark h3 { font-size: 19px; }

.newsletter { padding: 90px 0; background: var(--orange); color: #fff; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
.eyebrow.light { color: #fff; opacity: .76; }
.newsletter h2 {
  margin: 0; font: 800 clamp(42px, 5vw, 62px)/1.05 "Manrope", sans-serif; letter-spacing: -.05em;
}
.signup-form label { display: block; margin-bottom: 18px; font-weight: 600; }
.signup-form > div { display: flex; border-bottom: 2px solid #fff; }
.signup-form input {
  min-width: 0; flex: 1; border: 0; outline: 0; padding: 15px 0; color: #fff; background: transparent;
}
.signup-form input::placeholder { color: rgba(255,255,255,.67); }
.signup-form button {
  border: 0; padding: 0; color: #fff; background: transparent; font-weight: 700; cursor: pointer;
}
.signup-form button span { margin-left: 14px; }
.signup-form small { display: block; margin-top: 12px; opacity: .65; font-size: 10px; }
.form-message { margin: 8px 0 0; font-size: 12px; font-weight: 700; }

.more-stories { padding-top: 105px; padding-bottom: 115px; }
.stories-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 38px; }
.stories-heading span {
  color: var(--orange); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 800;
}
.stories-heading h2 {
  margin: 5px 0 0; color: var(--green);
  font: 800 42px/1.1 "Manrope", sans-serif; letter-spacing: -.04em;
}
.stories-heading > a { font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--ink); }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.story img { height: 250px; object-fit: cover; }
.story p {
  margin: 16px 0 4px; color: var(--orange); font-size: 10px;
  font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.story h3 {
  margin: 0; color: var(--green); font: 700 20px/1.35 "Manrope", sans-serif;
}

footer { color: #fff; background: var(--green); }
.footer-top { min-height: 310px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; padding-top: 75px; }
.brand-footer .brand-mark svg { fill: #fff; }
.brand-footer { color: #fff; }
.footer-top > p { margin: 4px 0; color: rgba(255,255,255,.65); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-links > div { display: grid; }
.footer-links span {
  margin-bottom: 12px; color: var(--lime); font-size: 10px; text-transform: uppercase;
  letter-spacing: .14em; font-weight: 800;
}
.footer-links a { font-size: 13px; padding: 2px 0; color: rgba(255,255,255,.8); }
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  position: relative; min-height: 80px; border-top: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,.5); font-size: 11px;
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 25px; margin-right: 65px; }
.back-top {
  position: absolute; right: 0; width: 43px; height: 43px; border-radius: 50%;
  color: var(--green); border: 0; background: var(--lime); cursor: pointer;
}

.legal-page { background: var(--paper); }
.legal-back {
  margin-left: auto; font-size: 13px; font-weight: 700;
  border-bottom: 1px solid var(--green);
}
.legal-hero {
  padding: 82px 0 72px; color: #fff; background: var(--green);
}
.legal-hero .eyebrow { color: var(--lime); }
.legal-hero h1 {
  margin: 0; font: 800 clamp(48px, 7vw, 76px)/1 "Manrope", sans-serif;
  letter-spacing: -.055em;
}
.legal-hero p { margin: 20px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.legal-content {
  max-width: 820px; padding-top: 75px; padding-bottom: 105px;
}
.legal-content .legal-lead {
  margin: 0 0 60px; color: var(--ink);
  font: 600 24px/1.55 "Manrope", sans-serif; letter-spacing: -.02em;
}
.legal-content h2 {
  margin: 45px 0 12px; color: var(--green);
  font: 700 24px/1.3 "Manrope", sans-serif; letter-spacing: -.025em;
}
.legal-content p, .legal-content li { color: #4d5851; }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: var(--orange); font-weight: 700; border-bottom: 1px solid currentColor; }
.legal-note {
  margin-top: 55px; padding: 25px 28px; background: var(--cream);
  border-left: 3px solid var(--orange);
}
.legal-note strong {
  color: var(--green); text-transform: uppercase; letter-spacing: .12em; font-size: 11px;
}
.legal-note p { margin: 6px 0 0; font-size: 13px; }
.legal-footer .footer-bottom div { margin-right: 0; }

@media (max-width: 900px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-button {
    margin-left: auto; width: 42px; height: 42px; padding: 10px;
    border: 0; background: transparent; display: grid; align-content: center; gap: 7px;
  }
  .menu-button span { height: 2px; background: var(--green); }
  .menu-button span:last-child { width: 70%; justify-self: end; }
  .mobile-nav {
    position: absolute; top: 100%; left: 0; right: 0; padding: 20px 24px 28px;
    display: grid; gap: 10px; background: var(--paper); border-bottom: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a { padding: 8px 0; font-weight: 700; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; min-height: 560px; }
  .hero-seal { left: -25px; }
  .article { grid-template-columns: 170px minmax(0, 1fr); gap: 45px; }
  .simple-recipes.dark { grid-template-columns: 1fr; }
  .simple-recipes.dark article { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 32px, 1180px); }
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-links { width: 100%; justify-content: space-between; gap: 10px; font-size: 10px; }
  .nav-wrap { height: 76px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 17px; }
  .brand b { font-size: 9px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 28px; padding-top: 65px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(49px, 15vw, 68px); }
  .hero-copy > p { font-size: 16px; }
  .hero-visual { padding: 12px 0 0; }
  .image-frame img { height: 330px; }
  .hero-seal { width: 92px; height: 92px; left: auto; right: -7px; bottom: -34px; }
  .article-meta { grid-template-columns: 1fr 1fr; gap: 20px; padding-block: 24px; }
  .article-meta .share { justify-content: flex-start; }
  .article { display: block; padding-top: 65px; padding-bottom: 80px; }
  .toc { display: none; }
  .article-body .lead { font-size: 21px; }
  .article-body > section + section { margin-top: 75px; }
  .article-body h2 { font-size: 38px; }
  .recipe-grid { grid-template-columns: 1fr; }
  .recipe-image { height: 285px; }
  .feature-recipe { grid-template-columns: 1fr; }
  .feature-recipe > img { height: 300px; }
  .feature-content { padding: 35px 27px; }
  .newsletter { padding: 70px 0; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 45px; }
  .signup-form > div { display: grid; }
  .signup-form button { text-align: left; padding: 13px 0; }
  .stories-heading { align-items: start; gap: 25px; }
  .stories-heading h2 { font-size: 35px; }
  .stories-heading > a { white-space: nowrap; margin-top: 16px; }
  .stories-grid { grid-template-columns: 1fr; gap: 38px; }
  .story img { height: 290px; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; padding: 60px 0; }
  .footer-links { max-width: 300px; }
  .legal-hero { padding: 60px 0 55px; }
  .legal-content { padding-top: 55px; padding-bottom: 75px; }
  .legal-content .legal-lead { font-size: 20px; margin-bottom: 45px; }
  .legal-footer .footer-bottom { gap: 20px; }
  .legal-footer .footer-bottom div { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
