:root {
  color-scheme: light;
  --ink: #26221d;
  --muted: #706960;
  --paper: #fdf7e4;
  --surface: #ffffff;
  --line: #e2d9cc;
  --sage: #5f7a63;
  --terracotta: #b86b4b;
  --oat: #fbf1b8;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-fg-body: #3a3218;
  --color-fg-primary: #1a1608;
  --color-fg-secondary: #7a6e58;
  --color-fg-on-accent: #3a3506;
  --color-link: #6c6606;
  --color-link-hover: #4f4a04;
  --color-bg-surface: #ffffff;
  --color-bg-subtle: #fbf1b8;
  --color-accent: #f7de5a;
  --color-accent-text: #6c6606;
  --color-accent-hover: #e8c73a;
  --grape: #f0a79c;
  --grape-deep: #a8453b;
  --grape-soft: #fbdfd9;
  --radius-pill: 999px;
  --text-body: 1rem;
  --text-body-s: 0.875rem;
  --text-body-l: 1.125rem;
  --text-caption: 0.75rem;
  --leading-ui: 1.5;
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --control-h-lg: 48px;
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fdf7e4;
  background-image:
    repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 33px, rgba(108,102,6,0.04) 33px, rgba(108,102,6,0.04) 34px),
    radial-gradient(circle at 15% 8%, rgba(247,222,90,0.18), transparent 52%),
    radial-gradient(circle at 88% 72%, rgba(247,222,90,0.12), transparent 58%);
  color: var(--color-fg-body);
  font-family: var(--font-sans);
  line-height: var(--leading-ui);
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { color: var(--color-fg-primary); margin: 0; }
p { margin: 0; }

/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 247, 228, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(108, 102, 6, 0.1);
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 2px;
  margin-left: auto;
  align-items: center;
}

nav a {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: var(--color-fg-body);
  font-size: var(--text-body-s);
  font-weight: 600;
  transition: background 140ms;
}

nav a:hover {
  background: var(--color-bg-subtle);
  color: var(--color-fg-primary);
}

/* ── Language switcher ── */
.lang-sw {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.lang-btn {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-fg-secondary);
  transition: background 140ms, color 140ms;
}

.lang-btn.active {
  background: var(--color-bg-surface);
  color: var(--color-fg-primary);
}

.lang-btn:hover:not(.active) {
  color: var(--color-fg-primary);
}

/* ── Buttons ── */
.psh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-body-s);
  text-decoration: none;
  border: 1.5px solid rgba(108, 102, 6, 0.2);
  background: var(--color-bg-surface);
  color: var(--color-fg-primary);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.psh-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.psh-btn--primary {
  background: var(--color-accent);
  color: var(--color-fg-on-accent);
  border-color: transparent;
}

.psh-btn--lg {
  height: var(--control-h-lg);
  padding: 0 26px;
  font-size: var(--text-body);
}

/* ── Labels / utility ── */
.sk-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-fg-secondary);
}

.sk-label.grape, .grape { color: var(--grape-deep); }

/* ── Main wrapper ── */
.sk-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

/* ── Hero ── */
.sk-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0 80px;
}

.sk-hero-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sk-hero-h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 800;
}

.sk-hero-p {
  font-size: var(--text-body-l);
  line-height: 1.6;
  max-width: 34em;
  color: var(--color-fg-secondary);
}

.sk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sk-hero-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  overflow: visible;
}

.sk-hero-img-main {
  grid-column: 1 / 3;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  background: var(--color-bg-subtle);
}

.sk-hero-img-sq {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background: var(--color-bg-subtle);
}

/* ── About section ── */
.sk-about {
  background: var(--color-bg-surface);
  border-radius: 32px;
  padding: 44px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.sk-about-headline {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 8px 0;
  color: var(--color-fg-primary);
}

.sk-about-desc {
  line-height: 1.6;
  color: var(--color-fg-secondary);
}

.sk-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sk-feature-pill {
  background: var(--color-bg-subtle);
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--color-fg-primary);
  font-size: var(--text-body-s);
}

/* ── Recipe section ── */
.sk-recipes { padding: 0 0 80px; }

.sk-section-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 44em;
  margin-bottom: 28px;
}

.sk-section-h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.sk-section-desc {
  line-height: 1.6;
  color: var(--color-fg-secondary);
  font-size: var(--text-body-s);
}

/* Filter chips */
.sk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}

.sk-chip {
  height: var(--control-h-lg);
  padding: 0 22px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--text-body-s);
  font-weight: 700;
  cursor: pointer;
  background: var(--color-bg-surface);
  color: var(--color-fg-body);
  transition: transform 160ms var(--ease-out);
}

.sk-chip:hover { transform: translateY(-2px); }

.sk-chip.active {
  background: var(--color-accent);
  color: var(--color-fg-on-accent);
}

/* Recipe groups */
.sk-groups {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sk-group { scroll-margin-top: 96px; }

.sk-group-header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.sk-group-title {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.sk-group-note {
  font-size: var(--text-body-s);
  color: var(--color-fg-secondary);
  padding-bottom: 4px;
}

.sk-recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 20px;
}

/* Recipe cards */
.sk-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-surface);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.sk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.sk-card-img-wrap {
  position: relative;
}

.sk-card-img-bg {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-subtle);
}

.sk-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sk-card-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--color-bg-surface);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: var(--text-caption);
  font-weight: 700;
  color: var(--grape-deep);
}

.sk-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sk-card-title {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  font-weight: 700;
  color: var(--color-fg-primary);
}

