*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg: oklch(98.5% 0.005 80);
  --bg-alt: oklch(96% 0.007 80);
  --ink: oklch(12% 0.005 80);
  --ink-mid: oklch(38% 0.008 80);
  --ink-soft: oklch(58% 0.006 80);
  --green: oklch(52% 0.14 145);
  --green-light: oklch(95% 0.04 145);
  --amber: oklch(68% 0.12 60);
  --amber-light: oklch(96% 0.04 60);
  --border: oklch(89% 0.006 80);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 3px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
h1, h2, h3, h4, p, figure { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input { font: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.site-main { min-height: 50vh; animation: fadeUp 0.28s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  background: var(--green-light);
  color: var(--green);
}
.badge.amber { background: var(--amber-light); color: var(--amber); }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.section-label::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 12px;
}
.button-dark,
.button-light,
.button-outline,
.newsletter-form button,
.load-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.button-dark { padding: 14px 32px; background: var(--ink); color: var(--bg); border: 1px solid var(--ink); }
.button-dark:hover { background: var(--green); border-color: var(--green); }
.button-light { padding: 14px 32px; background: white; color: var(--ink); border: 1px solid white; }
.button-outline,
.load-more-button { padding: 14px 40px; background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.button-outline:hover,
.load-more-button:hover { background: var(--ink); color: var(--bg); }

.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); padding: 0 40px; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; height: 64px; }
.site-brand { margin-right: auto; display: flex; align-items: center; }
.wordmark { font-family: 'Bitter', Georgia, serif; font-size: 26px; font-weight: 600; display: inline-flex; align-items: baseline; gap: 0; letter-spacing: -0.03em; line-height: 1; }
.wordmark .keto { font-weight: 600; color: var(--ink); letter-spacing: -0.03em; }
.wordmark .in { font-family: 'Bitter', Georgia, serif; font-style: normal; font-weight: 400; color: var(--ink-soft); letter-spacing: 0; font-size: 0.78em; }
.wordmark .minutes { font-family: 'Bitter', Georgia, serif; font-style: italic; font-weight: 400; color: var(--green); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links li,
.footer-col li { list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--ink-soft); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav-cta { margin-left: 32px; background: var(--ink); color: var(--bg); padding: 8px 18px; border-radius: 2px; font-size: 12px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; }
.nav-cta:hover { background: var(--green); color: white; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.25s; border-radius: 2px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer { display: none; position: fixed; inset: 64px 0 0; background: var(--bg); z-index: 99; padding: 32px 24px; flex-direction: column; border-top: 1px solid var(--border); }
.nav-drawer.open { display: flex; }
.nav-drawer a { font-size: 18px; color: var(--ink-mid); padding: 16px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.nav-drawer a:hover,
.nav-drawer a[aria-current="page"] { color: var(--green); }
.nav-drawer .nav-cta { margin: 24px 0 0; padding: 14px 24px; text-align: center; border-bottom: none; }

.card { display: block; cursor: pointer; }
.card-img { overflow: hidden; border-radius: var(--radius); background: var(--bg-alt); height: 230px; }
.card-img-lg { height: 400px; }
.card-img-md { height: 230px; }
.card-img-sm { height: 170px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding-top: 14px; }
.card-title { font-family: var(--font-display); line-height: 1.25; color: var(--ink); margin: 10px 0 0; }
.card-title-lg { font-size: 30px; }
.card-title-md { font-size: 19px; }
.card-title-sm { font-size: 15px; }
.card-meta { display: flex; gap: 10px; align-items: center; margin-top: 8px; font-size: 12px; color: var(--ink-soft); }
.card-excerpt { margin: 8px 0 0; font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.card-read { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 11px; font-weight: 500; color: var(--green); letter-spacing: 0.07em; text-transform: uppercase; transition: gap 0.2s; }
.card:hover .card-read { gap: 9px; }

.hero-editorial { border-bottom: 1px solid var(--border); }
.hero-editorial-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; align-items: stretch; }
.hero-editorial-text { padding: 72px 60px 72px 0; border-right: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.hero-editorial-text h1 { font-size: 52px; line-height: 1.1; margin: 20px 0; font-weight: 700; }
.hero-editorial-text p { font-size: 17px; color: var(--ink-mid); line-height: 1.65; max-width: 440px; margin-bottom: 32px; }
.hero-meta-row { display: flex; gap: 20px; align-items: center; }
.hero-date { font-size: 13px; color: var(--ink-soft); }
.hero-editorial-img { overflow: hidden; }
.hero-editorial-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.hero-editorial-img:hover img { transform: scale(1.04); }
.hero-magazine { position: relative; height: 600px; overflow: hidden; }
.hero-magazine > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-magazine::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, oklch(8% 0.005 80 / 0.88) 45%, transparent 100%); }
.hero-magazine-content { position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-end; padding-bottom: 72px; }
.hero-magazine-copy { max-width: 560px; }
.hero-magazine h1 { font-size: 54px; line-height: 1.1; color: white; margin: 16px 0 18px; font-weight: 700; }
.hero-magazine p { font-size: 16px; color: oklch(80% 0.005 80); line-height: 1.6; margin-bottom: 28px; }
.hero-minimal { border-bottom: 1px solid var(--border); }
.ticker { background: var(--ink); padding: 10px 40px; overflow: hidden; }
.ticker-inner { display: flex; gap: 40px; white-space: nowrap; animation: kimTicker 22s linear infinite; }
.ticker span { font-size: 11px; color: oklch(65% 0.005 80); letter-spacing: 0.12em; text-transform: uppercase; }
@keyframes kimTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hero-minimal-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; padding: 60px 0; }
.hero-minimal-label { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.hero-minimal h1 { font-size: 64px; line-height: 1.05; font-weight: 900; margin-bottom: 24px; }
.hero-minimal p { font-size: 18px; color: var(--ink-mid); line-height: 1.65; max-width: 520px; margin-bottom: 32px; }
.hero-minimal-sidebar { border-left: 1px solid var(--border); padding-left: 40px; }
.recent-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; font-weight: 500; }
.recent-card { display: flex; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.recent-card:last-child { border-bottom: 0; }
.recent-card img { width: 56px; height: 56px; flex-shrink: 0; border-radius: 2px; object-fit: cover; }
.recent-card-title { display: block; font-size: 13px; font-weight: 500; line-height: 1.35; margin: 0 0 4px; font-family: var(--font-display); }
.recent-card span { font-size: 11px; color: var(--ink-soft); }

.home-latest { padding-top: 72px; padding-bottom: 72px; }
.home-recipes { padding-top: 0; padding-bottom: 72px; }
.featured-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 48px; margin-bottom: 48px; }
.stack-grid { display: flex; flex-direction: column; gap: 32px; }
.category-pills { display: flex; gap: 10px; align-items: center; margin: 48px 0; flex-wrap: wrap; }
.category-pills a,
.category-pills button {
  padding: 7px 16px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 12px;
  color: var(--ink-mid);
  cursor: pointer;
}
.category-pills a:hover,
.category-pills button:hover { background: var(--green); color: white; border-color: var(--green); }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.center-action { text-align: center; margin-top: 56px; }

.newsletter-strip { background: var(--ink); color: var(--bg); padding: 60px 0; margin-top: 80px; }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter-kicker { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: oklch(60% 0.12 145); font-weight: 500; margin-bottom: 12px; }
.newsletter-strip h2 { font-size: 38px; color: var(--bg); line-height: 1.15; margin-bottom: 12px; }
.newsletter-strip p { color: oklch(68% 0.005 80); font-size: 15px; max-width: 360px; }
.newsletter-form { display: flex; max-width: 420px; }
.newsletter-form input { flex: 1; min-width: 0; padding: 12px 16px; background: oklch(20% 0.005 80); border: 1px solid oklch(28% 0.005 80); border-right: 0; color: var(--bg); outline: none; }
.newsletter-form input::placeholder { color: oklch(48% 0.005 80); }
.newsletter-form button { padding: 12px 24px; background: var(--green); color: white; border: 0; }
.newsletter-form button:hover { background: oklch(46% 0.14 145); }
.newsletter-note { font-size: 12px; color: oklch(45% 0.005 80); margin-top: 10px; }
.newsletter-status { color: var(--bg); font-size: 14px; margin: 0 0 12px; }
.newsletter-status.is-error { color: oklch(78% 0.15 45); }

.site-footer { border-top: 1px solid var(--border); padding: 56px 40px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--ink-mid); margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-col .wordmark { font-size: 22px; margin-bottom: 12px; }
.footer-brand-text { font-size: 13px; color: var(--ink-soft); line-height: 1.6; max-width: 200px; margin-top: 12px; }
.footer-bottom { max-width: var(--max-w); margin: 32px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-soft); }

