:root {
  color-scheme: light dark;
  --seo-bg: #f7f1e8;
  --seo-surface: #fffdf8;
  --seo-text: #172033;
  --seo-muted: #5d6675;
  --seo-accent: #007060;
  --seo-line: #d9d3c9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--seo-bg);
  color: var(--seo-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; }

a { color: var(--seo-accent); text-underline-offset: 0.18em; }

.seo-shell { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

.seo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid var(--seo-line);
}

.seo-brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; font-weight: 800; text-decoration: none; }
.seo-brand img { width: 116px; height: auto; }
.seo-header nav { display: flex; gap: 18px; font-size: 0.92rem; }

.seo-hero { padding: clamp(52px, 10vw, 112px) 0 clamp(44px, 8vw, 88px); }
.seo-kicker { margin: 0 0 12px; color: var(--seo-accent); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.seo-hero h1 { max-width: 19ch; margin: 0; font-size: clamp(2.5rem, 8vw, 5.75rem); line-height: 0.95; letter-spacing: -0.045em; }
.seo-lede { max-width: 68ch; margin: 24px 0 0; color: var(--seo-muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }

.seo-section { padding: 42px 0 72px; border-top: 1px solid var(--seo-line); }
.seo-section h2 { margin: 0 0 24px; font-size: clamp(1.55rem, 4vw, 2.6rem); line-height: 1.08; }

.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 22px; }
.seo-card { display: grid; align-content: start; background: var(--seo-surface); border: 1px solid var(--seo-line); border-radius: 18px; overflow: hidden; color: inherit; text-decoration: none; }
.seo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.seo-card-copy { padding: 18px; }
.seo-card h2, .seo-card h3 { margin: 0 0 8px; font-size: 1.12rem; line-height: 1.25; }
.seo-card p { margin: 0; color: var(--seo-muted); font-size: 0.93rem; }

.seo-recipe { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr); gap: clamp(28px, 7vw, 80px); padding-bottom: 88px; }
.seo-recipe-media { margin: 0 0 34px; }
.seo-recipe-media img { width: 100%; max-height: 680px; object-fit: cover; border-radius: 22px; }
.seo-recipe h1 { margin: 0; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 0.95; letter-spacing: -0.04em; }
.seo-recipe h2 { margin-top: 42px; font-size: 1.5rem; }
.seo-recipe li + li { margin-top: 10px; }
.seo-recipe ol { padding-left: 1.3rem; }
.seo-aside { align-self: start; position: sticky; top: 24px; padding: 24px; background: var(--seo-surface); border: 1px solid var(--seo-line); border-radius: 18px; }
.seo-aside h2 { margin-top: 0; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.seo-tags li { padding: 5px 10px; border: 1px solid var(--seo-line); border-radius: 999px; font-size: 0.84rem; }

.seo-breadcrumbs { padding: 22px 0; color: var(--seo-muted); font-size: 0.9rem; }
.seo-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.seo-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--seo-line); }

.seo-cta { display: inline-flex; margin-top: 26px; padding: 12px 18px; border-radius: 999px; background: var(--seo-accent); color: #f8fffd; font-weight: 750; text-decoration: none; }
.seo-legal { max-width: 74ch; padding: 58px 0 90px; }
.seo-legal h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1; }
.seo-legal h2 { margin-top: 2.2em; }

.seo-footer { padding: 34px 0 52px; border-top: 1px solid var(--seo-line); color: var(--seo-muted); font-size: 0.88rem; }
.seo-footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 14px; }

@media (max-width: 760px) {
  .seo-header nav { display: none; }
  .seo-recipe { grid-template-columns: 1fr; }
  .seo-aside { position: static; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --seo-bg: #1e1e1e;
    --seo-surface: #262827;
    --seo-text: #f2f4f3;
    --seo-muted: #b4bab7;
    --seo-accent: #58c8b9;
    --seo-line: #414542;
  }
}
