  :root {
    --bg: #f5f6ef;
    --surface: #ffffff;
    --surface-2: #eef0e4;
    --ink: #202417;
    --ink-soft: #5b6353;
    --ink-faint: #8b917f;
    --border: #dfe1d1;
    --accent: #3c5a37;
    --accent-ink: #f5f6ef;
    --accent-soft: #e2e9dd;
    --accent-2: #b8801f;
    --accent-2-soft: #f3e3c4;
    --good: #2f7d4f;
    --good-soft: #dcefdf;
    --warn: #b8801f;
    --warn-soft: #f3e3c4;
    --bad: #a15a3a;
    --bad-soft: #f1e1d6;
    --shadow: 0 1px 2px rgba(32,36,23,0.06), 0 6px 20px -8px rgba(32,36,23,0.16);
    --radius: 10px;
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --bg: #191d15;
      --surface: #22271b;
      --surface-2: #2a3021;
      --ink: #eceee2;
      --ink-soft: #aab19b;
      --ink-faint: #7c8370;
      --border: #363d2a;
      --accent: #86bb72;
      --accent-ink: #14180f;
      --accent-soft: #2b3722;
      --accent-2: #e4b25c;
      --accent-2-soft: #3a3220;
      --good: #7dc98f;
      --good-soft: #223a29;
      --warn: #e4b25c;
      --warn-soft: #3a3220;
      --bad: #dd9573;
      --bad-soft: #3a2a20;
      --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 10px 28px -10px rgba(0,0,0,0.55);
    }
  }
  :root[data-theme="dark"] {
    --bg: #191d15;
    --surface: #22271b;
    --surface-2: #2a3021;
    --ink: #eceee2;
    --ink-soft: #aab19b;
    --ink-faint: #7c8370;
    --border: #363d2a;
    --accent: #86bb72;
    --accent-ink: #14180f;
    --accent-soft: #2b3722;
    --accent-2: #e4b25c;
    --accent-2-soft: #3a3220;
    --good: #7dc98f;
    --good-soft: #223a29;
    --warn: #e4b25c;
    --warn-soft: #3a3220;
    --bad: #dd9573;
    --bad-soft: #3a2a20;
    --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 10px 28px -10px rgba(0,0,0,0.55);
  }

  * { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, .display {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    text-wrap: balance;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  a { color: inherit; }
  button { font-family: inherit; }

  .wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px 80px; }

  header.top {
    padding: 40px 20px 28px;
    border-bottom: 1px solid var(--border);
    background:
      radial-gradient(1200px 200px at 15% 0%, var(--accent-soft) 0%, transparent 60%),
      var(--bg);
  }
  header.top .inner { max-width: 1040px; margin: 0 auto; }
  .eyebrow {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 10px;
  }
  h1.title {
    font-size: clamp(30px, 4.4vw, 42px);
    margin: 0 0 10px;
    color: var(--ink);
  }
  h1.title em { color: var(--accent); font-style: italic; }
  .lede {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 62ch;
    margin: 0;
  }

  /* ---- summary stat row ---- */
  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
  }
  .stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    box-shadow: var(--shadow);
  }
  .stat .n {
    font-family: "Fraunces", serif;
    font-size: 22px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--accent);
  }
  .stat .l { font-size: 13px; color: var(--ink-soft); }

  /* ---- ingredient picker ---- */
  section.picker { padding-top: 30px; }
  .picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .picker-head h2 { font-size: 21px; margin: 0; }
  .picker-tools { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

  .search {
    position: relative;
  }
  .search input {
    width: 240px;
    max-width: 60vw;
    padding: 8px 12px 8px 32px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    font-size: 14px;
  }
  .search input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
  .search svg {
    position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px; color: var(--ink-faint); pointer-events: none;
  }

  .btn {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
  }
  .btn:hover { border-color: var(--accent); color: var(--accent); }
  .btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
  .btn.primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
  .btn.primary:hover { filter: brightness(1.06); color: var(--accent-ink); }

  .category {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .category > summary {
    list-style: none;
    cursor: pointer;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 600;
    font-size: 14.5px;
    user-select: none;
  }
  .category > summary::-webkit-details-marker { display: none; }
  .category > summary .catmeta {
    display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-weight: 500; font-size: 13px;
  }
  .category > summary .chev {
    width: 9px; height: 9px; border-right: 2px solid var(--ink-faint); border-bottom: 2px solid var(--ink-faint);
    transform: rotate(-45deg); transition: transform .15s ease; flex: none;
  }
  .category[open] > summary .chev { transform: rotate(45deg); }
  .catcount {
    background: var(--surface-2); color: var(--ink-soft); border-radius: 999px; padding: 1px 9px; font-size: 12px;
    font-variant-numeric: tabular-nums;
  }
  .tiles {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 4px 16px 16px;
  }
  .tile {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .12s ease, border-color .12s ease, color .12s ease;
  }
  .tile .cnt { color: var(--ink-faint); font-size: 11.5px; font-variant-numeric: tabular-nums; }
  .tile:hover { border-color: var(--accent); }
  .tile.on {
    background: var(--accent); border-color: var(--accent); color: var(--accent-ink);
  }
  .tile.on .cnt { color: var(--accent-ink); opacity: .75; }
  .tile:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
  .tile.hidden { display: none; }

  /* ---- results ---- */
  section.results { padding-top: 38px; }
  .results-head {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .results-head h2 { font-size: 21px; margin: 0; }
  .results-head .sub { font-size: 13.5px; color: var(--ink-soft); }

  .tag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2px 0 16px;
  }
  .tag-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 13px 6px 10px;
    cursor: pointer;
  }
  .tag-filter-btn:hover { border-color: var(--ink-faint); }
  .tag-filter-btn .tfb-icon { display: flex; align-items: center; }
  .tag-filter-btn .tfb-icon svg { width: 14px; height: 14px; display: block; }
  .tag-filter-btn.on.tag-filter-tried { background: #0ead88; color: #ffffff; border-color: transparent; }
  .tag-filter-btn.on.tag-filter-kids { background: #0a16d0; color: #ffffff; border-color: transparent; }
  .tag-filter-btn.on.tag-filter-top { background: #d00a0a; color: #ffffff; border-color: transparent; }
  .tag-filter-btn.on.tag-filter-meh { background: var(--surface-2); color: #000000; border-color: #000000; }
  .tag-filter-btn.on.tag-filter-want { background: #2b2b2b; color: #ffffff; border-color: transparent; }

  .tried-by-user { margin: 2px 0 18px; }
  .tbu-title {
    font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em;
    color: var(--ink-faint); font-weight: 700; margin: 0 0 8px;
  }
  .tbu-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .tbu-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-soft);
    background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
    padding: 6px 13px; cursor: pointer;
  }
  .tbu-btn:hover { border-color: var(--accent); }
  .tbu-btn .tbu-count { color: var(--ink-faint); font-size: 11.5px; font-variant-numeric: tabular-nums; }
  .tbu-btn.on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
  .tbu-btn.on .tbu-count { color: var(--accent-ink); opacity: .8; }

  .recipe {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
  }
  .recipe.chosen { border-color: var(--accent); box-shadow: var(--shadow), 0 0 0 1px var(--accent); }
  .rsel-wrap {
    flex: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 15px 6px 15px 18px;
  }
  .rsel {
    width: 18px; height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    margin: 0;
  }
  .rtags {
    display: flex;
    flex-direction: row;
    gap: 5px;
  }
  .rtag {
    width: 23px; height: 23px;
    border-radius: 7px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--ink-faint);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: .6;
    transition: transform .12s ease;
  }
  .rtag svg { width: 13px; height: 13px; display: block; }
  .rtag:hover { opacity: .9; }
  .rtag.on {
    opacity: 1;
    border-color: transparent;
    transform: scale(1.14);
    box-shadow: 0 1px 4px rgba(0,0,0,.28);
  }
  .rtag-tried.on { background: #0ead88; color: #ffffff; }
  .rtag-kids.on { background: #0a16d0; color: #ffffff; }
  .rtag-top.on { background: #d00a0a; color: #ffffff; }
  .rtag-meh.on { background: var(--surface-2); color: #000000; }
  .rtag-want.on { background: #2b2b2b; color: #ffffff; }
  .recipe > .rdet { flex: 1 1 auto; min-width: 0; }
  .recipe > .rdet > summary {
    list-style: none;
    cursor: pointer;
    padding: 15px 18px 15px 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    user-select: none;
  }
  .recipe > .rdet > summary::-webkit-details-marker { display: none; }
  .recipe .rmain { flex: 1 1 auto; min-width: 0; }
  .recipe h3 {
    margin: 0 0 3px; font-size: 17.5px; font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .recipe .ryield {
    font-size: 12.5px; color: var(--ink-faint);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .badge {
    flex: none;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }
  .badge.good { background: var(--good-soft); color: var(--good); }
  .badge.warn { background: var(--warn-soft); color: var(--warn); }
  .badge.bad { background: var(--bad-soft); color: var(--bad); }
  @media (max-width: 520px) {
    .recipe > .rdet > summary { flex-wrap: wrap; row-gap: 6px; }
    .recipe .rmain { flex: 1 1 100%; order: 1; }
    .recipe h3 { white-space: normal; overflow: visible; text-overflow: clip; }
    .badge { order: 2; }
    .recipe .chev { order: 3; margin-left: auto; }
  }
  .recipe .chev {
    width: 9px; height: 9px; border-right: 2px solid var(--ink-faint); border-bottom: 2px solid var(--ink-faint);
    transform: rotate(-45deg); transition: transform .15s ease; flex: none; margin-left: 2px;
  }
  .recipe .rdet[open] > summary .chev { transform: rotate(45deg); }

  .missing-row {
    padding: 0 18px 14px;
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: -4px;
  }
  .chip-missing {
    font-size: 12px; padding: 3px 10px; border-radius: 999px;
    background: var(--bad-soft); color: var(--bad); border: 1px solid transparent;
  }
  .chip-missing.warn { background: var(--warn-soft); color: var(--warn); }

  .selected-chips {
    display: none;
    flex-wrap: wrap;
    gap: 7px;
    padding: 14px 0 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
  }
  .selected-chips.show { display: flex; }
  .selected-chips .schip-label {
    flex: none;
    font-size: 12.5px;
    color: var(--ink-faint);
    font-weight: 600;
    align-self: center;
    margin-right: 2px;
  }
  .schip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 8px 5px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    border: none;
    cursor: pointer;
    line-height: 1.3;
  }
  .schip .schip-x {
    display: inline-flex; align-items: center; justify-content: center;
    width: 15px; height: 15px; flex: none;
    font-size: 14px; line-height: 1; opacity: .55;
  }
  .schip:hover .schip-x { opacity: 1; }
  .chip-missing.extra {
    border: 1px dashed currentColor;
    background: transparent;
    max-width: 100%;
  }
  .si-tag {
    font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
    color: var(--ink-faint); border: 1px solid var(--border); border-radius: 999px;
    padding: 1px 7px; margin-left: 6px; white-space: nowrap;
  }

  .recipe-body {
    padding: 4px 18px 22px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  @media (min-width: 640px) {
    .recipe-body { grid-template-columns: 1fr 1.3fr; padding-top: 18px; }
  }
  .recipe-body h4 {
    font-family: "Fraunces", serif; font-weight: 600; font-size: 14px; margin: 14px 0 8px;
    color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; font-size: 12px;
  }
  .recipe-body ul { margin: 0; padding-left: 18px; }
  .recipe-body ul li { margin-bottom: 5px; font-size: 14.5px; }
  .recipe-body ul li.have { color: var(--ink); }
  .recipe-body ul li.miss { color: var(--bad); }
  .recipe-body ol { margin: 0; padding-left: 20px; }
  .recipe-body ol li { margin-bottom: 10px; font-size: 14.5px; line-height: 1.55; }
  .recipe-note {
    margin-top: 12px; font-size: 13px; color: var(--ink-soft); font-style: italic;
    border-left: 2px solid var(--border); padding-left: 10px;
  }

  .empty {
    padding: 40px 20px; text-align: center; color: var(--ink-soft);
    border: 1px dashed var(--border); border-radius: var(--radius); background: var(--surface);
  }

  footer {
    text-align: center; color: var(--ink-faint); font-size: 12.5px; padding: 40px 20px 10px;
  }

  /* ---- shopping bar ---- */
  .shopbar-spacer { height: 0; transition: height .18s ease; }
  .shopbar-spacer.show { height: 84px; }
  @media (max-width: 480px) {
    .shopbar-spacer.show { height: 92px; }
  }
  .shopbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    display: flex; justify-content: center;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
  }
  .shopbar-inner {
    pointer-events: auto;
    max-width: 640px; width: 100%;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    box-shadow: 0 14px 34px -10px rgba(0,0,0,0.4);
    padding: 10px 10px 10px 22px;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    transform: translateY(120%);
    transition: transform .22s cubic-bezier(.2,.8,.2,1);
  }
  .shopbar-inner.show { transform: translateY(0); }
  .shopbar-count {
    font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .shopbar-actions { display: flex; align-items: center; gap: 8px; flex: none; }
  .btn-go .short { display: none; }
  .shopbar .btn-ghost {
    background: transparent; border: none; color: var(--bg); opacity: .7;
    font-size: 13px; font-weight: 600; cursor: pointer; padding: 8px 10px; white-space: nowrap;
  }
  .shopbar .btn-ghost:hover { opacity: 1; }
  .shopbar .btn-go {
    background: var(--accent-2); color: #1a1204; border: none;
    padding: 11px 20px; border-radius: 999px; font-size: 14px; font-weight: 700; cursor: pointer;
    white-space: nowrap;
  }
  .shopbar .btn-go:hover { filter: brightness(1.06); }

  @media (max-width: 480px) {
    .shopbar { padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px)); }
    .shopbar-inner { padding: 8px 8px 8px 16px; gap: 8px; border-radius: 18px; }
    .shopbar-count { font-size: 12.5px; }
    .shopbar .btn-ghost { padding: 8px 6px; font-size: 12px; }
    .shopbar .btn-go { padding: 10px 14px; font-size: 12.5px; }
    .btn-go .full { display: none; }
    .btn-go .short { display: inline; }
  }

  /* ---- shopping list modal ---- */
  .modal-veil {
    position: fixed; inset: 0; background: rgba(20,22,15,0.5);
    display: flex; align-items: flex-end; justify-content: center;
    z-index: 50; padding: 0;
    opacity: 0; pointer-events: none; transition: opacity .18s ease;
  }
  .modal-veil.show { opacity: 1; pointer-events: auto; }
  @media (min-width: 640px) {
    .modal-veil { align-items: center; padding: 24px; }
  }
  .modal {
    background: var(--surface); color: var(--ink);
    width: 100%; max-width: 560px; max-height: 88vh;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
    display: flex; flex-direction: column;
    transform: translateY(24px); transition: transform .2s ease;
  }
  .modal-veil.show .modal { transform: translateY(0); }
  @media (min-width: 640px) {
    .modal { border-radius: var(--radius); box-shadow: var(--shadow); }
  }
  .modal-head {
    padding: 20px 22px 14px; border-bottom: 1px solid var(--border);
    display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  }
  .modal-head h2 { font-size: 20px; margin: 0 0 4px; }
  .modal-head p { margin: 0; font-size: 13px; color: var(--ink-soft); }
  .modal-close {
    flex: none; width: 30px; height: 30px; border-radius: 999px; border: 1px solid var(--border);
    background: var(--surface); color: var(--ink-soft); cursor: pointer; font-size: 16px; line-height: 1;
  }
  .modal-close:hover { color: var(--ink); border-color: var(--ink-faint); }
  .modal-body { padding: 8px 22px 4px; overflow-y: auto; flex: 1 1 auto; }
  .modal-body .empty { margin: 20px 0; }
  .shop-cat { margin: 14px 0; }
  .shop-cat h3 {
    font-family: "Fraunces", serif; font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
    color: var(--ink-soft); font-weight: 600; margin: 0 0 8px;
  }
  .shop-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0; border-top: 1px solid var(--border);
  }
  .shop-cat .shop-item:first-of-type { border-top: none; }
  .shop-item input[type="checkbox"] {
    width: 17px; height: 17px; accent-color: var(--accent); margin-top: 2px; flex: none; cursor: pointer;
  }
  .shop-item .si-label { flex: 1 1 auto; font-size: 14.5px; cursor: pointer; }
  .shop-item .si-for { display: block; margin-top: 3px; }
  .shop-item .si-part { display: block; font-size: 12px; color: var(--ink-faint); line-height: 1.5; }
  .shop-item .si-part em { font-style: normal; }
  .shop-item.checked .si-label { text-decoration: line-through; color: var(--ink-faint); }
  .shop-item.checked .si-part { text-decoration: line-through; }
  .modal-hint {
    margin: 0; padding: 12px 22px 0 22px; font-size: 12px; color: var(--ink-faint);
    border-top: 1px solid var(--border); padding-top: 12px;
  }
  .modal-foot {
    padding: 12px 22px 16px; border-top: none;
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .modal-foot .btn { flex: 1 1 auto; text-align: center; }
  .copied-flash { color: var(--good); font-size: 12.5px; margin-left: 4px; }

  @media print {
    body * { visibility: hidden; }
    .modal-veil { position: static; background: none; opacity: 1; padding: 0; }
    .modal, .modal-body, .modal-body * , .modal-head, .modal-head * { visibility: visible; }
    .modal { max-height: none; box-shadow: none; transform: none; max-width: none; }
    .modal-foot, .modal-close, .shop-item input, .modal-hint { display: none !important; }
    .shop-item.checked { display: none !important; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
  }

.recipe-photo { margin-top: 14px; }
.recipe-photo img { max-width: 100%; border-radius: 12px; display: block; }

.recipe-comment { margin-top: 16px; }
.recipe-comment h4 {
  margin: 0 0 8px; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink-faint); font-weight: 700;
}
.recipe-comment h4 + h4 { margin-top: 16px; }
.comment-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.comment-empty { font-size: 13.5px; color: var(--ink-faint); }
.comment-item {
  font-size: 14px; line-height: 1.5; padding: 8px 11px;
  background: var(--surface-2); border-radius: 10px;
}
.comment-item.mine { background: var(--accent-soft); }
.comment-author { font-weight: 700; color: var(--ink); }
.comment-text { color: var(--ink-soft); white-space: pre-wrap; }
.recipe-comment textarea {
  width: 100%; box-sizing: border-box; font: inherit; font-size: 14px;
  padding: 9px 11px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface); color: var(--ink); resize: vertical; min-height: 56px;
}
.recipe-comment textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.recipe-comment-status {
  font-size: 12px; color: var(--ink-faint); margin-top: 4px; min-height: 15px;
}