.article-header { border-bottom: 1px solid var(--border); padding: 56px 0 0; }
.article-header-inner { max-width: 760px; margin: 0 auto; text-align: center; padding-bottom: 48px; }
.article-title { font-size: 52px; line-height: 1.1; margin: 18px 0 20px; font-weight: 700; }
.article-excerpt { font-size: 18px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 28px; }
.article-byline { display: flex; justify-content: center; gap: 20px; font-size: 13px; color: var(--ink-soft); align-items: center; flex-wrap: wrap; }
.author-mark { width: 30px; height: 30px; border-radius: 50%; background: var(--green-light); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--green); margin-right: 8px; }
.article-hero-img { height: 480px; overflow: hidden; background: var(--bg-alt); }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { padding-top: 64px; padding-bottom: 64px; }
.article-body-grid { display: grid; grid-template-columns: 1fr 280px; gap: 80px; align-items: start; }
.prose { max-width: 680px; }
.prose p { margin-bottom: 1.5em; font-size: 17px; line-height: 1.8; color: oklch(22% 0.005 80); }
.prose h2 { font-size: 30px; margin: 2em 0 0.6em; }
.prose h3 { font-size: 21px; margin: 1.6em 0 0.5em; }
.prose blockquote { border-left: 3px solid var(--green); padding-left: 24px; margin: 2em 0; font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink-mid); }
.prose ul, .prose ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.prose li { font-size: 17px; line-height: 1.75; color: oklch(22% 0.005 80); margin-bottom: 0.4em; }
.prose strong { color: var(--ink); font-weight: 600; }
.article-sidebar { position: sticky; top: 88px; }
.toc-card,
.guide-card { padding: 24px; border-radius: var(--radius); }
.toc-card { background: var(--bg-alt); margin-bottom: 32px; }
.toc-title,
.guide-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.toc-title { color: var(--ink-soft); }
.guide-title { color: var(--green); }
.toc-card a { display: block; font-size: 13px; color: var(--ink-mid); padding: 7px 0; border-bottom: 1px solid var(--border); line-height: 1.4; transition: color 0.2s; }
.toc-card a:hover { color: var(--green); }
.guide-card { background: var(--green-light); }
.guide-card h3 { font-size: 18px; margin-bottom: 10px; }
.guide-card p { font-size: 13px; color: var(--ink-mid); margin-bottom: 16px; line-height: 1.5; }
.related-section { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 60px 0; }

