/* Feedee blog — shared chrome + editorial article styles */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: #FAF8F5; color: var(--fg-primary); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.display { font-family: var(--font-display); font-weight: 400; line-height: 1.04; letter-spacing: -0.02em; font-variation-settings: "opsz" 144, "SOFT" 60; margin: 0; }
.italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 90; }
.eyebrow { font-family: var(--font-body); font-size: 13px; font-weight: var(--weight-semibold); letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-secondary); margin: 0; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(221,199,236,0.82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__mark { height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { font-family: var(--font-body); font-size: 15px; font-weight: var(--weight-medium); color: var(--fg-secondary); transition: color var(--dur-tap) var(--ease-feedee); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--fg-primary); }

/* ---------- Lavender header band ---------- */
.band { background: var(--color-lavender); padding: 72px 0 84px; }
.band--center { text-align: center; }
.band .eyebrow { margin-bottom: 20px; }
.band__title { font-size: clamp(38px, 5.4vw, 64px); color: var(--fg-primary); }
.band__sub { font-family: var(--font-body); font-size: 18px; line-height: 1.6; color: var(--fg-secondary); margin: 22px auto 0; max-width: 56ch; }

/* ---------- Blog index cards ---------- */
.listing { padding: 72px 0 104px; }
.listing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post { background: var(--color-white); border-radius: var(--radius-card); box-shadow: var(--shadow-resting); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur-enter) var(--ease-feedee), box-shadow var(--dur-enter) var(--ease-feedee); }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-floating); }
.post__thumb { aspect-ratio: 16 / 10; background: var(--color-lavender); display: flex; align-items: center; justify-content: center; }
.post__thumb img { width: 74px; height: 74px; }
.post__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post__title { font-family: var(--font-display); font-size: 24px; font-weight: 400; line-height: 1.14; letter-spacing: -0.012em; margin: 0 0 12px; color: var(--fg-primary); }
.post__desc { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--fg-secondary); margin: 0 0 20px; }
.post__more { margin-top: auto; font-family: var(--font-body); font-size: 14.5px; font-weight: var(--weight-semibold); color: var(--accent); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--dur-tap) var(--ease-feedee); }
.post:hover .post__more { gap: 13px; }
.post__more svg { width: 15px; height: 15px; }

