/*
Theme Name: Protein Comfort Kitchen
Theme URI: https://proteincomfortkitchen.com
Author: Protein Comfort Kitchen
Description: A warm editorial WordPress theme for protein-forward comfort food.
Version: 4.0.6
Text Domain: protein-comfort-kitchen
*/

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --ivory: #f6f3ec;
  --cream: #fffdf8;
  --forest: #18332b;
  --leaf: #557a5b;
  --sage: #a9b9a5;
  --terracotta: #c96f4a;
  --terracotta-ink: #98472f;
  --peach: #e9b99e;
  --border: #ddd8cd;
  --muted: #66706a;
  --white: #fff;
  --shadow: 0 22px 55px rgba(24, 51, 43, .11);
  --shell: min(1240px, calc(100% - 56px));
  --radius-image: 24px;
  --radius-control: 10px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--forest);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button,
input,
textarea { font: inherit; }

button,
summary,
a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

::selection { color: var(--white); background: var(--terracotta); }

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

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.035em;
}

h1 em,
h2 em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 600;
}

.eyebrow {
  margin-bottom: 14px;
  color: #436448;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow--accent { color: var(--terracotta-ink); }
.eyebrow--light { color: var(--peach); }

.button,
button.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--forest);
  border-radius: var(--radius-control);
  color: var(--white);
  background: var(--forest);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 16px; }
.button--outline { color: var(--forest); background: transparent; }
.button--outline:hover { color: var(--white); background: var(--forest); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: .9rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link--large { font-size: 1rem; }
.button-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(246, 243, 236, .96);
}

.header-inner {
  display: grid;
  min-height: 86px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
}

.brand-mark svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.brand small {
  margin-top: 5px;
  color: #436448;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav { display: flex; align-items: center; gap: 32px; }

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .18s ease;
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.search-popover { position: relative; }
.search-popover summary { list-style: none; cursor: pointer; }
.search-popover summary::-webkit-details-marker { display: none; }

.search-popover > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
}

.search-popover svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.search-panel {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: min(420px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.search-panel label,
.archive-search label,
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.input-row {
  display: flex;
  gap: 8px;
}

.input-row input,
.field input,
.field textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid #c9c3b7;
  border-radius: var(--radius-control);
  color: var(--forest);
  background: var(--cream);
}

.input-row input,
.field input,
.newsletter-form input { min-height: 50px; padding: 11px 14px; }
.field textarea { min-height: 180px; padding: 13px 14px; resize: vertical; }

.input-row button,
.newsletter-form button {
  min-height: 50px;
  padding: 10px 17px;
  border: 1px solid var(--forest);
  border-radius: var(--radius-control);
  color: var(--white);
  background: var(--forest);
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav { display: none; }

.hero { padding: 72px 0 80px; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
}

.hero-copy { padding-block: 28px; }

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6vw, 5.8rem);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.hero-notes {
  display: flex;
  margin: 36px 0 0;
  padding: 0;
  gap: 22px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  list-style: none;
}

.hero-notes span { color: var(--leaf); }

.hero-image {
  position: relative;
  margin: 0;
  padding: 0 30px 30px 0;
}

.hero-image::before {
  position: absolute;
  z-index: -1;
  top: -38px;
  right: -34vw;
  bottom: 50px;
  left: 32%;
  border-radius: 30px 0 0 30px;
  background: var(--peach);
  content: "";
  opacity: .56;
}

.hero-image picture { display: block; }
.hero-image img {
  width: 100%;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 0 14px 35px rgba(24, 51, 43, .1);
}

.hero-image figcaption span,
.hero-image figcaption strong { display: block; }
.hero-image figcaption span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-image figcaption strong { margin-top: 4px; font-family: var(--serif); font-size: 1.15rem; }

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  position: relative;
  display: grid;
  margin: 0;
  padding: 28px 34px 28px 52px;
  border-left: 1px solid var(--border);
}

.trust-grid p:last-child { border-right: 1px solid var(--border); }
.trust-grid span { position: absolute; top: 29px; left: 22px; color: var(--terracotta-ink); font-size: .7rem; font-weight: 700; }
.trust-grid strong { font-family: var(--serif); font-size: 1.05rem; }
.trust-grid small { margin-top: 2px; color: var(--muted); font-size: .78rem; }

