/* The Messy Baker — warm, domestic, flour-dusted.
   A 2012-era home food blog rebuilt: friendly slab serif, butter and cocoa,
   generous cards. Deliberately softer and rounder than the other network
   sites so the two do not read as the same template. */
:root {
  --s-paper:     #fdfbf7;
  --s-surface:   #ffffff;
  --s-surface-2: #f4ede2;
  --s-ink:       #2b2119;
  --s-ink-soft:  #4d4136;
  --s-muted:     #7d6f62;
  --s-line:      #e7dccc;
  --s-line-soft: #f1e9dc;
  --s-accent:    #8c4a2f;   /* baked crust */
  --s-accent-ink:#fff8f0;
  --s-accent-2:  #b8862b;   /* butter */
  --s-display: "Bitter", Georgia, serif;
  --s-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  --s-radius: 10px;
  --s-card-ratio: 4 / 3;
  --s-wrap: 1140px;
}
.sat-header { background: var(--s-ink); }
.sat-logo em { font-style: italic; color: var(--s-accent-2); }
.sat-hero { padding-top: 44px; }
.sat-card-img { border-radius: 10px; }
.sat-btn { border-radius: 999px; }
.sat-ingredients { border-top-width: 4px; border-radius: 10px; }

/* ── Layout identity: overlay hero, 3-up cards, meta under the title ──────
   A blog. Big single image with the headline sitting on it, roomy cards. */
.sat-hero-grid { grid-template-columns: 1fr; gap: 0; position: relative; }
.sat-hero-img { aspect-ratio: 21 / 9; border-radius: 14px; }
.sat-hero-text {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 34px 38px; color: #fff;
  background: linear-gradient(to top, rgba(43,33,25,.88), rgba(43,33,25,0));
  border-radius: 0 0 14px 14px;
}
.sat-hero-text h1, .sat-hero-text .sat-lede { color: #fff; }
.sat-hero-text .sat-eyebrow { color: #f0c96a; }
@media (max-width: 700px) {
  .sat-hero-text { position: static; background: none; padding: 20px 0 0; }
  .sat-hero-text h1, .sat-hero-text .sat-lede { color: var(--s-ink); }
  .sat-hero-text .sat-eyebrow { color: var(--s-accent-2); }
}
.sat-grid-4 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .sat-grid-4 { grid-template-columns: repeat(2, 1fr); } }
.sat-card { gap: 12px; }
.sat-card-title { order: 1; }
.sat-card-meta { order: 2; }
.sat-card-desc { order: 3; }
.sat-card-img { order: 0; }
.sat-section-head h2 { position: relative; padding-left: 18px; }
.sat-section-head h2::before {
  content: ""; position: absolute; left: 0; top: .18em; bottom: .18em;
  width: 5px; border-radius: 3px; background: var(--s-accent-2);
}