/* ---------- Article body ---------- */
.article-page { padding: 64px 0 88px; }
.article-page__col { max-width: 700px; margin: 0 auto; }
.article-page .lede { font-family: var(--font-body); font-size: 19.5px; line-height: 1.62; color: var(--fg-secondary); margin: 0 0 34px; }
.article-page h2 { font-family: var(--font-display); font-weight: 400; font-size: 30px; letter-spacing: -0.015em; line-height: 1.18; color: var(--fg-primary); margin: 54px 0 16px; }
.article-page h3 { font-family: var(--font-body); font-weight: var(--weight-semibold); font-size: 18px; line-height: 1.35; color: var(--fg-primary); margin: 34px 0 10px; }
.article-page p { font-family: var(--font-body); font-size: 17px; line-height: 1.72; color: var(--fg-primary); margin: 0 0 18px; }
.article-page ul, .article-page ol { margin: 0 0 18px; padding: 0; list-style: none; counter-reset: step; }
.article-page li { font-family: var(--font-body); font-size: 17px; line-height: 1.68; color: var(--fg-primary); margin: 0 0 12px; padding-left: 28px; position: relative; }
.article-page ul li::before { content: ""; position: absolute; left: 5px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.article-page ol li { counter-increment: step; }
.article-page ol li::before { content: counter(step); position: absolute; left: 0; top: 0; font-family: var(--font-body); font-size: 13px; font-weight: var(--weight-semibold); color: var(--accent); }
.article-page li strong { font-weight: var(--weight-semibold); }
.article-page a.inline { color: var(--accent); font-weight: var(--weight-medium); }
.article-page a.inline:hover { text-decoration: underline; }
.callout { font-family: var(--font-body); font-size: 16px; line-height: 1.62; color: var(--fg-secondary); margin: 0 0 22px; padding: 20px 24px; background: var(--color-white); border-radius: var(--radius-card); box-shadow: var(--shadow-resting); }
.meta-line { font-family: var(--font-body); font-size: 14px; color: var(--fg-secondary); margin: 22px 0 0; display: flex; align-items: center; justify-content: center; gap: 10px; }
.meta-line svg { width: 15px; height: 15px; }
.callout__label { display: block; font-family: var(--font-body); font-size: 13px; font-weight: var(--weight-semibold); letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.callout p { font-size: 16px !important; line-height: 1.62 !important; color: var(--fg-secondary) !important; margin: 0 !important; }
.warning { margin: 0 0 22px; padding: 20px 24px; background: #FFF4EE; border-radius: var(--radius-card); box-shadow: var(--shadow-resting); }
.warning p { font-family: var(--font-body); font-size: 16px !important; line-height: 1.62 !important; color: var(--fg-primary) !important; margin: 0 !important; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 26px; }
.chip { font-family: var(--font-body); font-size: 14.5px; font-weight: var(--weight-medium); color: var(--color-plum); background: var(--color-white); border-radius: var(--radius-chip); padding: 8px 15px; box-shadow: var(--shadow-resting); }
.article-page .keep-reading { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--fg-secondary); margin: 34px 0 0; }
.article-page .keep-reading strong { color: var(--fg-primary); font-weight: var(--weight-semibold); }
.article-page .disclaimer { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: var(--fg-tertiary); border-top: 1px solid rgba(74,63,85,0.12); padding-top: 24px; margin: 46px 0 0; }
.subhead-group h3:first-child { margin-top: 20px; }

/* ---------- Recipe additions ---------- */
.facts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 26px 0 0; }
.fact { font-family: var(--font-body); font-size: 14px; font-weight: var(--weight-medium); color: var(--color-plum); background: var(--color-white); border-radius: var(--radius-chip); padding: 8px 15px; box-shadow: var(--shadow-resting); }
.hero-slot { max-width: 700px; margin: 0 auto 40px; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-resting); }
.hero-slot image-slot { display: block; width: 100%; aspect-ratio: 3 / 2; }
.recipe-card { background: var(--color-white); border-radius: var(--radius-card); box-shadow: var(--shadow-resting); padding: 26px 28px; margin: 0 0 24px; }
.recipe-card h2 { margin: 0 0 14px !important; font-size: 25px !important; }
.recipe-card h3 { margin: 0 0 8px !important; }
.recipe-card > *:last-child { margin-bottom: 0 !important; }
.recipe-card .yield { font-family: var(--font-body); font-size: 14.5px; color: var(--fg-tertiary); margin: 0 !important; }
.stage-label { display: block; font-family: var(--font-body); font-size: 12px; font-weight: var(--weight-semibold); letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin: 0 0 26px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; font-family: var(--font-body); font-size: 17px; line-height: 1.68; color: var(--fg-primary); }
.why-item .dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: 11px; }
.why-item strong { font-weight: var(--weight-semibold); }
.section-head { margin: 0 0 32px; }
.section-head__title { font-family: var(--font-display); font-weight: 400; font-size: 34px; letter-spacing: -0.015em; color: var(--fg-primary); margin: 0 0 8px; }
.section-head__sub { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--fg-secondary); margin: 0; max-width: 52ch; }
.listing__group + .listing__group { margin-top: 72px; }

/* ---------- CTA ---------- */
.cta { background: var(--color-lavender); padding: 88px 0 96px; text-align: center; }
.cta__title { font-size: clamp(30px, 4.2vw, 46px); color: var(--fg-primary); max-width: 22ch; margin: 0 auto 18px; }
.cta__text { font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: var(--fg-secondary); max-width: 48ch; margin: 0 auto 34px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--color-white); font-family: var(--font-body); font-size: 16px; font-weight: var(--weight-semibold); padding: 16px 30px; border-radius: var(--radius-button); box-shadow: var(--shadow-resting); transition: transform var(--dur-tap) var(--ease-feedee), filter var(--dur-tap) var(--ease-feedee); }
.btn-primary:hover { filter: brightness(0.94); }
.btn-primary:active { transform: scale(0.98); }

/* ---------- Related ---------- */
.related { border-top: 1px solid rgba(74,63,85,0.1); margin-top: 60px; padding-top: 34px; }
.related__label { font-family: var(--font-body); font-size: 12px; font-weight: var(--weight-semibold); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-tertiary); margin: 0 0 18px; }
.related__list { display: flex; flex-direction: column; gap: 14px; }
.related__item { font-family: var(--font-display); font-size: 20px; line-height: 1.24; color: var(--fg-primary); display: flex; align-items: baseline; gap: 10px; }
.related__item:hover { color: var(--accent); }
.related__item span { font-family: var(--font-body); font-size: 15px; color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: #FAF8F5; padding: 56px 0 64px; border-top: 1px solid rgba(74,63,85,0.08); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__mark { height: 26px; width: auto; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__link { font-family: var(--font-body); font-size: 14px; color: var(--fg-secondary); }
.footer__link:hover { color: var(--fg-primary); }
.footer__legal { font-family: var(--font-body); font-size: 12px; color: var(--fg-tertiary); }

@media (max-width: 900px) { .listing__grid { grid-template-columns: 1fr; gap: 22px; max-width: 460px; margin: 0 auto; } }
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .band { padding: 56px 0 64px; }
  .listing, .article-page { padding: 52px 0 72px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