.section { padding: 110px 0; }

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

.section-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.8rem, 4.7vw, 4.7rem);
}

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

.recipe-card {
  min-width: 0;
  border-bottom: 1px solid var(--border);
}

.recipe-card__image {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--sage);
}

.recipe-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}

.recipe-card:hover .recipe-card__image img { transform: scale(1.025); }

.recipe-card__placeholder {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  color: var(--cream);
  background: var(--leaf);
}

.recipe-card__placeholder span {
  font-family: var(--serif);
  font-size: 3rem;
}

.recipe-card__body { padding: 25px 2px 28px; }
.recipe-card__body h3 { margin-bottom: 12px; font-size: clamp(1.55rem, 2vw, 2rem); line-height: 1.08; }
.recipe-card__body h3 a { text-decoration: none; }
.recipe-card__body > p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }

.empty-feature {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-image);
  background: var(--cream);
}

.empty-feature picture { display: block; min-height: 100%; }
.empty-feature img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-height: 560px;
  object-fit: cover;
}

.empty-feature > div {
  display: flex;
  padding: clamp(38px, 7vw, 86px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.empty-feature h3 { max-width: 560px; margin-bottom: 20px; font-size: clamp(2.5rem, 4vw, 4.2rem); }
.empty-feature p:not(.eyebrow) { max-width: 600px; margin-bottom: 26px; color: var(--muted); font-size: 1.03rem; }

.philosophy {
  padding: 110px 0;
  color: var(--cream);
  background: var(--forest);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) 1.14fr;
  align-items: center;
  gap: clamp(56px, 9vw, 130px);
}

.philosophy-image { position: relative; padding: 0 0 34px 34px; }
.philosophy-image::before { position: absolute; z-index: 0; top: 38px; right: 34px; bottom: 0; left: 0; border: 1px solid rgba(255,255,255,.35); border-radius: var(--radius-image); content: ""; }
.philosophy-image picture { position: relative; z-index: 1; display: block; }
.philosophy-image img { width: 100%; aspect-ratio: 5 / 6; border-radius: var(--radius-image); object-fit: cover; }

.image-note {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: 1px;
  padding: 15px 18px;
  border-radius: 10px;
  color: var(--forest);
  background: var(--peach);
  font-family: var(--serif);
  font-size: .95rem;
  line-height: 1.2;
}

.philosophy h2 { max-width: 720px; margin-bottom: 24px; font-size: clamp(3rem, 5vw, 5rem); }
.philosophy h2 em { color: var(--peach); }
.philosophy .eyebrow--accent { color: var(--peach); }
.philosophy .intro { max-width: 660px; margin-bottom: 38px; color: rgba(255,255,255,.72); font-size: 1.06rem; }

.principle-list { margin: 0; padding: 0; list-style: none; }
.principle-list li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.18); }
.principle-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.principle-list > li > span { color: var(--peach); font-size: .72rem; font-weight: 700; }
.principle-list h3 { margin-bottom: 7px; color: var(--cream); font-family: var(--sans); font-size: .96rem; letter-spacing: 0; }
.principle-list p { margin: 0; color: rgba(255,255,255,.66); font-size: .9rem; }

.newsletter {
  padding: 88px 0;
  color: var(--white);
  background: var(--terracotta-ink);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr minmax(380px, .78fr);
  align-items: center;
  gap: 80px;
}

.newsletter h2 { margin-bottom: 15px; color: var(--white); font-size: clamp(2.8rem, 4vw, 4.3rem); }
.newsletter .eyebrow--light { color: var(--cream); }
.newsletter p:not(.eyebrow) { max-width: 630px; margin-bottom: 0; color: var(--cream); }
.newsletter-form { position: relative; display: flex; gap: 8px; }
.newsletter-form input { border-color: rgba(255,255,255,.35); color: var(--forest); background: var(--cream); }
.newsletter-form button { flex: 0 0 auto; border-color: var(--forest); }
.newsletter small { display: block; margin-top: 9px; color: var(--cream); font-size: .72rem; }