.recipe-header { padding-top: 56px; }
.recipe-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.recipe-badges { display: flex; gap: 8px; margin-bottom: 16px; }
.recipe-title { font-size: 48px; line-height: 1.1; margin-bottom: 16px; font-weight: 700; }
.recipe-description { font-size: 17px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 28px; }
.recipe-timing { display: flex; gap: 24px; margin-bottom: 28px; }
.recipe-stat { text-align: center; }
.recipe-stat-value { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.recipe-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin-top: 2px; }
.macro-bar { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.macro { flex: 1; padding: 14px 16px; text-align: center; border-right: 1px solid var(--border); }
.macro:last-child { border-right: 0; }
.macro-val { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); }
.macro-label { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.recipe-img { border-radius: var(--radius); overflow: hidden; height: 420px; }
.recipe-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.recipe-content { padding-top: 48px; padding-bottom: 64px; }
.category-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.cat-tab { padding: 11px 22px; font-size: 13px; color: var(--ink-soft); cursor: pointer; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s; background: transparent; }
.cat-tab:hover { color: var(--ink); }
.cat-tab.active,
.cat-tab[aria-selected="true"] { color: var(--green); border-bottom-color: var(--green); font-weight: 500; }
.tab-panel { display: none; max-width: 680px; }
.tab-panel.active { display: block; }
.ingredient-list { list-style: none; padding: 0; margin: 0; }
.ingredient-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--ink-mid); }
.ingredient-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 8px; }
.steps { list-style: none; counter-reset: steps; padding: 0; margin: 0; }
.steps li { counter-increment: steps; display: grid; grid-template-columns: 36px 1fr; gap: 16px; margin-bottom: 20px; align-items: start; font-size: 16px; color: var(--ink-mid); line-height: 1.7; }
.steps li::before { content: counter(steps); font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--green); line-height: 1.7; }
.recipe-notes { background: var(--green-light); padding: 28px; border-radius: var(--radius); border-left: 3px solid var(--green); }
.recipe-notes h3 { font-size: 18px; margin-bottom: 12px; }
.recipe-notes p { font-size: 15px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 0; }

