/* לזלול 2026 — base + foundation styles.
   Component + template styles are appended in later milestones. This file holds the
   reset, RTL foundation, global focus ring, motion guards, and the defensive prose
   rules that legacy DB posts (old inline-styled markup) inherit inside .entry-content. */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--leading-body);
  direction: rtl;
  text-align: start;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
img { border: 0; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; }
button { font-family: inherit; }

/* skip link (a11y landmark) */
.lz-skip-link {
  position: absolute; inset-inline-start: -9999px; top: 0; z-index: 1000;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--radius-pill) 0;
  font-weight: var(--weight-bold); text-decoration: none;
}
.lz-skip-link:focus { inset-inline-start: 0; }

/* ---------- layout ---------- */
.lz-wrap { max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--wrap-pad); }
.lz-band { background: var(--surface-band); }
.lz-band--ink { background: var(--surface-inverse); color: var(--text-on-inverse); }

/* ---------- global focus ring (mustard, :focus-visible only) ---------- */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

/* ---------- headings / display ---------- */
.lz-display {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  line-height: var(--display-leading);
  color: var(--ink);
}

/* ============================================================
   .entry-content — the prose sink for post_content.
   Legacy לזלול posts are old inline-styled <div> HTML imported into the DB. We can't
   rewrite that markup, so we style defensively: inherit the type scale, keep media from
   overflowing, and neutralise hard-coded widths/sterile-white backgrounds where we can
   without fighting intentional layout. New posts written in the block editor get the same
   comfortable measure automatically.
   ============================================================ */
