:root {
  --green: #344c3d;
  --olive: #748259;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --ink: #252a25;
  --muted: #6f756f;
  --line: #dedfd8;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  word-break: keep-all;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 82px;
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -2px;
}
.brand b {
  color: var(--olive);
}
.instagram {
  margin-left: auto;
  border: 1px solid var(--green);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 38px auto 90px;
  min-height: 580px;
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46% 54%;
}
.hero-copy {
  padding: 85px 30px 70px 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.13em;
  font-weight: 900;
  color: var(--olive);
  margin: 0 0 17px;
}
.hero h1 {
  font:
    800 47px/1.22 Georgia,
    "Noto Serif KR",
    serif;
  letter-spacing: -3px;
  margin: 0 0 24px;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.primary {
  margin-top: 34px;
  background: var(--green);
  color: white;
  border-radius: 8px;
  padding: 15px 19px;
  font-size: 13px;
  font-weight: 800;
}
.hero-image {
  min-height: 580px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
}
.weekly {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto 110px;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 2px solid var(--green);
  padding-top: 28px;
  margin-bottom: 35px;
}
.section-title h2 {
  font:
    800 36px/1.3 Georgia,
    "Noto Serif KR",
    serif;
  letter-spacing: -2px;
  margin: 0;
}
.section-title > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.menu-grid article,
.menu-grid .menu-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.menu-grid .menu-card:hover {
  transform: translateY(-3px);
  border-color: var(--olive);
  box-shadow: 0 10px 24px rgba(55, 66, 57, 0.09);
}
.menu-grid article > img,
.menu-grid .menu-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.menu-grid article > div,
.menu-grid .menu-card > div {
  min-height: 132px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.menu-grid span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--olive);
}
.menu-grid b {
  font-size: 18px;
  margin-top: auto;
}
.menu-grid small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}
.text-link {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid var(--green);
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 900;
}
.promise {
  background: var(--green);
  color: white;
  padding: 90px max(20px, calc((100vw - 1000px) / 2));
}
.promise .eyebrow {
  color: #cbd4bd;
}
.promise h2 {
  font:
    800 37px/1.45 Georgia,
    "Noto Serif KR",
    serif;
  letter-spacing: -2px;
  margin: 0 0 45px;
}
.promise > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.promise > div p {
  border-top: 1px solid #ffffff4a;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.promise b {
  font-size: 15px;
}
.promise span {
  font-size: 12px;
  color: #d9dfd3;
}
footer {
  padding: 50px max(20px, calc((100vw - 1120px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: #202a23;
  color: #aeb9b0;
  font-size: 10px;
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer strong {
  font-size: 24px;
  color: white;
  letter-spacing: -1px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  color: #d4ddd6;
  font-size: 11px;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.recipe-hero {
  background: var(--cream);
  padding: 72px 20px 64px;
  text-align: center;
}
.recipe-hero .eyebrow {
  margin-bottom: 14px;
}
.recipe-hero h1 {
  font:
    800 45px/1.25 Georgia,
    "Noto Serif KR",
    serif;
  letter-spacing: -3px;
  margin: 0 0 18px;
}
.recipe-hero > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.affiliate-disclosure {
  width: min(900px, calc(100% - 36px));
  margin: 24px auto 0;
  padding: 14px 17px;
  border: 1px solid #dfd8c8;
  border-radius: 10px;
  background: #fffaf0;
  color: #5e584d;
  font-size: 11px;
  line-height: 1.6;
}
.affiliate-disclosure strong {
  display: block;
  margin-bottom: 4px;
  color: #403b33;
  font-size: 10px;
}
.affiliate-disclosure p {
  margin: 0;
}
.week-nav {
  width: min(900px, calc(100% - 36px));
  margin: 28px auto 0;
  display: flex;
  gap: 7px;
  overflow: auto;
  scrollbar-width: none;
  position: sticky;
  top: 10px;
  z-index: 10;
}
.week-nav a {
  white-space: nowrap;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 5px 20px #354b3d10;
}
.recipes {
  width: min(900px, calc(100% - 36px));
  margin: 45px auto 100px;
}
.recipe {
  display: grid;
  grid-template-columns: 135px 210px 1fr;
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.recipe-photo {
  margin: 0;
}
.recipe-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}
.recipe-day span {
  display: block;
  color: var(--olive);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.recipe-day h2 {
  font:
    800 27px/1.35 Georgia,
    "Noto Serif KR",
    serif;
  letter-spacing: -1px;
  margin: 10px 0;
}
.recipe-day small {
  color: var(--muted);
}
.recipe-info {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
}
.recipe-info h3 {
  font-size: 12px;
  margin: 0 0 13px;
  color: var(--green);
}
.recipe-info ul,
.recipe-info ol {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.85;
}
.tip {
  grid-column: 1/-1;
  background: #f0f3eb;
  border-radius: 10px;
  padding: 15px 17px;
  font-size: 12px;
  line-height: 1.65;
}
.tip b {
  color: var(--olive);
}
.source {
  grid-column: 1/-1;
  color: #8a8f89;
  font-size: 10px;
}
.source a {
  text-decoration: underline;
}
.ingredient-shop {
  grid-column: 1/-1;
  margin-top: 4px;
  padding: 16px;
  border: 1px solid #eadfcf;
  border-radius: 16px;
  background: #fffaf2;
}
.ingredient-shop h3 {
  margin: 0;
  font-size: 17px;
}
.ingredient-shop p {
  margin: 5px 0 12px;
  color: #756b60;
  font-size: 13px;
}
.ingredient-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.ingredient-links a:nth-child(n + 4) {
  display: none;
}
.ingredient-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-width: 0;
  padding: 0 0 9px;
  border: 1px solid #d9c7ad;
  border-radius: 13px;
  background: #fff;
  color: #443a30;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.ingredient-links a::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 8px;
  background-image: url("/assets/recipes/ingredient-sprite-v1.png");
  background-repeat: no-repeat;
  background-size: 600% 500%;
}
.ingredient-links a:hover {
  border-color: #8b6f48;
  background: #f8eedf;
  transform: translateY(-1px);
}
.ingredient-links a[href*="goyfOJsPAW"]::before {
  background-position: 0 0;
}
.ingredient-links a[href*="goyhPLNlzo"]::before {
  background-position: 20% 0;
}
.ingredient-links a[href*="goyhR7XvLU"]::before {
  background-position: 40% 0;
}
.ingredient-links a[href*="goyhUTdsqG"]::before {
  background-position: 60% 0;
}
.ingredient-links a[href*="goyhXlf99E"]::before {
  background-position: 80% 0;
}
.ingredient-links a[href*="goyh0ccybs"]::before {
  background-position: 100% 0;
}
.ingredient-links a[href*="goyh2GND40"]::before {
  background-position: 0 25%;
}
.ingredient-links a[href*="goyh5la6WO"]::before {
  background-position: 20% 25%;
}
.ingredient-links a[href*="goyh7SYPtY"]::before {
  background-position: 40% 25%;
}
.ingredient-links a[href*="goyiavlnSS"]::before {
  background-position: 60% 25%;
}
.ingredient-links a[href*="goyidaQMvc"]::before {
  background-position: 80% 25%;
}
.ingredient-links a[href*="goyifFwrPU"]::before {
  background-position: 100% 25%;
}
.ingredient-links a[href*="goyiiAmEfu"]::before {
  background-position: 0 50%;
}
.ingredient-links a[href*="goymrxRd92"]::before {
  background-position: 20% 50%;
}
.ingredient-links a[href*="goyjPMcGaq"]::before {
  background-position: 40% 50%;
}
.ingredient-links a[href*="goyjSwTTkO"]::before {
  background-position: 60% 50%;
}
.ingredient-links a[href*="goyjUPjXb2"]::before {
  background-position: 80% 50%;
}
.ingredient-links a[href*="goyjXtVz40"]::before {
  background-position: 100% 50%;
}
.ingredient-links a[href*="goyjZ3tRJI"]::before {
  background-position: 0 75%;
}
.ingredient-links a[href*="goyj2CYIhw"]::before {
  background-position: 20% 75%;
}
.ingredient-links a[href*="goyj5boBpY"]::before {
  background-position: 40% 75%;
}
.ingredient-links a[href*="goyj7JbRbo"]::before {
  background-position: 60% 75%;
}
.ingredient-links a[href*="goykajW6Nw"]::before {
  background-position: 80% 75%;
}
.ingredient-links a[href*="goykc41o0y"]::before {
  background-position: 100% 75%;
}
.ingredient-links a[href*="goykfuqeEm"]::before {
  background-position: 0 100%;
}
.ingredient-links a[href*="goykiHSpRQ"]::before {
  background-position: 20% 100%;
}
.ingredient-links a[href*="goymxA6V7k"]::before {
  background-position: 40% 100%;
}
.shop-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 13px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.shop-cta:hover {
  background: #253a2e;
}
.detail-shop {
  margin: 30px 0;
  padding: 26px;
  border: 1px solid #e4d7c5;
  border-radius: 18px;
  background: #fffaf2;
}
.detail-shop h2 {
  margin: 0;
  font-size: 18px;
}
.shop-disclosure {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}
.article-meta {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}
.related-recipes {
  margin: 58px 0 10px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}
.related-recipes h2 {
  margin: 0 0 22px;
  font:
    800 28px/1.35 Georgia,
    "Noto Serif KR",
    serif;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  padding-bottom: 18px;
}
.related-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  margin-bottom: 15px;
}
.related-grid span,
.related-grid b,
.related-grid small {
  display: block;
  margin-left: 16px;
  margin-right: 16px;
}
.related-grid span {
  color: var(--olive);
  font-size: 10px;
  font-weight: 900;
}
.related-grid b {
  margin-top: 6px;
  font-size: 16px;
}
.related-grid small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-grid a:hover {
  border-color: var(--olive);
  transform: translateY(-2px);
}
.ingredient-links a[data-emoji]::before {
  content: attr(data-emoji);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
  background-color: #f3eadc;
  font-size: 46px;
}
.recipe-detail-link {
  grid-column: 1/-1;
  justify-self: start;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.detail-page {
  width: min(900px, calc(100% - 36px));
  margin: 55px auto 90px;
}
.back-link {
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
}
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  margin: 28px 0 48px;
}
.detail-hero span {
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}
.detail-hero h1 {
  margin: 12px 0;
  font:
    800 48px/1.22 Georgia,
    "Noto Serif KR",
    serif;
  letter-spacing: -2px;
}
.detail-hero p {
  color: var(--muted);
}
.detail-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 44px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.detail-grid h2,
.detail-point h2,
.detail-notes h2 {
  margin: 0 0 16px;
  font-size: 18px;
}
.detail-grid ul,
.detail-grid ol,
.detail-notes ul {
  margin: 0;
  padding-left: 21px;
  line-height: 1.9;
  font-size: 14px;
}
.detail-point {
  margin: 20px 0;
  padding: 25px 28px;
  border-radius: 16px;
  background: #f0f3eb;
}
.detail-point p,
.detail-notes p {
  margin: 0;
  line-height: 1.8;
  font-size: 14px;
}
.detail-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.detail-notes article {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.detail-disclaimer {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f7f5ef;
  color: #73776f;
  font-size: 11px;
  line-height: 1.7;
}
.detail-footer-nav {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.detail-footer-nav a {
  flex: 1;
  padding: 16px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}
.policy-page {
  width: min(780px, calc(100% - 36px));
  margin: 65px auto 100px;
}
.policy-page h1 {
  font:
    800 44px/1.25 Georgia,
    "Noto Serif KR",
    serif;
}
.policy-page h2 {
  margin-top: 38px;
  font-size: 21px;
}
.policy-page p,
.policy-page li {
  color: #4f5650;
  font-size: 15px;
  line-height: 1.85;
}
.policy-page .updated {
  color: #8a8f89;
  font-size: 12px;
}
.plans-intro {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto 90px;
  padding: 55px;
  border-radius: 22px;
  background: #f0f3eb;
}
.plans-intro h2 {
  margin: 8px 0 14px;
  font:
    800 34px/1.35 Georgia,
    "Noto Serif KR",
    serif;
}
.plans-intro p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 28px;
}
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  margin-right: 28px;
}
.main-nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.category-showcase {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto 90px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category-grid a {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.2s ease;
}
.category-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--olive);
  box-shadow: 0 12px 30px rgba(55, 66, 57, 0.08);
}
.category-grid span {
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: auto;
}
.category-grid b {
  color: var(--ink);
  font:
    800 21px/1.3 Georgia,
    "Noto Serif KR",
    serif;
}
.category-grid small {
  color: var(--muted);
  margin-top: 8px;
}
.category-page {
  width: min(1040px, calc(100% - 36px));
  margin: 55px auto 100px;
}
.category-hero {
  padding: 45px 0 55px;
  border-bottom: 1px solid var(--line);
}
.category-hero h1 {
  margin: 8px 0 14px;
  font:
    800 50px/1.2 Georgia,
    "Noto Serif KR",
    serif;
}
.category-hero > p:last-child {
  color: var(--muted);
  line-height: 1.8;
}
.info-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}
.info-section h2 {
  margin: 0 0 8px;
  font:
    800 29px/1.35 Georgia,
    "Noto Serif KR",
    serif;
}
.info-section > .lead {
  margin: 0 0 24px;
  color: var(--muted);
}
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.info-card h3 {
  margin: 0 0 11px;
  font-size: 17px;
}
.info-card p {
  margin: 0;
  color: #4f5650;
  font-size: 14px;
  line-height: 1.8;
}
.source-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.plans-page {
  width: min(1040px, calc(100% - 36px));
  margin: 55px auto 100px;
}
.plans-hero {
  padding: 48px 0 60px;
  border-bottom: 1px solid var(--line);
}
.plans-hero h1 {
  margin: 8px 0 15px;
  font:
    800 52px/1.2 Georgia,
    "Noto Serif KR",
    serif;
}
.plans-hero > p:last-child {
  color: var(--muted);
  line-height: 1.8;
}
.plan-group {
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}
.plan-heading span {
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}
.plan-heading h2 {
  margin: 8px 0 6px;
  font:
    800 30px/1.3 Georgia,
    "Noto Serif KR",
    serif;
}
.plan-heading p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}
.plan-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.plan-cards a {
  min-height: 120px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.plan-cards a img {
  width: calc(100% + 40px);
  height: 150px;
  margin: -20px -20px 18px;
  object-fit: cover;
}
.plan-cards a:hover {
  border-color: var(--olive);
  transform: translateY(-2px);
}
.plan-cards b {
  color: var(--ink);
  font-size: 16px;
}
.plan-cards span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}
.plan-bundle {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
}
.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
}
.dm-banner {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto 90px;
  background: var(--cream);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  align-items: center;
}
.dm-banner h2 {
  font:
    800 24px/1.4 Georgia,
    "Noto Serif KR",
    serif;
  margin: 0 0 8px;
}
.dm-banner p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.dm-banner a {
  margin-left: auto;
  background: var(--green);
  color: white;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 11px;
  font-weight: 800;
}
@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 82px;
    padding: 16px 0 12px;
    flex-wrap: wrap;
    row-gap: 14px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    margin: 0;
    gap: 18px;
    overflow-x: auto;
    padding: 2px 0 3px;
    scrollbar-width: none;
  }
  .category-grid,
  .info-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid a {
    min-height: 155px;
    padding: 19px;
  }
  .category-hero h1 {
    font-size: 38px;
  }
  .plans-intro {
    padding: 35px 24px;
  }
  .plans-intro h2 {
    font-size: 28px;
  }
  .plans-hero h1 {
    font-size: 38px;
  }
  .plan-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-header {
    height: 67px;
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 25px;
  }
  .hero {
    width: 100%;
    margin: 0 0 72px;
    border-radius: 0;
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }
  .hero-image {
    height: 375px;
    min-height: 0;
  }
  .hero-image img {
    object-position: 50% 46%;
  }
  .hero-copy {
    padding: 45px 22px 52px;
  }
  .hero h1 {
    font-size: 37px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .weekly {
    width: calc(100% - 32px);
    margin-bottom: 80px;
  }
  .section-title {
    display: block;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .section-title > p {
    margin-top: 15px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-grid article,
  .menu-grid .menu-card {
    min-height: 0;
  }
  .menu-grid article > div,
  .menu-grid .menu-card > div {
    min-height: 122px;
    padding: 14px;
  }
  .menu-grid b {
    font-size: 16px;
  }
  .promise {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .promise h2 {
    font-size: 30px;
  }
  .promise > div {
    grid-template-columns: 1fr;
  }
  .promise > div p {
    margin: 0;
    padding-bottom: 10px;
  }
  footer {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }
  .recipe-hero {
    padding-top: 54px;
  }
  .recipe-hero h1 {
    font-size: 36px;
  }
  .week-nav {
    top: 7px;
  }
  .recipe {
    display: block;
    padding: 34px 0;
  }
  .recipe-day {
    margin-bottom: 20px;
  }
  .recipe-photo {
    margin-bottom: 25px;
  }
  .recipe-photo img {
    border-radius: 12px;
  }
  .recipe-info {
    display: block;
  }
  .recipe-info > div {
    margin-bottom: 24px;
  }
  .tip,
  .source {
    display: block;
    margin-top: 13px;
  }
  .dm-banner {
    display: block;
  }
  .dm-banner a {
    display: inline-block;
    margin: 20px 0 0;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .info-card-grid {
    grid-template-columns: 1fr;
  }
  .ingredient-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ingredient-links a {
    font-size: 12px;
  }
  .detail-hero,
  .detail-grid,
  .detail-notes {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .detail-hero {
    gap: 24px;
  }
  .detail-hero h1 {
    font-size: 37px;
  }
  .detail-footer-nav {
    flex-direction: column;
  }
}