.page-hero { padding: 104px 0 84px; border-bottom: 1px solid var(--border); background: var(--cream); }
.page-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; }
.page-hero h1 { max-width: 840px; margin: 0; font-size: clamp(4rem, 7vw, 6.7rem); }
.page-hero p:last-child { max-width: 600px; margin-bottom: 5px; color: var(--muted); font-size: 1.05rem; }
.page-hero--compact h1 { max-width: 920px; margin-bottom: 22px; }
.page-hero--contact { background: var(--ivory); }

.archive-tools { border-bottom: 1px solid var(--border); background: var(--ivory); }
.archive-tools__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; }
.archive-search { width: min(520px, 100%); padding: 30px 0; }
.topic-links { display: flex; padding: 30px 0; flex-wrap: wrap; align-items: center; gap: 9px; }
.topic-links span { margin-right: 6px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.topic-links a { padding: 7px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--cream); font-size: .78rem; font-weight: 600; text-decoration: none; }
.topic-links a:hover { border-color: var(--leaf); }

.empty-state {
  display: grid;
  max-width: 920px;
  margin: 10px auto;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 58px;
}

.empty-state__number { margin: 0; color: var(--peach); font-family: var(--serif); font-size: clamp(7rem, 14vw, 12rem); line-height: .7; }
.empty-state h2 { max-width: 680px; margin-bottom: 18px; font-size: clamp(2.8rem, 5vw, 4.6rem); }
.empty-state div > p:not(.eyebrow) { max-width: 620px; margin-bottom: 28px; color: var(--muted); }