.entry-content {
  font-size: var(--fs-body);
  line-height: var(--leading-body);
  color: var(--text-body);
}
.entry-content > * { max-width: 100%; }
.entry-content p { margin: 0 0 20px; }
.entry-content a { color: var(--red-deep); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--red); }
.entry-content h2 {
  font-family: var(--font-body); font-weight: var(--weight-black);
  font-size: var(--fs-h2); color: var(--ink); line-height: var(--leading-tight);
  margin: 38px 0 12px;
}
.entry-content h3 { font-family: var(--font-body); font-weight: var(--weight-heavy); font-size: 21px; color: var(--ink); margin: 30px 0 10px; }
.entry-content h4 { font-family: var(--font-body); font-weight: var(--weight-heavy); font-size: 18px; color: var(--ink); margin: 24px 0 8px; }
.entry-content ul, .entry-content ol { margin: 0 0 20px; padding-inline-start: 1.4em; }
.entry-content li { margin: 0 0 8px; }
.entry-content blockquote {
  margin: 26px 0; padding: 6px 18px; border-inline-start: 3px solid var(--red);
  color: var(--ink-soft); font-style: italic;
}
.entry-content img { border-radius: var(--radius-pic); margin: 8px 0; height: auto; }
.entry-content figure { margin: 22px 0; }
.entry-content figcaption { font-size: var(--fs-meta); color: var(--ink-soft); margin-top: 6px; }
.entry-content iframe, .entry-content embed, .entry-content object,
.entry-content video { max-width: 100%; }
/* Wrap wide legacy tables/embeds so they never break the page width. */
.entry-content table { max-width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.entry-content th, .entry-content td { border: var(--border-hair); padding: 8px 10px; text-align: start; }
/* Neutralise the "sterile white on white" anti-pattern from legacy inline styles:
   an inner div hard-set to #fff/#ffffff sits on warm paper — soften it to the card token. */
.entry-content [style*="background:#fff"],
.entry-content [style*="background: #fff"],
.entry-content [style*="background:#ffffff"],
.entry-content [style*="background: #ffffff"],
.entry-content [style*="background-color:#fff"],
.entry-content [style*="background-color: #fff"],
.entry-content [style*="background-color:#ffffff"],
.entry-content [style*="background-color: #ffffff"] {
  background: var(--surface-card) !important;
  border-radius: var(--radius-card);
}

/* ---------- WordPress core class compat (legacy + block content) ----------
   Legacy posts lean on WP's alignment/caption/gallery classes. The theme doesn't ship
   core block CSS, so we provide the pieces prose needs. Alignments stay PHYSICAL
   (left/right) to honour how the original authors placed floats. */
.entry-content::after { content: ""; display: table; clear: both; }   /* clear floats */
.entry-content figure { max-width: 100%; }
.entry-content .aligncenter, .entry-content figure.aligncenter, .entry-content img.aligncenter { display: block; margin-inline: auto; }
.entry-content .alignleft { float: left; margin: 6px 24px 14px 0; max-width: 50%; height: auto; }
.entry-content .alignright { float: right; margin: 6px 0 14px 24px; max-width: 50%; height: auto; }
.entry-content .alignnone { max-width: 100%; height: auto; }
.entry-content .wp-caption { max-width: 100%; }
.entry-content .wp-caption img { max-width: 100%; height: auto; }
.entry-content .wp-caption-text,
.entry-content .wp-caption figcaption { font-size: var(--fs-meta); color: var(--ink-soft); text-align: center; padding-top: 6px; margin: 0; }
/* Block-editor wide/full alignments, bounded so they never break the layout. */
.entry-content .alignwide { max-width: min(100%, 980px); margin-inline: auto; }
.entry-content .alignfull { max-width: 100%; }
/* [gallery] shortcode */
.entry-content .gallery { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 10px; margin: 22px 0; }
.entry-content .gallery-columns-2 { --cols: 2; }
.entry-content .gallery-columns-4 { --cols: 4; }
.entry-content .gallery-item { margin: 0; text-align: center; }
.entry-content .gallery img { width: 100%; height: auto; border-radius: var(--radius-pic); }
@media (max-width: 560px) {
  .entry-content .alignleft, .entry-content .alignright { float: none; margin: 14px 0; max-width: 100%; }
  .entry-content .gallery { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CHROME — Masthead (ticker + nav) & SiteFooter. Ported from the DS
   components/chrome/*.jsx + signature/Ticker.jsx. RTL-first.
   ============================================================ */

/* ---------- masthead shell ---------- */
.lz-masthead {
  position: sticky; top: 0; z-index: 900;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
  transition: box-shadow .2s ease;
}
.lz-masthead.is-stuck { box-shadow: var(--shadow-header); }
.lz-mh-row {
  display: flex; align-items: center; gap: 24px;
  padding-block: 14px;
  position: relative;
}
.lz-mh-logo {
  font-family: var(--font-display); font-weight: var(--weight-display);
  font-size: var(--fs-logo); line-height: .9; color: var(--ink);
  letter-spacing: .5px; text-decoration: none; flex-shrink: 0;
}
.lz-mh-logo b { color: var(--red); }
.lz-mh-logo small {
  display: block; font-family: var(--font-body); font-size: 11px;
  font-weight: var(--weight-medium); letter-spacing: .14em; color: var(--ink-soft);
}

/* ---------- section nav ---------- */
.lz-mh-nav { display: flex; gap: 2px; flex: 1; flex-wrap: nowrap; }
.lz-mh-nav a {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: var(--weight-bold); font-size: var(--fs-ui);
  padding: 8px 14px; border-radius: var(--radius-pill);
  color: var(--ink); text-decoration: none; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.lz-mh-nav a:hover { background: var(--paper-deep); }
.lz-mh-nav a .lz-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sec, var(--red)); flex-shrink: 0; }
.lz-mh-nav a[aria-current="page"] { background: var(--ink); color: #fff; }

/* ---------- masthead actions ---------- */
.lz-mh-actions { margin-inline-start: auto; display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.lz-mh-search {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink); cursor: pointer; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  transition: background .15s ease;
}
.lz-mh-search:hover { background: var(--paper-deep); }
.lz-btn {
  font-family: var(--font-body); font-weight: var(--weight-heavy); font-size: 14px;
  border: none; cursor: pointer; border-radius: var(--radius-pill);
  padding: 10px 20px; line-height: 1; text-decoration: none; display: inline-block;
  transition: background .2s, color .2s;
}
.lz-btn--ink { background: var(--ink); color: #fff; }
.lz-btn--ink:hover { background: var(--red); color: #fff; }
.lz-btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.lz-btn--ghost:hover { background: var(--ink); color: #fff; }
.lz-mh-burger {
  display: none; width: 42px; height: 42px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  font-size: 20px; cursor: pointer; align-items: center; justify-content: center;
}

/* ---------- ticker (CSS-only marquee) ---------- */
.lz-ticker { background: var(--red); color: #fff; overflow: hidden; white-space: nowrap; position: relative; }
.lz-ticker-inner { position: relative; }
@keyframes lz-tk { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.lz-tk-track {
  display: inline-block; padding: 9px 150px 9px 0;
  font-weight: var(--weight-medium); font-size: var(--fs-ui);
  animation: lz-tk 38s linear infinite;
}
.lz-ticker:hover .lz-tk-track { animation-play-state: paused; }
.lz-tk-track a { color: #fff; text-decoration: none; margin-inline-end: 44px; }
.lz-tk-track a:hover { text-decoration: underline; }
.lz-tk-track time { color: #FFD98E; font-weight: var(--weight-bold); }
.lz-tk-tag {
  /* Physical right = the RTL leading edge (readme: accents sit on the inline-start/right).
     Must be physical `right`, not inset-inline-end (which resolves to the LEFT in RTL). */
  position: absolute; top: 0; bottom: 0; right: 0; z-index: 2;
  background: var(--ink); color: #fff; display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 24px; padding: 0 18px 0 22px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%);
}
.lz-tk-tag svg { flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .lz-tk-track { animation: none; } }

/* ---------- mobile masthead ---------- */
@media (max-width: 720px) {
  .lz-mh-logo { font-size: 40px; }
  .lz-mh-burger { display: inline-flex; }
  .lz-mh-cta { display: none; }
  .lz-mh-nav {
    position: absolute; inset-inline: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1.5px solid var(--ink);
    box-shadow: var(--shadow-header); padding: 8px var(--wrap-pad) 14px;
    display: none;
  }
  .lz-masthead[data-nav-open="true"] .lz-mh-nav { display: flex; }
  .lz-mh-nav a { width: 100%; font-size: 17px; padding: 12px 8px; border-radius: 12px; }
  .lz-tk-tag { font-size: 19px; padding: 0 12px 0 18px; }
  .lz-tk-track { padding: 9px 110px 9px 0; }   /* reserve tag lane on the physical right */
}

/* ============================================================
   FOOTER — dark sitemap (section → subcategories) + standards + social.
   ============================================================ */
.lz-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 48px 0 26px; font-size: 14px; }
.lz-footer a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .15s ease; }
.lz-footer a:hover { color: var(--mustard); }
.lz-ft-top { display: grid; grid-template-columns: 1.4fr 3fr; gap: 40px; margin-bottom: 30px; }
.lz-ft-brand .lz-ft-word { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 48px; line-height: .9; color: #fff; }
.lz-ft-brand .lz-ft-word b { color: var(--red); }
.lz-ft-brand p { max-width: 300px; margin-top: 12px; line-height: 1.6; }
.lz-ft-sitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 28px; }
.lz-ft-col h4 { color: #fff; font-size: 14px; font-weight: var(--weight-heavy); margin: 0 0 10px; }
.lz-ft-col h4 a { color: #fff; }
.lz-ft-col h4 .lz-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--sec, var(--red)); margin-inline-start: 7px; vertical-align: middle; }
.lz-ft-col ul { list-style: none; margin: 0; padding: 0; line-height: 2; }
.lz-ft-aux { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 30px; }
.lz-ft-credit {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; margin-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
@media (max-width: 900px) { .lz-ft-sitemap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .lz-ft-top { grid-template-columns: 1fr; gap: 26px; }
  .lz-ft-aux { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) { .lz-ft-sitemap { grid-template-columns: 1fr; } }

/* ============================================================
   ARTICLE (single.php) — news + review. Ported from templates/news + templates/article
   and the signature/primitive components. RTL, article measure 720px.
   ============================================================ */
.lz-article { max-width: var(--read-max); margin-inline: auto; padding: 32px var(--wrap-pad) 0; }
.lz-article__wide { max-width: var(--read-head-max); }

/* breadcrumb */
.lz-breadcrumb { font-size: var(--fs-meta); font-weight: var(--weight-medium); color: var(--ink-soft); margin-bottom: 14px; }
.lz-breadcrumb a { color: inherit; text-decoration: none; }
.lz-breadcrumb a:hover { color: var(--red-deep); }
.lz-breadcrumb b, .lz-breadcrumb .lz-crumb-sec { color: var(--red-deep); }
.lz-breadcrumb .sep { color: var(--line); margin: 0 4px; }

/* headline block */
.lz-headrow { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.lz-article h1.lz-title {
  font-family: var(--font-display); font-weight: var(--weight-display);
  font-size: var(--fs-article-h1); line-height: var(--display-leading);
  color: var(--ink); margin: 0 0 14px;
}
.lz-dek { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); margin: 0 0 20px; }

/* chips */
.lz-chip {
  font-size: var(--fs-chip); font-weight: var(--weight-heavy); letter-spacing: .02em;
  display: inline-block; padding: 3px 11px; border-radius: var(--radius-pill); width: max-content;
}
.lz-chip--restaurants  { background: rgba(217,43,28,.12);  color: var(--red-deep); }
.lz-chip--food-news    { background: rgba(14,110,100,.12); color: var(--teal); }
.lz-chip--reviews      { background: rgba(179,68,108,.13); color: var(--raspberry); }
.lz-chip--new-on-shelf { background: rgba(240,168,28,.20); color: #8a5c00; }
.lz-chip--food-events  { background: rgba(92,124,62,.15);  color: var(--olive); }
.lz-chip--tips         { background: rgba(156,107,62,.16); color: #7a5330; }

/* kicker */
.lz-kicker {
  display: inline-flex; align-items: center; gap: 8px; background: var(--mustard);
  color: var(--ink); font-weight: var(--weight-heavy); font-size: 13px;
  padding: 5px 13px; border-radius: var(--radius-pill);
}

/* score pill */
.lz-scorepill {
  display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--ink);
  font-weight: var(--weight-black); font-size: 14px; padding: 5px 12px;
  border-radius: var(--radius-pill); border: 1.5px solid var(--ink);
}
.lz-scorepill b { color: var(--red); font-size: 17px; }

/* byline */
.lz-byline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: var(--border-hair); }
.lz-byline__avatar {
  width: 40px; height: 40px; border-radius: var(--radius-pill); background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-weight: var(--weight-black); color: var(--ink-soft); font-size: 18px; flex-shrink: 0;
}
.lz-byline__meta { line-height: 1.3; }
.lz-byline__name { font-weight: var(--weight-heavy); font-size: var(--fs-ui); color: var(--ink); }
.lz-byline__name a { color: inherit; text-decoration: none; }
.lz-byline__name a:hover { color: var(--red-deep); }
.lz-byline__sub { font-size: var(--fs-meta); color: var(--ink-soft); }
.lz-byline__share { margin-inline-start: auto; display: flex; gap: 8px; }
.lz-byline__share a {
  font-size: var(--fs-meta); font-weight: var(--weight-bold); text-decoration: none;
  color: var(--ink); border: var(--border-hair); border-radius: var(--radius-pill); padding: 7px 14px;
}
.lz-byline__share a:hover { background: var(--paper-deep); }

/* hero */
.lz-hero { margin: 24px 0 6px; }
.lz-hero__frame { position: relative; width: 100%; border-radius: var(--radius-hero); overflow: hidden; }
.lz-hero__frame img { width: 100%; height: auto; display: block; }
.lz-hero__cap { font-size: var(--fs-meta); color: var(--ink-soft); margin-top: 8px; }
.lz-hero__score { position: absolute; bottom: 16px; inset-inline-start: 16px; z-index: 2; }

/* ZlilaScore stamp */
.lz-zlila {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff; font-weight: var(--weight-black); box-sizing: border-box; text-align: center;
}
.lz-zlila--stamp {
  background: var(--ink); border: 2px solid var(--paper); outline: 2px solid var(--ink);
  outline-offset: 1px; transform: rotate(-8deg);
}
.lz-zlila--stamp b { font-size: 28px; line-height: 1; color: var(--mustard); }
.lz-zlila--stamp small { font-size: 9px; letter-spacing: .05em; }

/* bottom-line sticker */
.lz-bottomline {
  display: block; background: #fff; border: var(--border-ink); border-radius: var(--radius-card);
  padding: 22px 24px; margin: 26px 0; box-shadow: var(--shadow-offset);
}
.lz-bottomline__title { font-family: var(--font-body); font-size: 15px; font-weight: var(--weight-black); color: var(--red-deep); margin: 0 0 8px; letter-spacing: .03em; }
.lz-bottomline__body { font-size: 16.5px; line-height: 1.65; }
.lz-bottomline__body p { margin: 0 0 10px; }
.lz-bottomline__body p:last-child { margin-bottom: 0; }
.lz-bottomline__body b, .lz-bottomline__body strong { color: var(--ink); }

/* sponsored label */
.lz-sponsored {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
  background: var(--paper-deep); border: 1px solid var(--line);
  border-inline-start: 4px solid var(--ink); border-radius: var(--radius-card); padding: 12px 16px;
}
.lz-sponsored__tag { background: var(--ink); color: #fff; font-weight: var(--weight-black); font-size: var(--fs-chip); letter-spacing: .04em; padding: 4px 12px; border-radius: var(--radius-pill); white-space: nowrap; }
.lz-sponsored__partner { font-size: var(--fs-meta); font-weight: var(--weight-heavy); color: var(--ink); }
.lz-sponsored__note { font-size: var(--fs-meta); color: var(--ink-soft); line-height: 1.4; }

/* score box */
.lz-scorebox { background: var(--ink); color: #fff; border-radius: 22px; padding: 26px; margin: 30px 0; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.lz-scorebox__ring { flex: none; width: 110px; height: 110px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lz-scorebox__disc { width: 88px; height: 88px; border-radius: 50%; background: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lz-scorebox__disc b { font-size: 32px; line-height: 1; color: var(--mustard); }
.lz-scorebox__disc small { font-size: 9.5px; letter-spacing: .06em; color: rgba(255,255,255,.7); }
.lz-scorebox__list { list-style: none; flex: 1; min-width: 230px; margin: 0; padding: 0; }
.lz-scorebox__list li { display: flex; justify-content: space-between; font-size: 14.5px; padding: 5px 0; border-bottom: 1px dashed rgba(255,255,255,.2); }
.lz-scorebox__list b { color: var(--mustard); }

/* pull quote */
.lz-pullquote {
  font-family: var(--font-display); font-weight: 400; font-size: 42px; line-height: 1.1;
  color: var(--red-deep); border-top: var(--border-section); border-bottom: var(--border-section);
  padding: 22px 8px; margin: 34px 0; text-align: center;
}

/* inline "read also" */
.lz-readalso { border-inline-start: 4px solid var(--red); background: var(--paper-deep); border-radius: var(--radius-card); padding: 14px 18px; margin: 24px 0; }
.lz-readalso__head { font-size: var(--fs-meta); font-weight: var(--weight-black); color: var(--red-deep); letter-spacing: .04em; margin-bottom: 8px; }
.lz-readalso a { display: flex; gap: 10px; align-items: center; padding: 6px 0; color: var(--ink); text-decoration: none; font-weight: var(--weight-heavy); font-size: 15px; }
.lz-readalso a:hover { color: var(--red-deep); }

/* newsletter CTA */
.lz-newsletter {
  border-radius: var(--radius-cta); padding: 40px; display: flex; align-items: center; gap: 30px;
  flex-wrap: wrap; position: relative; overflow: hidden; box-sizing: border-box; margin: 0 0 48px;
}
.lz-newsletter__wm { position: absolute; font-size: 110px; opacity: .1; top: -20px; inset-inline-start: -10px; letter-spacing: -18px; pointer-events: none; }
.lz-newsletter__copy { position: relative; }
.lz-newsletter__title { font-family: var(--font-display); font-size: 56px; font-weight: var(--weight-display); line-height: .95; margin: 0; }
.lz-newsletter__copy p { font-size: 15.5px; opacity: .92; margin: 4px 0 0; }
.lz-newsletter__form { display: flex; gap: 10px; margin-inline-start: auto; flex-wrap: wrap; position: relative; }
.lz-newsletter__form input { border: none; border-radius: var(--radius-pill); padding: 13px 20px; font-family: var(--font-body); font-size: 15px; min-width: 250px; }
.lz-newsletter--red { background: var(--red); color: #fff; }
.lz-newsletter--red .lz-newsletter__title { color: #fff; }
.lz-newsletter--ink { background: var(--ink); color: #fff; }
.lz-newsletter--ink .lz-newsletter__title { color: var(--mustard); }
.lz-newsletter--outline { background: var(--paper-deep); color: var(--ink); border: 2px solid var(--ink); }
.lz-newsletter--outline .lz-newsletter__title { color: var(--red); }
.lz-newsletter--outline .lz-newsletter__form input { border: 1.5px solid var(--ink); }

/* mini card + related */
.lz-minicard {
  display: grid; grid-template-columns: 112px 1fr; gap: 14px; background: #fff; border: var(--border-hair);
  border-radius: var(--radius-card); overflow: hidden; color: inherit; text-decoration: none;
  transition: transform .22s, box-shadow .22s;
}
.lz-minicard:hover { transform: translateY(var(--lift-hover)); box-shadow: var(--shadow-card-hover); }
.lz-minicard__media { min-height: 100px; background: var(--paper-deep); display: flex; align-items: center; justify-content: center; }
.lz-minicard__media img { width: 100%; height: 100%; object-fit: cover; }
.lz-minicard__body { padding: 14px 4px 14px 16px; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.lz-minicard__body h3 { font-size: 16.5px; font-weight: var(--weight-heavy); line-height: var(--leading-tight); margin: 0; }
.lz-minicard__body time { font-size: 12px; color: var(--ink-soft); }
.lz-related { border-top: var(--border-hair); padding: 40px 0 56px; margin-top: 40px; }
.lz-related__head { font-size: var(--fs-section); color: var(--ink); margin: 0 0 20px; }
.lz-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

/* article body extras */
.lz-article .entry-content { margin-top: 8px; }
.lz-block { margin: 30px 0 40px; }

@media (max-width: 560px) {
  .lz-newsletter { padding: 28px; }
  .lz-newsletter__title { font-size: 40px; }
  .lz-newsletter__form { margin-inline-start: 0; width: 100%; }
  .lz-newsletter__form input { min-width: 0; flex: 1; }
  .lz-pullquote { font-size: 32px; }
}

/* ============================================================
   FRONT PAGE (front-page.php) — hero split, section blocks, shelf, trends, reviews.
   Ported from templates/home. RTL.
   ============================================================ */
.lz-fp section { padding-top: 44px; }
.lz-fp .lz-fp-hero { padding-top: 26px; }
.lz-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lz-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: end; }

/* section head */
.lz-sechead { display: flex; align-items: baseline; gap: 16px; border-bottom: var(--border-section); padding-bottom: 10px; margin-bottom: 22px; }
.lz-sechead__title { font-size: var(--fs-section); line-height: 1; color: var(--ink); }
.lz-sechead__accent { color: var(--red); }
.lz-sechead__all { margin-inline-start: auto; font-weight: var(--weight-heavy); font-size: 14px; color: var(--red-deep); text-decoration: none; white-space: nowrap; }
.lz-sechead--dark { border-bottom-color: rgba(255,255,255,.35); }
.lz-sechead--dark .lz-sechead__title { color: #fff; }
.lz-sechead--dark .lz-sechead__all { color: var(--mustard); }

/* split hero lead */
.lz-lead {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--surface-card);
  border: var(--border-hair); border-radius: var(--radius-hero); overflow: hidden;
  text-decoration: none; color: inherit; min-height: 400px; transition: box-shadow .22s;
}
.lz-lead:hover { box-shadow: var(--shadow-card-hover); }
.lz-lead__txt { min-width: 0; padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.lz-lead__kick { display: flex; gap: 8px; align-items: center; font-size: var(--fs-meta); color: var(--ink-soft); }
.lz-lead__title { font-size: clamp(40px, 4.2vw, 60px); line-height: .98; color: var(--ink); margin: 0; text-wrap: balance; }
.lz-lead__dek { font-size: 16.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.lz-lead__more { font-weight: var(--weight-black); font-size: 14px; color: var(--red-deep); }
.lz-lead__img { position: relative; min-width: 0; min-height: 400px; background: var(--paper-deep); }
.lz-lead__img img { width: 100%; height: 100%; object-fit: cover; }
.lz-lead__badge { position: absolute; top: 18px; inset-inline-start: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: var(--red); color: #fff; font-weight: var(--weight-black); font-size: 12.5px; padding: 7px 13px; border-radius: var(--radius-pill); }

/* "עוד עכשיו" rail head */
.lz-railhead { display: flex; align-items: baseline; gap: 10px; border-bottom: var(--border-hair); padding-bottom: 8px; margin: 30px 0 16px; }
.lz-railhead__title { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 26px; color: var(--ink); line-height: 1; }
.lz-railhead__meta { margin-inline-start: auto; font-size: 12.5px; font-weight: var(--weight-heavy); color: var(--red-deep); }

/* generic story card (vertical) */
.lz-card { display: flex; flex-direction: column; background: var(--surface-card); border: var(--border-hair); border-radius: var(--radius-card); overflow: hidden; text-decoration: none; color: inherit; transition: transform .22s, box-shadow .22s; }
.lz-card:hover { transform: translateY(var(--lift-hover)); box-shadow: var(--shadow-card-hover); }
.lz-card__media { display: block; }
.lz-card__media img, .lz-card__ph { width: 100%; height: 150px; object-fit: cover; display: block; }
.lz-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.lz-card__body h3 { font-size: 18px; font-weight: var(--weight-heavy); line-height: var(--leading-tight); color: var(--ink); margin: 0; }
.lz-card__body time { margin-top: auto; font-size: var(--fs-meta); color: var(--ink-soft); }

/* on the shelf */
.lz-shelf-band { background: var(--surface-band); margin-top: 48px; padding: 40px 0; }
.lz-shelf-band .lz-sechead { margin-bottom: 6px; }
.lz-shelf-intro { font-size: 15px; color: var(--ink-soft); margin: 6px 0 0; max-width: 640px; }
.lz-shelf-intro b { color: var(--ink); }
.lz-shelf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 20px; }
.lz-product { background: #fff; border: var(--border-hair); border-bottom: none; border-radius: 16px 16px 0 0; padding: 16px 16px 18px; position: relative; transition: transform .2s; color: inherit; text-decoration: none; display: block; }
.lz-product:hover { transform: translateY(var(--lift-hover-lg)); }
.lz-product__new { position: absolute; top: 10px; inset-inline-start: 10px; background: var(--red); color: #fff; font-size: 10.5px; font-weight: var(--weight-black); padding: 3px 9px; border-radius: var(--radius-pill); transform: rotate(-6deg); z-index: 2; }
.lz-product__media { height: 110px; border-radius: var(--radius-pic); overflow: hidden; margin-bottom: 12px; }
.lz-product__media img, .lz-product__media .lz-card__ph { width: 100%; height: 110px; object-fit: cover; }
.lz-product h3 { font-size: 15px; font-weight: var(--weight-heavy); line-height: var(--leading-tight); margin: 0 0 6px; }
.lz-product__meta { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--ink-soft); }
.lz-shelfboard { height: 14px; background: var(--ink); border-radius: 3px; box-shadow: var(--shadow-shelf); margin-bottom: 26px; }

/* trend card */
.lz-trend { background: #fff; border: var(--border-hair); border-radius: var(--radius-card); padding: 18px; position: relative; display: block; color: inherit; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.lz-trend:hover { transform: translateY(var(--lift-hover)); box-shadow: var(--shadow-card-hover); }
.lz-trend__dir { position: absolute; top: 16px; left: 16px; font-weight: var(--weight-black); font-size: 13px; }
.lz-trend--new .lz-trend__dir { color: #1d7a3a; }
.lz-trend--same .lz-trend__dir { color: var(--ink-soft); }
.lz-trend--down .lz-trend__dir { color: var(--red); }
.lz-trend__rank { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 58px; line-height: 1; color: var(--paper-deep); -webkit-text-stroke: 1.5px var(--ink); }
.lz-trend h3 { font-size: 16px; font-weight: var(--weight-heavy); margin: 8px 0 4px; }
.lz-trend p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

/* review card */
.lz-reviewcard { background: #fff; border: var(--border-hair); border-radius: var(--radius-card); overflow: hidden; position: relative; display: block; color: inherit; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.lz-reviewcard:hover { transform: translateY(var(--lift-hover)); box-shadow: var(--shadow-card-hover); }
.lz-reviewcard__media { height: 170px; overflow: hidden; }
.lz-reviewcard__media img, .lz-reviewcard__media .lz-card__ph { width: 100%; height: 170px; object-fit: cover; }
.lz-reviewcard__score { position: absolute; top: 138px; inset-inline-start: 18px; z-index: 2; }
.lz-reviewcard__body { padding: 18px; }
.lz-reviewcard__body h3 { font-size: 18px; font-weight: var(--weight-heavy); line-height: var(--leading-tight); margin: 8px 0 6px; }
.lz-reviewcard__body p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* zlila classic badge (review cards) */
.lz-zlila--classic { background: var(--ink); border: 3px solid var(--paper); }
.lz-zlila--classic b { font-size: 20px; line-height: 1; color: var(--mustard); }
.lz-zlila--classic small { font-size: 8.5px; letter-spacing: .05em; }

/* newsletter section wrapper on home */
.lz-fp-newsletter { padding: 52px var(--wrap-pad); }
.lz-fp-newsletter .lz-newsletter { margin: 0; }

/* front-page responsive */
@media (max-width: 900px) {
  .lz-lead { grid-template-columns: 1fr; }
  .lz-lead__img { min-height: 280px; }
  .lz-lead__txt { padding: 30px 24px; }
  .lz-grid3, .lz-grid4, .lz-shelf { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lz-grid3, .lz-grid4, .lz-shelf { grid-template-columns: 1fr; }
  .lz-product { border-radius: 16px 16px 0 0; }
}

/* ============================================================
   ARCHIVE / AUTHOR / SEARCH / 404  (M5)
   ============================================================ */

/* shared: filter pills, pagination, empty state */
.lz-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.lz-filter { border: none; background: transparent; font-family: var(--font-body); font-weight: var(--weight-bold); font-size: var(--fs-ui); color: var(--ink); padding: 8px 16px; border-radius: var(--radius-pill); text-decoration: none; }
.lz-filter:hover { background: var(--paper-deep); }
.lz-filter.is-on { background: var(--ink); color: #fff; }
.lz-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; margin: 36px 0 8px; }
.lz-pagination .lz-page, .lz-pagination .page-numbers {
  min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill); border: var(--border-hair); background: var(--surface-card);
  font-weight: var(--weight-bold); font-size: var(--fs-ui); color: var(--ink); text-decoration: none;
}
.lz-pagination .page-numbers.current { background: var(--sec, var(--red)); border-color: var(--sec, var(--red)); color: #fff; }
.lz-pagination .page-numbers.dots { border: none; background: transparent; }
.lz-empty { font-size: var(--fs-lead); color: var(--ink-soft); text-align: center; padding: 40px 0; }

/* archive header */
.lz-cat { min-height: 60vh; }
.lz-archive-head { border-bottom: 3px solid var(--ink); padding-bottom: 20px; margin-bottom: 22px; }
.lz-archive-head__title { display: flex; align-items: center; gap: 12px; }
.lz-archive-head__dot { width: 16px; height: 16px; border-radius: 50%; background: var(--sec, var(--red)); flex-shrink: 0; }
.lz-archive-head h1 { font-size: var(--fs-section); line-height: .95; color: var(--ink); margin: 0; }
.lz-archive-head__desc { max-width: 640px; font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); margin: 12px 0 0; }

/* archive lead + grid */
.lz-cat-lead { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; margin-bottom: 28px; align-items: stretch; }
.lz-cat-lead__media { position: relative; min-height: 320px; }
.lz-cat-lead__media img, .lz-cat-lead__media .lz-card__ph { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.lz-cat-lead__txt { padding: 28px 26px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.lz-cat-lead__kick { display: flex; gap: 8px; align-items: center; font-size: var(--fs-meta); color: var(--ink-soft); }
.lz-cat-lead__txt h2 { font-size: 44px; line-height: .98; color: var(--ink); margin: 0; }
.lz-cat-lead__txt p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.lz-cat-lead__by { font-size: var(--fs-meta); font-weight: var(--weight-heavy); color: var(--red-deep); }
.lz-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* author */
.lz-author__head { border-bottom: 3px solid var(--ink); padding-bottom: 30px; margin-bottom: 14px; }
.lz-author__hero { display: grid; grid-template-columns: 160px 1fr; gap: 30px; align-items: center; }
.lz-author__avatar { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; border: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; background: var(--paper-deep); }
.lz-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lz-author__initial { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 72px; color: var(--ink-soft); }
.lz-author__meta h1 { font-size: 56px; line-height: .95; color: var(--ink); margin: 0; }
.lz-author__bio { max-width: 620px; font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); margin: 10px 0 16px; }
.lz-author__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.lz-social { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-meta); font-weight: var(--weight-bold); color: var(--ink); text-decoration: none; border: var(--border-hair); border-radius: var(--radius-pill); padding: 7px 14px; }
.lz-social:hover { background: var(--paper-deep); }
.lz-author__stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 24px; }
.lz-author__stat { font-size: 34px; color: var(--red); line-height: 1; display: block; }
.lz-author__statlabel { font-size: var(--fs-meta); color: var(--ink-soft); }

/* search */
.lz-search-head { border-bottom: 3px solid var(--ink); padding-bottom: 24px; margin-bottom: 22px; }
.lz-search-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.lz-search-form input { flex: 1; min-width: 260px; border: 1.5px solid var(--ink); border-radius: var(--radius-pill); padding: 14px 22px; font-family: var(--font-body); font-size: 16px; background: var(--surface-card); }
.lz-search-count { font-size: var(--fs-lead); color: var(--ink-soft); }
.lz-search-count b { color: var(--ink); }
.lz-search-count .q { color: var(--red-deep); }

/* 404 */
.lz-404 { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 64px var(--wrap-pad); min-height: 60vh; }
.lz-404__plate-wrap { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.lz-404__plate { width: 220px; height: 220px; border-radius: 50%; background: #fff; border: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-offset); }
.lz-404__plate::before { content: ""; width: 150px; height: 150px; border-radius: 50%; border: 2px dashed var(--line); }
.lz-404__fork { position: absolute; font-size: 46px; inset-inline-start: -30px; transform: rotate(-18deg); }
.lz-404__num { font-size: clamp(90px, 16vw, 180px); line-height: .8; color: var(--red); margin: 24px 0 4px; letter-spacing: 2px; }
.lz-404__title { font-size: clamp(40px, 6vw, 64px); line-height: .95; color: var(--ink); margin: 0 0 12px; }
.lz-404__lede { max-width: 460px; font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); margin: 0 0 26px; }
.lz-404__form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 22px; }
.lz-404__form input { border: 1.5px solid var(--ink); border-radius: var(--radius-pill); padding: 13px 22px; font-family: var(--font-body); font-size: 15px; min-width: 280px; background: var(--surface-card); }
.lz-404__links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.lz-link { display: inline-flex; align-items: center; gap: 6px; font-weight: var(--weight-bold); font-size: var(--fs-ui); color: var(--ink); text-decoration: none; border: var(--border-hair); border-radius: var(--radius-pill); padding: 9px 18px; }
.lz-link:hover { background: var(--paper-deep); }
.lz-link i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

/* ============================================================
   FORMAT SINGLES (M5): taste-test, top-picks, event, guide
   ============================================================ */
.lz-byline-compact { font-size: var(--fs-meta); color: var(--ink-soft); margin: 0 0 22px; }
.lz-byline-compact b { color: var(--ink); font-weight: var(--weight-heavy); }
.lz-byline-compact a { color: inherit; text-decoration: none; }
.lz-byline-compact a:hover { color: var(--red-deep); }

/* taste-test winner + leaderboard */
.lz-winner { border: 2px solid var(--ink); border-radius: var(--radius-hero); overflow: hidden; margin: 26px 0 30px; box-shadow: var(--shadow-offset); }
.lz-winner__tag { background: var(--ink); color: #fff; padding: 8px 18px; font-weight: var(--weight-black); font-size: 13px; letter-spacing: .04em; }
.lz-winner__body { display: flex; gap: 20px; padding: 22px; align-items: center; flex-wrap: wrap; }
.lz-winner__img { width: 150px; height: 150px; border-radius: 16px; overflow: hidden; flex-shrink: 0; }
.lz-winner__img img { width: 100%; height: 100%; object-fit: cover; }
.lz-winner__txt { flex: 1; min-width: 200px; }
.lz-winner__txt h2 { font-size: 36px; line-height: 1; color: var(--ink); margin: 0 0 10px; }
.lz-leaderboard__head { font-size: 32px; color: var(--ink); border-bottom: 3px solid var(--ink); padding-bottom: 6px; margin: 30px 0 8px; }
.lz-rank { display: grid; grid-template-columns: 54px 1fr auto; gap: 16px; align-items: center; padding: 16px 4px; border-bottom: var(--border-hair); }
.lz-rank__n { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 40px; line-height: 1; color: var(--ink); text-align: center; }
.lz-rank__name { font-weight: var(--weight-heavy); font-size: 16.5px; color: var(--ink); }
.lz-rank__score { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 30px; color: var(--red); line-height: 1; }

/* guide — numbered steps from H2s */
.lz-guide { counter-reset: lz-step; }
.lz-guide h2 {
  counter-increment: lz-step; position: relative; min-height: 48px;
  padding-inline-start: 68px; display: flex; align-items: center; margin: 30px 0 10px;
}
.lz-guide h2::before {
  content: counter(lz-step); position: absolute; inset-inline-start: 0; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--mustard);
  font-family: var(--font-display); font-weight: var(--weight-display); font-size: 28px;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
/* guide "chef tip" — a blockquote in the content */
.lz-guide blockquote { background: var(--red); color: #fff; border: none; border-radius: var(--radius-cta); padding: 20px 24px; margin: 30px 0; box-shadow: var(--shadow-offset); font-style: normal; }
.lz-guide blockquote p { margin: 0; font-size: 15px; line-height: 1.55; }

/* top-picks — giant countdown numerals on H2s */
.lz-toppicks { counter-reset: lz-pick; }
.lz-toppicks h2 { counter-increment: lz-pick; position: relative; padding-inline-start: 82px; min-height: 60px; margin: 34px 0 10px; }
.lz-toppicks h2::before {
  content: counter(lz-pick); position: absolute; inset-inline-start: 0; top: -8px;
  font-family: var(--font-display); font-weight: var(--weight-display); font-size: 64px; line-height: .8; color: var(--red);
}

/* event — two-col + sticky info panel */
.lz-event { max-width: 1100px; margin-inline: auto; padding: 32px var(--wrap-pad) 0; }
.lz-event__layout { display: grid; grid-template-columns: 1fr 320px; gap: 34px; align-items: start; }
.lz-event__main { min-width: 0; }
.lz-info { background: var(--surface-card); border: 2px solid var(--ink); border-radius: var(--radius-card); overflow: hidden; position: sticky; top: 130px; }
.lz-info__head { background: var(--sec, var(--olive)); color: #fff; padding: 14px 18px; font-size: 26px; line-height: 1; }
.lz-info__row { display: flex; gap: 12px; padding: 14px 18px; border-bottom: var(--border-hair); }
.lz-info__ic { font-size: 20px; flex-shrink: 0; }
.lz-info__k { font-size: 12px; color: var(--ink-soft); display: block; }
.lz-info__v { font-weight: var(--weight-heavy); font-size: 15px; color: var(--ink); display: block; }
.lz-info__cta { padding: 16px 18px; }
.lz-info__cta .lz-btn { display: block; text-align: center; }

@media (max-width: 900px) { .lz-cat-grid { grid-template-columns: repeat(2, 1fr); } .lz-cat-lead { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .lz-event__layout { grid-template-columns: 1fr; } .lz-info { position: static; } }
@media (max-width: 720px) { .lz-author__hero { grid-template-columns: 1fr; text-align: center; justify-items: center; } .lz-author__meta h1 { font-size: 44px; } }
@media (max-width: 560px) { .lz-cat-grid { grid-template-columns: 1fr; } .lz-cat-lead__txt h2 { font-size: 32px; } }

/* ============================================================
   PAGES (page.php, page-contact.php) — About / Ethics / Legal / Privacy / Contact
   ============================================================ */
.lz-page__head { border-bottom: 3px solid var(--ink); padding-bottom: 24px; margin-bottom: 30px; }
.lz-page__head h1 { font-size: clamp(40px, 5vw, 72px); line-height: .95; color: var(--ink); margin: 0; max-width: 900px; text-wrap: balance; }
.lz-page__lede { max-width: 720px; font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); margin: 14px 0 0; }
.lz-page__updated { font-size: var(--fs-meta); color: var(--ink-soft); margin: 10px 0 0; }

/* document prose (long standards pages) */
.lz-doc--narrow { max-width: var(--read-max); }
.lz-doc h2 { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 34px; color: var(--ink); margin: 40px 0 12px; scroll-margin-top: 120px; }
.lz-doc h2:first-child { margin-top: 0; }
.lz-doc p, .lz-doc li { font-size: 16.5px; line-height: 1.75; color: var(--text-body); }

/* two-column doc + sticky TOC */
.lz-legal { display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: start; }
.lz-toc { position: sticky; top: 130px; }
.lz-toc a { display: block; font-size: 14px; font-weight: var(--weight-bold); color: var(--ink-soft); text-decoration: none; padding: 7px 0; border-inline-start: 2px solid var(--line); padding-inline-start: 14px; }
.lz-toc a:hover { color: var(--red-deep); border-inline-start-color: var(--red); }
.lz-pledge { border: 2px solid var(--ink); border-radius: var(--radius-card); overflow: hidden; margin: 0 0 26px; }
.lz-pledge__h { background: var(--red); color: #fff; padding: 10px 20px; font-family: var(--font-display); font-weight: var(--weight-display); font-size: 26px; line-height: 1; }

/* contact */
.lz-contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.lz-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lz-field label { font-size: var(--fs-meta); font-weight: var(--weight-heavy); color: var(--ink); }
.lz-field input, .lz-field textarea, .lz-field select { font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--surface-card); border: 1.5px solid var(--ink); border-radius: 14px; padding: 12px 16px; }
.lz-field textarea { min-height: 130px; resize: vertical; }
.lz-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lz-tipline { background: var(--red); color: #fff; border-radius: var(--radius-cta); padding: 22px; margin-bottom: 24px; box-shadow: var(--shadow-offset); }
.lz-tipline__h { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 30px; line-height: 1; margin-bottom: 6px; }
.lz-tipline p { font-size: 14px; line-height: 1.5; margin: 0; opacity: .95; }
.lz-chan { display: flex; gap: 12px; align-items: center; padding: 14px 0; border-bottom: var(--border-hair); text-decoration: none; color: inherit; }
.lz-chan:hover .lz-chan__label { color: var(--red-deep); }
.lz-chan__ic { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-deep); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.lz-chan__label { font-weight: var(--weight-heavy); color: var(--ink); display: block; }
.lz-chan__val { font-size: var(--fs-meta); color: var(--ink-soft); display: block; }
.lz-notice { border-radius: var(--radius-card); padding: 14px 18px; margin: 20px 0; font-weight: var(--weight-bold); }
.lz-notice--ok { background: rgba(92,124,62,.14); color: var(--olive); border: 1px solid var(--olive); }
.lz-notice--err { background: rgba(217,43,28,.10); color: var(--red-deep); border: 1px solid var(--red-deep); }

@media (max-width: 820px) {
  .lz-legal { grid-template-columns: 1fr; gap: 24px; }
  .lz-toc { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .lz-toc a { border: var(--border-hair); border-radius: var(--radius-pill); padding: 7px 14px; }
  .lz-contact { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- motion guards ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