.sk-card-desc {
  font-size: var(--text-body-s);
  line-height: 1.55;
  color: var(--color-fg-secondary);
  flex: 1;
}

.sk-card-cta {
  margin-top: 10px;
  font-size: var(--text-body-s);
  font-weight: 700;
  color: var(--color-accent-text);
}

/* ── Meal plans ── */
.sk-plans { padding: 0 0 80px; }

.sk-plans-inner {
  background: var(--grape-soft);
  border-radius: 32px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sk-plans-h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 8px 0;
}

.sk-plans-desc {
  line-height: 1.6;
  color: #7a5050;
  font-size: var(--text-body-s);
}

.sk-plan-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sk-plan-pill {
  background: var(--color-bg-surface);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  font-size: var(--text-body-s);
  font-weight: 600;
  color: var(--color-fg-primary);
}

/* ── Gear ── */
.sk-gear { padding: 0 0 40px; }

.sk-gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.sk-gear-item {
  background: var(--color-bg-surface);
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--color-fg-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: var(--text-body-s);
  transition: box-shadow 160ms var(--ease-out);
}

.sk-gear-item:hover { box-shadow: var(--shadow-md); }
.sk-gear-item span { color: var(--color-accent-text); }

.sk-affiliate-note {
  margin-top: 16px;
  font-size: var(--text-caption);
  color: var(--color-fg-secondary);
}

/* ── Footer ── */
.sk-footer {
  background: var(--color-bg-subtle);
  margin-top: 24px;
}

.sk-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.sk-footer-logo { height: 24px; width: auto; display: block; }

.sk-footer-desc {
  font-size: var(--text-body-s);
  color: var(--color-fg-secondary);
  max-width: 38em;
}

/* ── Recipe pages (keep all existing styles) ── */
.backlink {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--color-link);
  font-size: var(--text-body-s);
  font-weight: 600;
}

.article {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 56px);
}

.article h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 800;
  margin-top: 12px;
}

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

.subtitle {
  color: var(--terracotta);
  font-weight: 800;
  margin-top: 4px;
  display: block;
}

.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1.5rem 0;
  display: block;
}

.article-lede {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 12px;
  line-height: 1.6;
}

.recipe-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 1.5rem 0 2rem;
}

.recipe-meta span {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--color-bg-surface);
  padding: 14px;
  color: var(--muted);
}

.recipe-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.recipe-section { margin-top: 2.2rem; }

.recipe-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ingredient-list, .method-list {
  padding-left: 1.3rem;
  color: var(--ink);
}

.ingredient-list li, .method-list li { margin-bottom: 0.65rem; }

.method-list li::marker { color: var(--sage); font-weight: 800; }

.cook-note {
  border-left: 3px solid var(--terracotta);
  padding: 10px 0 10px 16px;
  color: var(--muted);
  margin: 2rem 0;
}

.cook-note strong { color: var(--ink); }

.ingredient-shop {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.ingredient-shop span { display: block; margin-bottom: 0.4rem; }

.ingredient-shop div { display: flex; flex-wrap: wrap; gap: 6px 10px; }

.ingredient-shop a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.recipe-tools {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fafaf8;
  border-radius: 12px;
}

.recipe-tools > span {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.recipe-tools div { display: block; }

.product-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: white;
  border: 1px solid #ede8e0;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s;
}

.product-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.product-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.product-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-card-info strong {
  font-size: 0.95rem;
  color: #1a1a1a;
}

.product-card-info span {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.4;
}

.product-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
  margin-bottom: 2px;
}

.product-img-placeholder {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  background: #f5f3ef;
  border-radius: 4px;
}

.thermomix-badge, .family-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  margin: 1.2rem 0;
}

.thermomix-badge { background: #f0f7f0; border-left: 3px solid #4a7c59; }
.thermomix-badge strong { font-size: 0.95rem; color: #2d5a3d; }
.family-badge { background: #fff8f0; border-left: 3px solid #e8843a; }
.family-badge strong { font-size: 0.95rem; color: #b85c1a; }
.thermomix-badge span, .family-badge span { font-size: 0.85rem; color: #555; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sk-hero { grid-template-columns: 1fr; gap: 36px; padding: 40px 0 60px; }
  .sk-about { grid-template-columns: 1fr; gap: 28px; }
  .sk-plans-inner { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
}

@media (max-width: 720px) {
  .topbar-inner { padding: 10px 16px 0; flex-wrap: wrap; gap: 0; }
  .brand { padding-bottom: 10px; }
  .lang-sw { margin-left: auto; padding-bottom: 10px; flex-shrink: 0; }
  nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(108,102,6,0.08);
    padding-top: 6px;
  }
  nav::-webkit-scrollbar { display: none; }
  .sk-main { padding: 0 20px 48px; }
  .sk-about { padding: 28px 24px; }
  .sk-features { grid-template-columns: 1fr; }
  .sk-recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .sk-group-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .sk-plans-inner { padding: 28px 24px; }
  .recipe-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .topbar-inner { padding: 10px 16px; }
  nav a { padding: 8px 11px; font-size: 0.8rem; }
  .sk-hero-h1 { font-size: clamp(28px, 8.5vw, 38px); }
  .sk-recipe-grid { grid-template-columns: 1fr; }
  .sk-chips { gap: 6px; }
  .sk-chip { height: 42px; padding: 0 16px; }
  .sk-about { padding: 22px 20px; }
  .sk-plans-inner { padding: 24px 20px; }
  .article { padding: 24px 16px; }
  .recipe-meta { grid-template-columns: 1fr; }
}
