  :root {
    --ink: #1c1917;
    --ink-light: #292524;
    --cream: #faf9f7;
    --warm-white: #f5f3ef;
    --paper: #ece8e1;
    --accent: #b44a2d;
    --accent-dark: #963d24;
    --accent-subtle: rgba(180,74,45,0.06);
    --olive: #5c6247;
    --olive-light: #eaede4;
    --gold: #b8963e;
    --text: #44403c;
    --text-muted: #78716c;
    --text-faint: #a8a29e;
    --border: #e7e2db;
    --border-dark: #d6cfc5;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ===== NAVIGATION ===== */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,249,247,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
  .logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.03em;
  }
  .logo em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .nav-center {
    display: flex;
    gap: 1.75rem;
    align-items: center;
  }
  .nav-center a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-center a:hover { color: var(--ink); }
  .nav-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-faint);
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .nav-search:hover { border-color: var(--text-muted); }
  .nav-search kbd {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-faint);
    border: 1px solid var(--border);
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 0.5rem;
  }

  .demo-tab {
    padding: 0.625rem 1.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
  }
  .demo-tab:hover { color: rgba(255,255,255,0.7); }
  .demo-tab.active {
    color: #fff;
    border-bottom-color: var(--accent);
  }

  /* ===== HOMEPAGE ===== */
  .hero {
    padding: 5.5rem 2rem 3.5rem;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
  }
  .hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.25rem;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: italic;
  }
  .hero-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 2.5rem;
  }

  .hero-search {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    position: relative;
  }
  .hero-search input {
    width: 100%;
    padding: 1rem 1.375rem;
    padding-right: 120px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .hero-search input::placeholder { color: var(--text-faint); font-weight: 400; }
  .hero-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(180,74,45,0.08);
  }
  .hero-search button {
    position: absolute;
    right: 6px; top: 6px; bottom: 6px;
    padding: 0 1.25rem;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }
  .hero-search button:hover { background: var(--ink-light); }

  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
  }
  .hero-tag {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    background: transparent;
  }
  .hero-tag:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  /* Promise Strip */
  .promise-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 2rem;
  }
  .promise-inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  .promise-item {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .promise-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }

  /* Section Headers */
  .section-head {
    max-width: 1240px;
    margin: 0 auto;
    padding: 3.5rem 2rem 1.25rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .section-head h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .section-head a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .section-head a:hover { text-decoration: underline; }

  /* Recipe Grid */
  .recipe-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(28,25,23,0.07);
  }
  .card-img {
    aspect-ratio: 3/2;
    position: relative;
    overflow: hidden;
  }
  .card-img-inner {
    width: 100%; height: 100%;
    transition: transform 0.4s ease;
  }
  .card:hover .card-img-inner { transform: scale(1.03); }
  .card-label {
    position: absolute;
    top: 10px; left: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
  }
  .label-consensus {
    background: var(--ink);
    color: #fff;
  }
  .label-quick {
    background: var(--olive);
    color: #fff;
  }
  .card-body { padding: 1rem 1.125rem 0.75rem; }
  .card-meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-faint);
    font-weight: 400;
  }
  .card-meta-row .stars { color: var(--gold); letter-spacing: 1px; }
  .card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
  }
  .card-body p {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-footer {
    display: flex;
    gap: 1.25rem;
    padding: 0.625rem 1.125rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-faint);
  }
  .card-footer strong { color: var(--text); font-weight: 500; }

  /* Cuisine Grid */
  .cuisine-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .cuisine-tile {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .cuisine-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28,25,23,0.06);
  }
  .cuisine-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    opacity: 0.15;
    transition: opacity 0.3s;
  }
  .cuisine-tile:hover .cuisine-bg { opacity: 0.25; }
  .cuisine-info {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(28,25,23,0.7) 0%, transparent 70%);
  }
  .cuisine-info h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
  }
  .cuisine-info span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
  }
  .c1 { background: var(--warm-white); }
  .c2 { background: #f0ebe4; }
  .c3 { background: #e8ebe4; }
  .c4 { background: #e4e8eb; }
  .c5 { background: #ebe4e4; }
  .c6 { background: #e8e6e0; }

  /* How It Works */
  .editorial-section {
    background: var(--ink);
    color: #fff;
    padding: 5rem 2rem;
    margin-top: 1rem;
  }
  .editorial-inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .editorial-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
  }
  .editorial-inner > h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }
  .editorial-inner > h2 em { font-style: italic; }
  .editorial-inner > p {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 3.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }
  .steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .step {
    text-align: center;
    padding: 0 0.5rem;
  }
  .step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1;
  }
  .step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
  }
  .step p {
    font-size: 0.925rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
  }

  /* Divider */
  .divider {
    max-width: 1240px;
    margin: 0 auto;
    height: 1px;
    background: var(--border);
  }

  /* Footer */
  .footer {
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-faint);
    font-weight: 400;
  }
  .footer strong { font-weight: 500; color: var(--text-muted); }


  /* ========== CATEGORY PAGE ========== */
  .cat-header {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2.5rem 2rem 0;
  }
  .breadcrumb {
    font-size: 0.85rem;
    color: var(--text-faint);
    margin-bottom: 1.25rem;
    font-weight: 400;
  }
  .breadcrumb a { color: var(--text-faint); text-decoration: none; }
  .breadcrumb a:hover { color: var(--accent); }
  .breadcrumb .sep { margin: 0 0.375rem; opacity: 0.4; }
  .cat-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }
  .cat-header > p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    max-width: 640px;
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
  .filter {
    padding: 0.375rem 0.875rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter:hover { border-color: var(--text-muted); color: var(--ink); }
  .filter.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .cat-count {
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-faint);
    font-weight: 400;
  }
  .cat-count strong { font-weight: 500; color: var(--text-muted); }

  .cat-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1rem 2rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .hcard {
    display: grid;
    grid-template-columns: 150px 1fr;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  .hcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(28,25,23,0.06);
  }
  .hcard-img {
    position: relative;
  }
  .hcard-img-inner {
    width: 100%; height: 100%; min-height: 140px;
    transition: transform 0.4s ease;
  }
  .hcard:hover .hcard-img-inner { transform: scale(1.04); }
  .hcard-body {
    padding: 1rem 1.125rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hcard-body .card-meta-row { margin-bottom: 0.25rem; }
  .hcard-body h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.25rem;
  }
  .hcard-body p {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  .hcard-tags {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
  }
  .htag {
    font-size: 0.8rem;
    font-weight: 400;
    padding: 0.175rem 0.5rem;
    background: var(--warm-white);
    color: var(--text-muted);
    border-radius: 3px;
  }


  /* ========== RECIPE PAGE ========== */
  .recipe-header {
    max-width: 780px;
    margin: 0 auto;
    padding: 2.5rem 2rem 0;
  }
  .recipe-header .breadcrumb { margin-bottom: 2rem; }
  .recipe-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }
  .recipe-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
  }
  .recipe-lede {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    max-width: 620px;
  }

  .recipe-meta-bar {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
  }
  .rm {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }
  .rm-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
  }
  .rm-value {
    font-size: 0.95rem;
    font-weight: 500;
  }
  .rm-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .recipe-actions {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 2rem;
  }
  .r-action {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
  }
  .r-action:hover {
    border-color: var(--ink);
    color: var(--ink);
  }

  .recipe-hero-img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
    position: relative;
    border: 1px solid var(--border);
  }
  .recipe-hero-img-inner {
    width: 100%; height: 100%;
  }

  /* Recipe Body */
  .recipe-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Consensus Box */
  .analysis-block {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    background: #fff;
  }
  .analysis-block .ab-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }
  .analysis-block h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
  }
  .analysis-block > p {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }
  .consensus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .cons-item {
    padding: 1.25rem;
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid var(--border);
  }
  .cons-item .ci-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--olive);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  .cons-item p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text);
  }
  .cons-item .pct {
    font-weight: 600;
    color: var(--ink);
  }

  /* Debates */
  .debates-block {
    margin-bottom: 3rem;
  }
  .debates-block .ab-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }
  .debates-block h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.015em;
  }
  .debate {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  .debate-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.875rem;
  }
  .debate-bar {
    height: 6px;
    background: var(--paper);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  .debate-fill {
    height: 100%;
    background: var(--ink);
    border-radius: 100px;
    transition: width 0.6s ease;
  }
  .debate-split {
    display: flex;
    justify-content: space-between;
    font-size: 0.825rem;
    color: var(--text-faint);
    margin-bottom: 1rem;
  }
  .debate-split strong { color: var(--ink); font-weight: 600; }
  .debate-take {
    padding: 1rem 1.125rem;
    background: var(--accent-subtle);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text);
  }
  .debate-take strong {
    font-weight: 600;
    color: var(--accent-dark);
  }

  /* Recipe Card */
  .recipe-card-main {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
  }
  .rcm-flag {
    position: absolute;
    top: -1px; left: 2rem;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.375rem 0.875rem;
    border-radius: 0 0 6px 6px;
  }
  .rcm-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    margin-top: 0.5rem;
  }
  .rcm-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .recipe-cols {
    display: grid;
    grid-template-columns: 260px 1px 1fr;
    gap: 2rem;
  }
  .recipe-cols .col-divider {
    background: var(--border);
  }
  .col-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-faint);
    margin-bottom: 1rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--border);
  }

  .ing-list { list-style: none; }
  .ing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .ing-check {
    width: 16px; height: 16px;
    border: 1.5px solid var(--border-dark);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
  }
  .ing-list li.done .ing-check {
    background: var(--ink);
    border-color: var(--ink);
  }
  .ing-list li.done .ing-check::after {
    content: '✓';
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
  }
  .ing-list li.done { opacity: 0.35; text-decoration: line-through; }
  .ing-amt {
    font-weight: 500;
    min-width: 50px;
    color: var(--ink);
  }

  .step-list { list-style: none; counter-reset: steps; }
  .step-list li {
    counter-increment: steps;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
  }
  .step-list li::before {
    content: counter(steps);
    flex-shrink: 0;
    width: 26px; height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-faint);
    border: 1px solid var(--border);
    border-radius: 50%;
    margin-top: 1px;
  }
  .step-list li strong {
    font-weight: 500;
    color: var(--ink);
  }

  /* Tips */
  .tips-block {
    background: var(--olive-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
  }
  .tips-block h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--olive);
    margin-bottom: 0.875rem;
  }
  .tips-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  .tips-block li {
    font-size: 0.825rem;
    font-weight: 400;
    color: var(--text);
    padding-left: 1rem;
    position: relative;
    line-height: 1.65;
  }
  .tips-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--olive);
  }
  .tips-block li strong { font-weight: 500; color: var(--ink); }

  /* Nutrition */
  .nutr-section {
    margin-bottom: 3rem;
  }
  .nutr-section h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .nutr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  .nutr-card {
    text-align: center;
    padding: 1rem 0.75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
  }
  .nutr-val {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0.125rem;
  }
  .nutr-val span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-faint);
  }
  .nutr-label {
    font-size: 0.8rem;
    color: var(--text-faint);
    font-weight: 400;
  }

  /* Mistakes */
  .mistakes-block {
    margin-bottom: 3rem;
  }
  .mistakes-block .ab-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-faint);
    margin-bottom: 0.5rem;
  }
  .mistakes-block h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
  }
  .mistake {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .mistake:last-child { border-bottom: none; }
  .mistake-marker {
    width: 8px;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }
  .mistake-marker div {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 2px;
  }
  .mistake h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  .mistake p {
    font-size: 0.825rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .recipe-grid { grid-template-columns: repeat(2, 1fr); }
    .cuisine-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row { grid-template-columns: 1fr; }
    .consensus-grid { grid-template-columns: 1fr; }
    .recipe-cols { grid-template-columns: 1fr; }
    .recipe-cols .col-divider { display: none; }
    .nutr-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .recipe-grid { grid-template-columns: 1fr; }
    .cuisine-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: 1fr; }
    .hcard { grid-template-columns: 110px 1fr; }
    .nav-center { display: none; }
    .promise-inner { flex-direction: column; gap: 0.75rem; align-items: center; }
    .recipe-meta-bar { gap: 1.25rem; }
  }
