:root {
  color-scheme: light;
  --ink: #26221d;
  --muted: #706960;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #ded8cd;
  --sage: #5f7a63;
  --terracotta: #b86b4b;
  --oat: #ebe2d4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  font-size: 1.1rem;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a,
.recipe-card a,
.gear-list a,
.button,
.backlink {
  text-decoration: none;
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(235, 226, 212, 0.72)),
    url("/texture.svg");
}

.hero h1,
.article h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.eyebrow {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--sage);
  color: white;
  font-weight: 700;
}

.button.muted {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(68, 55, 38, 0.08);
}

.hero-panel p,
.hero-panel span {
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
  margin: 12px 0;
  font-weight: 500;
}

.band,
.split,
.article {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 4vw, 56px);
}

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

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

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

.recipe-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.recipe-card span {
  color: var(--terracotta);
  font-weight: 800;
  font-size: 0.78rem;
}

.recipe-card h3 {
  margin: 14px 0 6px;
  font-size: 1.4rem;
}

.recipe-card p {
  color: var(--muted);
}

.recipe-card a {
  color: var(--sage);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 40px;
  background: var(--oat);
}

.split p {
  max-width: 680px;
  color: var(--muted);
}

.category-list {
  columns: 2;
  margin: 0;
  padding-left: 20px;
}

.category-list li {
  break-inside: avoid;
  margin-bottom: 12px;
  font-weight: 700;
}

.gear-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.gear-list a {
  min-height: 92px;
  display: flex;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
  font-weight: 800;
  color: var(--sage);
}

.article {
  max-width: 860px;
  margin: 0 auto;
}

.article h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.subtitle {
  color: var(--terracotta);
  font-weight: 800;
}

.footer {
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .grid {
    grid-template-columns: 1fr;
  }

  .gear-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.86rem;
  }

  .gear-list {
    grid-template-columns: 1fr;
  }
}

.thermomix-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f0f7f0;
  border-left: 3px solid #4a7c59;
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  margin: 1.2rem 0;
}

.thermomix-badge strong {
  font-size: 0.95rem;
  color: #2d5a3d;
}

.thermomix-badge span {
  font-size: 0.85rem;
  color: #555;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a7c59;
  margin-bottom: 6px;
}

.section-desc {
  color: #666;
  font-size: 0.95rem;
  max-width: 60ch;
  margin: 0.5rem auto 0;
}

.family-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff8f0;
  border-left: 3px solid #e8843a;
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  margin: 1.2rem 0;
}

.family-badge strong {
  font-size: 0.95rem;
  color: #b85c1a;
}

.family-badge span {
  font-size: 0.85rem;
  color: #555;
}