.pagination { margin-top: 54px; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 8px; }
.pagination a,
.pagination .current { display: grid; min-width: 42px; min-height: 42px; padding: 8px 12px; place-items: center; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; }
.pagination .current { color: var(--white); border-color: var(--forest); background: var(--forest); }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-aside { position: sticky; top: 35px; }
.contact-aside h2 { margin-bottom: 20px; font-size: 3.3rem; }
.contact-aside > p:not(.eyebrow):not(.fine-print) { color: var(--muted); }
.contact-aside dl { margin: 34px 0; }
.contact-aside dl div { padding: 16px 0; border-top: 1px solid var(--border); }
.contact-aside dl div:last-child { border-bottom: 1px solid var(--border); }
.contact-aside dt { margin-bottom: 3px; color: var(--leaf); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-aside dd { margin: 0; font-size: .92rem; }

.form-card { padding: clamp(28px, 5vw, 58px); border: 1px solid var(--border); border-radius: var(--radius-image); background: var(--cream); box-shadow: 0 18px 50px rgba(24,51,43,.07); }
.field { margin-bottom: 22px; }
.field input:focus,
.field textarea:focus,
.input-row input:focus,
.newsletter-form input:focus { border-color: var(--leaf); outline: 3px solid rgba(85,122,91,.2); outline-offset: 0; }
.fine-print { margin: 18px 0 0; color: var(--muted); font-size: .76rem; }
.form-notice { padding: 13px 15px; border-radius: 8px; font-size: .86rem; font-weight: 600; }
.form-notice--success { color: #204c30; background: #e5f2e8; }
.form-notice--error { color: #7b3227; background: #fae8e2; }
.form-notice--light { color: var(--white) !important; background: rgba(24,51,43,.24); margin-bottom: 12px !important; }

.policy-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: 80px; }
.policy-layout aside { position: sticky; top: 40px; align-self: start; }
.policy-layout aside a { display: block; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .86rem; text-decoration: none; }

.prose { color: #31453e; }
.prose--centered { max-width: 780px; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 2.1em 0 .65em; color: var(--forest); font-size: 2rem; line-height: 1.08; }
.prose h3 { margin: 1.8em 0 .6em; color: var(--forest); font-size: 1.45rem; }
.prose p,
.prose li { font-size: 1rem; line-height: 1.82; }
.prose a { color: var(--leaf); text-underline-offset: 4px; }
.prose blockquote { margin: 2em 0; padding: 6px 0 6px 26px; border-left: 3px solid var(--terracotta); color: var(--leaf); font-family: var(--serif); font-size: 1.4rem; }
.prose figure { margin: 2.5em 0; }
.prose img { border-radius: 16px; }

.single-header { padding: 70px 0 46px; text-align: center; }
.breadcrumbs { display: flex; max-width: 760px; margin: 0 auto 44px; align-items: center; justify-content: center; gap: 9px; color: var(--muted); font-size: .72rem; overflow: hidden; }
.breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.single-header h1 { max-width: 980px; margin: 0 auto 22px; font-size: clamp(3.5rem, 7vw, 6.4rem); }
.single-deck { max-width: 720px; margin: 0 auto 28px; color: var(--muted); font-size: 1.12rem; }
.single-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 22px; color: var(--muted); font-size: .75rem; }
.single-meta button { padding: 0; border: 0; color: var(--forest); background: none; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.single-image { overflow: hidden; border-radius: var(--radius-image); }
.single-image img { width: 100%; max-height: 780px; object-fit: cover; }
.single-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: 80px; padding-top: 78px; padding-bottom: 110px; }
.single-aside { position: sticky; top: 32px; align-self: start; padding-top: 8px; }
.single-aside p:not(.eyebrow) { color: var(--muted); font-size: .86rem; }

.page-hero--error { min-height: 650px; display: grid; align-items: center; text-align: center; }
.page-hero--error .shell { display: flex; flex-direction: column; align-items: center; }
.page-hero--error h1 { max-width: 860px; margin-bottom: 22px; }
.page-hero--error .button-row { margin-top: 25px; }
.error-code { margin-bottom: 8px !important; color: var(--peach) !important; font-family: var(--serif); font-size: 7rem !important; font-weight: 700; line-height: .7; }

.site-footer { padding-top: 76px; color: rgba(255,255,255,.72); background: #10271f; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr 1fr; gap: 56px; padding-bottom: 62px; }
.brand--light { color: var(--white); }
.brand--light .brand-mark { color: var(--forest); background: var(--peach); }
.brand--light small { color: var(--sage); }
.footer-brand p { max-width: 280px; margin: 22px 0 0; font-size: .88rem; }
.footer-grid > div:not(.footer-brand) a { display: block; width: max-content; margin: 9px 0; font-size: .84rem; text-decoration: none; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-label { margin-bottom: 16px; color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-note > p:last-child { max-width: 290px; font-family: var(--serif); font-size: 1.1rem; line-height: 1.45; }
.footer-bottom { display: flex; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); justify-content: space-between; font-size: .72rem; }

@media (max-width: 1024px) {
  :root { --shell: min(100% - 40px, 940px); }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav > summary { display: flex; align-items: center; gap: 7px; list-style: none; font-size: .75rem; font-weight: 700; cursor: pointer; }
  .mobile-nav > summary::-webkit-details-marker { display: none; }
  .mobile-nav > summary i,
  .mobile-nav > summary i::before { display: block; width: 18px; height: 1px; background: currentColor; content: ""; transition: transform .2s ease; }
  .mobile-nav > summary i::before { transform: translateY(5px); }
  .mobile-nav[open] > summary i { transform: rotate(45deg); }
  .mobile-nav[open] > summary i::before { transform: rotate(90deg); }
  .mobile-nav nav { position: fixed; top: 86px; right: 0; bottom: 0; left: 0; display: flex; padding: 40px max(26px, calc((100% - 940px) / 2)); flex-direction: column; background: var(--ivory); }
  .admin-bar .mobile-nav nav { top: 118px; }
  .mobile-nav nav a { padding: 18px 0; border-bottom: 1px solid var(--border); font-family: var(--serif); font-size: 2rem; text-decoration: none; }
  .hero { padding-top: 54px; }
  .hero-grid { grid-template-columns: 1.03fr .87fr; gap: 42px; }
  .hero h1 { font-size: clamp(3.4rem, 6.4vw, 4.7rem); }
  .hero-notes { display: grid; gap: 8px; }
  .section { padding: 88px 0; }
  .newsletter-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-note { display: none; }
  .page-hero__grid { gap: 48px; }
  .archive-tools__inner { display: block; }
  .archive-search { padding-bottom: 12px; }
  .topic-links { padding-top: 12px; }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
    --radius-image: 18px;
  }

  body { font-size: 15px; }
  .site-header { position: sticky; top: 0; }
  .admin-bar .site-header { top: 46px; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand strong { font-size: .95rem; }
  .brand small { font-size: .56rem; }
  .desktop-cta,
  .search-popover > summary span { display: none; }
  .header-actions { gap: 16px; }
  .mobile-nav { display: block; }
  .mobile-nav > summary { display: flex; align-items: center; gap: 7px; list-style: none; font-size: .75rem; font-weight: 700; cursor: pointer; }
  .mobile-nav > summary::-webkit-details-marker { display: none; }
  .mobile-nav > summary i,
  .mobile-nav > summary i::before { display: block; width: 18px; height: 1px; background: currentColor; content: ""; transition: transform .2s ease; }
  .mobile-nav > summary i::before { transform: translateY(5px); }
  .mobile-nav[open] > summary i { transform: rotate(45deg); }
  .mobile-nav[open] > summary i::before { transform: rotate(90deg); }
  .mobile-nav nav { position: fixed; top: 72px; right: 0; bottom: 0; left: 0; display: flex; padding: 40px 26px; flex-direction: column; background: var(--ivory); }
  .admin-bar .mobile-nav nav { top: 118px; }
  .mobile-nav nav a { padding: 18px 0; border-bottom: 1px solid var(--border); font-family: var(--serif); font-size: 2rem; text-decoration: none; }
  .search-panel { position: fixed; top: 72px; right: 0; left: 0; width: 100%; border-radius: 0 0 14px 14px; }
  .admin-bar .search-panel { top: 118px; }

  .hero { padding: 50px 0 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { padding: 0; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(3.25rem, 15vw, 4.65rem); }
  .hero-lede { font-size: 1rem; }
  .hero-notes { margin-top: 28px; grid-template-columns: repeat(3, 1fr); gap: 10px; font-size: .68rem; }
  .hero-image { padding: 0 18px 18px 0; }
  .hero-image::before { top: -22px; right: -30px; bottom: 25px; left: 40%; }
  .hero-image img { aspect-ratio: 5 / 5.6; }
  .hero-image figcaption { min-width: 188px; padding: 13px 15px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p,
  .trust-grid p:last-child { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .trust-grid p:last-child { border-bottom: 0; }

  .section { padding: 74px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .section-heading h2 { font-size: 3.2rem; }
  .recipe-grid { grid-template-columns: 1fr; gap: 38px; }
  .empty-feature { grid-template-columns: 1fr; }
  .empty-feature img { min-height: 330px; max-height: 420px; }
  .empty-feature > div { padding: 34px 26px 38px; }
  .empty-feature h3 { font-size: 2.8rem; }

  .philosophy { padding: 76px 0; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 62px; }
  .philosophy-image { padding: 0 18px 24px 24px; }
  .image-note { right: 0; }
  .philosophy h2 { font-size: 3.25rem; }

  .newsletter { padding: 68px 0; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { display: grid; }
  .newsletter h2 { font-size: 3.1rem; }

  .page-hero { padding: 68px 0 56px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero h1 { font-size: clamp(3.4rem, 15vw, 5rem); }
  .archive-search { width: 100%; }
  .archive-tools__inner { display: block; }
  .topic-links { padding-bottom: 24px; }
  .empty-state { grid-template-columns: 1fr; gap: 32px; }
  .empty-state__number { font-size: 7rem; }
  .empty-state h2 { font-size: 3rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .contact-aside { position: static; }
  .contact-aside h2 { font-size: 2.8rem; }
  .form-card { padding: 26px 20px; }

  .policy-layout,
  .single-layout { grid-template-columns: 1fr; gap: 44px; }
  .policy-layout aside,
  .single-aside { position: static; }
  .single-header { padding-top: 46px; }
  .single-header h1 { font-size: 3.7rem; }
  .single-layout { padding-top: 54px; padding-bottom: 80px; }
  .breadcrumbs { justify-content: flex-start; margin-bottom: 32px; }
  .single-image { width: 100%; border-radius: 0; }

  .page-hero--error { min-height: 570px; }
  .error-code { font-size: 5rem !important; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 400px) {
  :root { --shell: calc(100% - 28px); }
  .brand strong { font-size: .86rem; }
  .brand small { margin-top: 4px; }
  .header-actions { gap: 12px; }
  .hero h1 { font-size: 3.25rem; }
  .hero-notes { grid-template-columns: 1fr; }
  .input-row { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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

@media print {
  .site-header,
  .site-footer,
  .single-aside,
  .single-meta button { display: none !important; }
  body { color: #000; background: #fff; }
  .single-header { padding-top: 20px; }
  .single-layout { display: block; padding: 20px 0; }
  .prose { color: #000; }
}