.cat-header { padding: 56px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.cat-header h1 { font-size: 60px; font-weight: 700; margin-bottom: 12px; }
.cat-header p:last-child { font-size: 16px; color: var(--ink-mid); max-width: 500px; line-height: 1.6; }
.archive-grid { margin-bottom: 64px; }
.filter-card[hidden] { display: none; }

.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.about-hero h1 { font-size: 58px; line-height: 1.08; margin-bottom: 24px; font-weight: 700; }
.about-hero p { font-size: 17px; line-height: 1.75; color: var(--ink-mid); margin-bottom: 1.4em; }
.about-photo { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.values-section { margin-bottom: 80px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 40px 0 60px; background: var(--border); }
.value-card { background: var(--bg); padding: 36px; }
.value-num { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--green-light); line-height: 1; margin-bottom: 16px; }
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); margin-bottom: 80px; }
.stat-card { background: var(--bg); padding: 40px 32px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); font-weight: 500; }

.empty-state { padding: 72px 0; color: var(--ink-mid); }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; }

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .about-photo { aspect-ratio: 16 / 9; }
  .values-grid { grid-template-columns: 1fr; }
  .cat-header h1 { font-size: 42px; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-editorial-grid { grid-template-columns: 1fr; min-height: unset; }
  .hero-editorial-text { padding: 40px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .hero-editorial-text h1 { font-size: 34px; }
  .hero-meta-row { align-items: flex-start; flex-direction: column; }
  .hero-editorial-img { height: 260px; }
  .hero-magazine { height: 420px; }
  .hero-magazine h1 { font-size: 32px; }
  .hero-minimal-grid { grid-template-columns: 1fr; }
  .hero-minimal-sidebar { display: none; }
  .hero-minimal h1 { font-size: 40px; letter-spacing: -0.01em; }
  .featured-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .category-pills { gap: 8px; }
  .card-img-lg { height: 240px; }
  .card-img-md { height: 200px; }
  .article-body-grid { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .article-hero-img { height: 260px; }
  .article-title { font-size: 32px; }
  .recipe-header-grid { grid-template-columns: 1fr; }
  .recipe-img { height: 260px; order: -1; }
  .recipe-title { font-size: 32px; }
  .recipe-timing { gap: 16px; flex-wrap: wrap; }
  .macro { padding: 12px 8px; }
  .category-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .category-tabs::-webkit-scrollbar { display: none; }
  .cat-tab { white-space: nowrap; padding: 11px 16px; }
  .cat-header { padding: 36px 0 28px; }
  .cat-header h1 { font-size: 36px; }
  .about-hero { padding: 36px 0; gap: 28px; }
  .about-hero h1 { font-size: 38px; }
  .value-card { padding: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-strip { padding: 40px 0; margin-top: 48px; }
  .newsletter-form { max-width: 100%; flex-direction: column; }
  .newsletter-form input { border-right: 1px solid oklch(28% 0.005 80); border-bottom: 0; }
  .newsletter-form button { padding: 14px 24px; }
  .site-footer { padding: 40px 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-label { margin-bottom: 24px; }
  .prose p, .prose li { font-size: 16px; }
  .prose h2 { font-size: 24px; }
  .prose blockquote { font-size: 18px; }
}
