/* לזלול 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 {
  /* Hide UPWARD, not sideways. `inset-inline-start:-9999px` resolves to `right:-9999px` in RTL,
     which pushes the link ~10000px past the right edge and creates massive horizontal overflow
     (a phantom empty area you can scroll to). Moving it off the top avoids that entirely. */
  position: absolute; inset-inline-start: 0; top: -100px; z-index: 1000;
  background: var(--ink-fixed); 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 { top: 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; }
/* Article-body opening: a thin, long section-color divider above the first real prose
   paragraph (tagged .lz-lede by navigation.js) — a light "food" separator that replaces the
   earlier drop-cap. Base = a plain thin centered rule (works everywhere). Where CSS masks are
   supported we carve a fork-&-knife ornament into the centre via an SVG mask, so the whole
   thing takes the deepened var(--sec) (color-mix keeps mustard/olive rich on the light paper).*/
.entry-content p.lz-lede::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 340px;
  height: 2px;
  margin: 10px auto 26px;
  border-radius: var(--radius-pill);
  background: var(--sec);
  background: color-mix(in srgb, var(--sec) 75%, #000);
}
@supports ((-webkit-mask-image: url("i")) or (mask-image: url("i"))) {
  .entry-content p.lz-lede::before {
    height: 22px;
    border-radius: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 340 22'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='11' x2='140' y2='11'/%3E%3Cline x1='200' y1='11' x2='334' y2='11'/%3E%3Cpath d='M159 3V8M162 3V8M165 3V8M159 8H165M162 8V19'/%3E%3Cpath d='M176 3V19M176 3C179 5 179 9 176 10'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 340 22'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='11' x2='140' y2='11'/%3E%3Cline x1='200' y1='11' x2='334' y2='11'/%3E%3Cpath d='M159 3V8M162 3V8M165 3V8M159 8H165M162 8V19'/%3E%3Cpath d='M176 3V19M176 3C179 5 179 9 176 10'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  }
}
.entry-content a { color: var(--red-deep); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--red-small-text); }
.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-fixed); 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); }

/* theme toggle — shows the icon for the mode a click switches TO is wrong; shows the icon
   for the CURRENT effective mode (moon = currently light, sun = currently dark). Mirrors the
   same two-path convergence as tokens.css's dark-mode block so the icon never lags the
   tokens on first paint (both read system preference + [data-theme] the same way). */
.lz-theme-toggle__icon--sun { display: none; }
.lz-theme-toggle__icon--moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .lz-theme-toggle__icon--sun { display: block; }
  :root:not([data-theme="light"]) .lz-theme-toggle__icon--moon { display: none; }
}
:root[data-theme="dark"] .lz-theme-toggle__icon--sun { display: block; }
:root[data-theme="dark"] .lz-theme-toggle__icon--moon { display: none; }

.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-fixed); 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-fixed); 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;
}

/* expanding search bar (toggled by the magnifier) */
.lz-search-bar { display: none; border-top: 1px solid var(--line); background: var(--paper); }
.lz-masthead[data-search-open="true"] .lz-search-bar { display: block; }
.lz-search-bar__inner { display: flex; gap: 10px; align-items: center; padding-block: 12px; }
.lz-search-bar__input {
  flex: 1; min-width: 0; border: 1.5px solid var(--ink); border-radius: var(--radius-pill);
  padding: 12px 20px; font-family: var(--font-body); font-size: 16px; background: var(--surface-card); color: var(--ink);
}
.lz-search-bar__close {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink); font-size: 24px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.lz-search-bar__close:hover { background: var(--paper-deep); }

/* ---------- ticker (CSS-only marquee) ---------- */
.lz-ticker { background: var(--red); color: #fff; overflow: hidden; white-space: nowrap; position: relative; }
/* static so the flush-right tag below anchors to the full-width .lz-ticker (viewport edge),
   not to this padded content wrap — otherwise a sliver of red shows to the tag's right. */
.lz-ticker-inner { position: static; }
/* RTL marquee, scrolling LEFT-TO-RIGHT (items enter on the left, drift right, exit behind
   the tag). Content extends leftward with its right edge anchored at the viewport edge, so
   we animate 0 → +50% (track moves right) — the whole [0,+50%] range keeps text on-screen.
   (A negative range would push the track fully off-screen to the left.) */
@keyframes lz-tk { from { transform: translateX(0); } to { transform: translateX(50%); } }
.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; }
.lz-tk-track a:hover { text-decoration: underline; }
/* Headline separator: a small gold diamond centered in the gap (echoes the "חם מהתנור"
   flame). Sits between every consecutive headline, including across the seamless loop
   boundary. content "/ \"\"" gives it an empty accessible name so screen readers skip it. */
.lz-tk-track a::after {
  content: "\25C6" / "";
  color: var(--ticker-time);
  margin-inline: 22px;
  font-size: .62em;
  vertical-align: middle;
  opacity: .85;
}
.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-fixed); 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-fixed); 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-brand { margin-bottom: 36px; }
.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: 460px; margin-top: 12px; line-height: 1.6; }
/* One even grid holds every column (6 sections + standards + social) so nothing floats in a
   half-empty row, and all columns share the same responsive step: 4 → 3 → 2 → 1. */
.lz-ft-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 32px; padding-bottom: 32px; }
/* Column label — a styled div, NOT a heading (see footer.php). */
.lz-ft-col__h { color: #fff; font-size: 14px; font-weight: var(--weight-heavy); margin: 0 0 12px; }
.lz-ft-col__h a { color: #fff; }
.lz-ft-col__h .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-credit {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; margin-top: 6px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
/* Consent withdrawal control — a button that has to read as one of the footer's fine-print
   links, not as a call to action. */
.lz-ft-cookies {
  font: inherit; color: inherit; background: none; border: none; padding: 0;
  cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
}
.lz-ft-cookies:hover { color: rgba(255,255,255,.85); }
@media (max-width: 900px) { .lz-ft-cols { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .lz-ft-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 360px) { .lz-ft-cols { 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,
.lz-event 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;
}
/* Section-color accent bar under the article headline — puts the queried section's
   color (var(--sec), set on .lz-article/.lz-event) to work so pages aren't all-grey.
   Block box in the RTL column, so it sits under the headline's start (right) edge. */
.lz-article h1.lz-title::after,
.lz-event h1.lz-title::after {
  content: ""; display: block; width: 64px; height: 5px;
  margin-top: 16px; border-radius: var(--radius-pill);
  background: var(--sec);                                  /* fallback */
  background: color-mix(in srgb, var(--sec) 75%, #000);    /* deepened so mustard/olive read richly on paper */
}
.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;
}
/* Chip text is darkened vs the raw section color so 11.5px bold text clears WCAG AA
   (≥4.5:1) on the light tint. Backgrounds stay the section hue. */
.lz-chip--restaurants  { background: rgba(217,43,28,.12);  color: var(--chip-restaurants-fg); }
.lz-chip--food-news    { background: rgba(14,110,100,.14); color: var(--chip-food-news-fg); }
.lz-chip--top-picks    { background: rgba(179,68,108,.14); color: var(--chip-top-picks-fg); }
.lz-chip--new-on-shelf { background: rgba(240,168,28,.22); color: var(--chip-new-on-shelf-fg); }
.lz-chip--food-events  { background: rgba(92,124,62,.16);  color: var(--chip-food-events-fg); }
.lz-chip--guides       { background: rgba(156,107,62,.18); color: var(--chip-guides-fg); }

/* 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: var(--surface-card); 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-small-text); 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: 46px; height: 46px; 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: 19px; flex-shrink: 0;
}
.lz-byline__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lz-byline__meta { line-height: 1.35; }
.lz-byline__name { font-weight: var(--weight-heavy); font-size: 16px; }
.lz-byline__name a { color: var(--red-deep); text-decoration: none; }
.lz-byline__name a:hover { color: var(--red-small-text); }
.lz-byline__sub { font-size: var(--fs-meta); color: var(--ink-soft); }
.lz-byline__share { margin-inline-start: auto; }

/* share cluster (WhatsApp / Facebook / X / copy-link) */
.lz-share { display: inline-flex; align-items: center; gap: 8px; }
.lz-share__label { font-size: var(--fs-meta); font-weight: var(--weight-bold); color: var(--ink-soft); }
.lz-share__btn {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: var(--radius-pill);
  border: var(--border-hair); background: transparent; color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  position: relative; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.lz-share__btn:hover, .lz-share__btn:focus-visible { background: var(--ink-fixed); color: #fff; border-color: var(--ink-fixed); }
.lz-share__copied {
  position: absolute; bottom: calc(100% + 6px); inset-inline-end: 0; white-space: nowrap;
  background: var(--ink-fixed); color: #fff; font-size: 11px; font-weight: var(--weight-bold);
  padding: 3px 8px; border-radius: var(--radius-pill); opacity: 0; transform: translateY(4px);
  pointer-events: none; transition: opacity .15s ease, transform .15s ease;
}
.lz-share__copy.is-copied .lz-share__copied { opacity: 1; transform: translateY(0); }

/* 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-fixed); border: 2px solid var(--paper); outline: 2px solid var(--ink-fixed);
  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: var(--surface-card); 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-fixed); 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-fixed); 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-fixed); 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); }
.lz-readalso__thumb { flex: none; width: 44px; height: 44px; border-radius: 10px; overflow: hidden; background: var(--surface-card); }
.lz-readalso__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lz-readalso__title { line-height: 1.3; }

/* 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-fixed); 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); }

/* form consent / privacy notices (GDPR + Israeli anti-spam). Newsletter = explicit opt-in
   checkbox; contact/comments = inline transparency notice. */
.lz-newsletter__consent { flex-basis: 100%; display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; line-height: 1.45; opacity: .92; cursor: pointer; margin-top: 2px; }
.lz-newsletter__consent input[type="checkbox"] { min-width: 0; width: 16px; height: 16px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--mustard); cursor: pointer; }
.lz-newsletter__consent a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.lz-form-consent { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; margin: 4px 0 14px; }
.lz-form-consent a { color: var(--red-deep); text-decoration: underline; text-underline-offset: 2px; }
.lz-commentform__note { font-size: 12px; color: var(--ink-soft); line-height: 1.5; margin: 8px 0 0; }
.lz-commentform__note a { color: var(--red-deep); text-decoration: underline; }

/* mini card + related */
.lz-minicard {
  display: grid; grid-template-columns: 112px 1fr; gap: 14px; background: var(--surface-card); 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; }
.lz-related--section { border-top: 0; padding-top: 0; margin-top: 0; }

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

@media (max-width: 560px) {
  /* share drops to its own line but aligns to the reading edge (right), under the byline —
     not floated to the opposite side. */
  .lz-byline__share { margin-inline-start: 0; width: 100%; margin-top: 8px; }
  .lz-byline-compact { align-items: flex-start; }
  .lz-byline-compact__meta { flex: 1 1 100%; }
  .lz-byline-compact .lz-share { margin-inline-start: 0; }
  .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: var(--text-on-inverse); }
.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); }
/* Image-less lead: section-tinted fill (var(--sec)) + faded wordmark, so the hero
   never renders as a flat empty block. Mirrors the .lz-card__ph card fallback. */
.lz-lead__ph { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; background: var(--sec); background: linear-gradient(135deg, var(--sec), color-mix(in srgb, var(--sec) 66%, #000)); }
.lz-lead__ph-mark { font-size: clamp(72px, 13vw, 150px); line-height: 1; color: rgba(255, 255, 255, .17); letter-spacing: .02em; user-select: none; }

/* "עוד עכשיו" 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: var(--surface-card); 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-fixed); border-radius: 3px; box-shadow: var(--shadow-shelf); margin-bottom: 26px; }

/* trend card */
.lz-trend { background: var(--surface-card); 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; inset-inline-end: 16px; font-weight: var(--weight-black); font-size: 13px; }
.lz-trend--new .lz-trend__dir { color: var(--trend-new-fg); }
.lz-trend--same .lz-trend__dir { color: var(--ink-soft); }
.lz-trend--down .lz-trend__dir { color: var(--red-small-text); }
.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: var(--surface-card); 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-fixed); 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; order: -1; }   /* image-first on mobile: the appetite photo leads, headline follows */
  .lz-lead__txt { padding: 26px 24px 28px; }
  .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-fixed); 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: var(--sec-on, #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); }
/* Is an <h2> (see search.php) — neutralise the UA heading defaults so it looks unchanged. */
.lz-search-count { font-size: var(--fs-lead); color: var(--ink-soft); font-weight: var(--weight-body); margin: 0; }
.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: var(--surface-card); 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 { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: var(--fs-meta); color: var(--ink-soft); margin: 0 0 22px; }
.lz-byline-compact__meta { min-width: 0; }
/* desktop: float share to the opposite (left) end of the byline row; mobile handled below */
@media (min-width: 561px) { .lz-byline-compact .lz-share { margin-inline-start: auto; } }
.lz-byline-compact b { font-weight: var(--weight-heavy); }
.lz-byline-compact__meta a { color: var(--red-deep); text-decoration: none; }
.lz-byline-compact__meta a:hover { color: var(--red-small-text); }

/* 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-fixed); 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-fixed); 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: var(--sec-on, #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; }

/* event details bar — compact horizontal box in the single-column article flow (the event
   part now uses the .lz-article layout, so this replaces the old sticky side panel). */
.lz-eventbar {
  display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between;
  background: var(--surface-card); border: var(--border-ink); border-radius: var(--radius-card);
  border-inline-start: 6px solid var(--sec, var(--olive));
  padding: 18px 22px; margin: 24px 0 30px; box-sizing: border-box;
}
.lz-eventbar__info { display: flex; flex-wrap: wrap; gap: 12px 34px; min-width: 0; }
.lz-eventbar__row { display: flex; align-items: center; gap: 9px; font-size: 15.5px; color: var(--ink); line-height: 1.35; }
.lz-eventbar__ic { font-size: 18px; line-height: 1; flex-shrink: 0; }
.lz-eventbar__row b { color: var(--ink-soft); font-weight: var(--weight-bold); font-size: 13px; }
.lz-eventbar__row time, .lz-eventbar__row > span:last-child { font-weight: var(--weight-heavy); }
.lz-eventbar .lz-btn { flex-shrink: 0; }
@media (max-width: 560px) {
  .lz-eventbar { flex-direction: column; align-items: stretch; gap: 14px; }
  .lz-eventbar__info { flex-direction: column; gap: 12px; }
  .lz-eventbar .lz-btn { 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; }
.lz-doc .lz-pledge p { padding: 16px 20px; margin: 0; font-size: 16px; line-height: 1.65; }

/* 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; }
/* Honeypot — visually hidden WITHOUT off-screen positioning. `left:-9999px` resolves the same
   as the skip-link bug (rightward overflow in RTL); the clip pattern hides it in place, zero
   overflow, while still present in the DOM for bots to fill. */
.lz-hp { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); border: 0; white-space: nowrap; }
.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(--notice-ok-fg); border: 1px solid var(--notice-ok-fg); }
.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; }
}

/* ---------- GDPR cookie banner defensive constraint ----------
   The simple-gdpr-cookie-compliance full-width banner uses width:max-content, and its flex
   children keep the default min-width:auto — so on narrow Android widths the content can't
   shrink and spills past the wrapper, widening the page (horizontal scroll). We size it to
   the viewport and let the flex children shrink + wrap. Plugin-owned element; theme override. */
.sgcc-main-wrapper[data-layout="full_width"],
.sgcc-main-wrapper.layout-full {
  --width: auto !important;
  width: auto !important;
  max-width: calc(100vw - 20px) !important;
  box-sizing: border-box !important;
}
.sgcc-main-wrapper .sgcc-container,
.sgcc-main-wrapper .sgcc-notice-content,
.sgcc-main-wrapper .cookie-compliance-button-block,
.sgcc-main-wrapper .sgcc-notice-content > * {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.sgcc-main-wrapper .sgcc-notice-content { overflow-wrap: anywhere; }
@media (max-width: 600px) {
  .sgcc-main-wrapper .sgcc-container { flex-wrap: wrap; }
}

/* ============================================================
   COMMENTS (comments.php) — native, hand-coded, ~0KB theme JS. RTL,
   paper/ink, --sec section accent. Matches the article components.
   ============================================================ */
.lz-comments {
  max-width: var(--read-max); margin: 40px auto 0; padding: 40px var(--wrap-pad) 56px;
  border-top: var(--border-hair);
}
.lz-comments__head { display: flex; align-items: baseline; gap: 12px; margin: 0 0 24px; }
.lz-comments__title { font-family: var(--font-display); font-weight: var(--weight-display); font-size: var(--fs-section); line-height: 1; color: var(--ink); margin: 0; }
.lz-comments__count {
  font-family: var(--font-body); font-weight: var(--weight-black); font-size: 14px; line-height: 1.5;
  background: var(--ink-fixed); color: #fff; border-radius: var(--radius-pill); padding: 3px 12px;
}
.lz-comments__closed { font-size: var(--fs-meta); color: var(--ink-soft); margin: 0 0 24px; }

/* thread */
.lz-commentlist, .lz-commentlist .children { list-style: none; margin: 0; padding: 0; }
.lz-commentlist .children { margin-top: 16px; padding-inline-start: 22px; border-inline-start: 2px solid var(--line); }
.lz-comment { margin: 0 0 16px; }
.lz-comment__box { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.lz-comment__avatar {
  width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--weight-black); color: var(--ink-soft); font-size: 18px; flex-shrink: 0;
}
.lz-comment__main { min-width: 0; background: var(--surface-card); border: var(--border-hair); border-radius: var(--radius-card); padding: 14px 18px; }
.lz-comment__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 6px; }
.lz-comment__author { font-weight: var(--weight-heavy); font-size: var(--fs-ui); color: var(--ink); }
.lz-comment__time { font-size: var(--fs-meta); color: var(--ink-soft); }
.lz-comment__badge {
  font-size: var(--fs-chip); font-weight: var(--weight-black); letter-spacing: .03em;
  background: var(--sec); color: var(--sec-on, #fff); border-radius: var(--radius-pill); padding: 2px 9px;
}
.lz-comment__moderation { font-size: var(--fs-meta); color: var(--red-deep); font-weight: var(--weight-bold); margin: 0 0 8px; }
.lz-comment__body { font-size: 16px; line-height: 1.7; color: var(--ink); overflow-wrap: anywhere; }
.lz-comment__body p { margin: 0 0 10px; }
.lz-comment__body p:last-child { margin-bottom: 0; }
.lz-comment__body a { color: var(--red-deep); }
.lz-comment__actions { display: flex; gap: 14px; align-items: center; margin-top: 10px; }
.lz-comment__actions a { font-size: var(--fs-meta); font-weight: var(--weight-bold); text-decoration: none; color: var(--ink); }
.lz-comment__actions a:hover { color: var(--red-deep); }
/* the post author's own replies — accent border + tinted panel */
.lz-comment.bypostauthor > .lz-comment__box > .lz-comment__main {
  border-color: var(--sec); border-inline-start: 4px solid var(--sec); background: var(--paper-deep);
}
.lz-comments .comment-navigation { display: flex; justify-content: space-between; gap: 12px; margin: 8px 0 24px; font-size: var(--fs-meta); font-weight: var(--weight-bold); }
.lz-comments .comment-navigation a { color: var(--ink); text-decoration: none; }
.lz-comments .comment-navigation a:hover { color: var(--red-deep); }
/* Turnstile widget in the comment form — sits just above the submit button. */
/* Reserve the widget's box. Turnstile now loads lazily (see inc/turnstile.php), so without a
   held height the iframe appears late and shoves the submit button down — a layout shift that
   did not exist while the script was eager. 65px is the widget's normal-size height. */
.lz-turnstile { margin: 4px 0 16px; min-height: 65px; }

/* form (#respond) */
.lz-commentform { margin-top: 40px; }
.lz-commentform .comment-reply-title {
  font-family: var(--font-display); font-weight: var(--weight-display); font-size: 34px; line-height: 1; color: var(--ink); margin: 0 0 14px;
}
.lz-commentform .comment-reply-title small { font-size: 15px; margin-inline-start: 10px; font-family: var(--font-body); }
.lz-commentform .comment-reply-title small a { color: var(--red-deep); }
.lz-commentform__form { display: grid; gap: 16px; }
.lz-field { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.lz-field label { font-size: var(--fs-meta); font-weight: var(--weight-heavy); color: var(--ink); }
.lz-field input, .lz-field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink); background: var(--surface-card);
  border: 1.5px solid var(--ink); border-radius: 14px; padding: 12px 16px; width: 100%; box-sizing: border-box;
}
.lz-field textarea { border-radius: var(--radius-card); resize: vertical; min-height: 130px; line-height: 1.6; }
.lz-field input:focus, .lz-field textarea:focus { outline: var(--focus-ring); outline-offset: var(--focus-ring-offset); }
.lz-req { color: var(--red-small-text); }
.lz-commentform__loggedin { font-size: var(--fs-meta); color: var(--ink-soft); margin: 0; }
.lz-commentform__loggedin a { color: var(--red-deep); }
.lz-commentform .form-submit { margin: 0; }
/* two-up name/email on wide, single column on narrow */
@media (min-width: 620px) {
  .lz-commentform__form { grid-template-columns: 1fr 1fr; }
  .lz-commentform__form > * { grid-column: 1 / -1; }
  .lz-commentform__form > .lz-field--half { grid-column: auto; }
}

/* ============================================================
   ABOUT (page-about.php) — hero statement + values grid + prose + team grid.
   Ported from templates/about. RTL.
   ============================================================ */
.lz-about { padding-bottom: 8px; }
.lz-about__hero { border-bottom: 3px solid var(--ink); padding-bottom: 30px; margin-bottom: 34px; }
.lz-about__statement {
  font-family: var(--font-display); font-weight: var(--weight-display);
  font-size: clamp(44px, 6vw, 84px); line-height: .94; color: var(--ink);
  margin: 0; max-width: 900px; text-wrap: balance;
}
.lz-about__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 46px; }
.lz-value { border-top: 3px solid var(--ink); padding-top: 14px; }
.lz-value__title { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 28px; color: var(--ink); margin: 0 0 6px; line-height: 1; }
.lz-value p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.lz-about__prose { max-width: var(--read-max); margin-inline: auto; margin-bottom: 8px; }
.lz-about__team { margin: 50px 0 40px; }
.lz-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 22px; }
.lz-teammate { text-align: center; }
.lz-teammate__ava {
  width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; border: 3px solid var(--ink);
  font-family: var(--font-display); font-weight: var(--weight-display); font-size: 42px; color: #fff;
  text-decoration: none; transition: transform .2s ease;
}
.lz-teammate__ava:hover { transform: translateY(var(--lift-hover)); }
.lz-teammate__ava img { width: 100%; height: 100%; object-fit: cover; }
.lz-ava--0 { background: linear-gradient(135deg,#E86C5A,#C2311C); }
.lz-ava--1 { background: linear-gradient(135deg,#F0B94C,#C98A12); }
.lz-ava--2 { background: linear-gradient(135deg,#C4688A,#8E3358); }
.lz-ava--3 { background: linear-gradient(135deg,#7FA05A,#4C6B30); }
.lz-teammate__name { font-weight: var(--weight-heavy); font-size: 17px; color: var(--ink); }
.lz-teammate__name a { color: inherit; text-decoration: none; }
.lz-teammate__name a:hover { color: var(--red-deep); }
.lz-teammate__role { font-size: var(--fs-meta); color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 900px) { .lz-about__values { grid-template-columns: 1fr; gap: 16px; } .lz-team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lz-team { grid-template-columns: 1fr 1fr; gap: 16px; } }
/* About CTA + follow */
.lz-about__cta { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; background: var(--paper-deep); border: var(--border-ink); border-radius: var(--radius-card); padding: 26px 28px; margin: 14px 0 28px; box-sizing: border-box; }
.lz-about__cta-copy { flex: 1 1 340px; }
.lz-about__cta-copy h2 { font-family: var(--font-display); font-weight: var(--weight-display); font-size: 32px; color: var(--ink); margin: 0 0 8px; line-height: 1; }
.lz-about__cta-copy p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 14px; max-width: 540px; }
.lz-about__cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lz-about__follow { text-align: center; flex: 0 0 auto; }
.lz-about__follow-label { display: block; font-size: var(--fs-meta); font-weight: var(--weight-heavy); color: var(--ink-soft); margin-bottom: 8px; }
.lz-about__social { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.lz-about__social 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; transition: background .15s ease, color .15s ease; }
.lz-about__social a:hover { background: var(--ink-fixed); color: #fff; }
.lz-about__sister { display: inline-block; margin-top: 12px; font-size: var(--fs-meta); font-weight: var(--weight-bold); color: var(--red-deep); text-decoration: none; }
.lz-about__sister:hover { color: var(--red-small-text); }
@media (max-width: 640px) { .lz-about__cta { flex-direction: column; align-items: stretch; text-align: center; } .lz-about__cta-actions { justify-content: center; } .lz-about__cta-copy p { margin-inline: auto; } }

/* ---------- cookie consent ----------
   Replaces the consent plugin's off-brand grey slab (see inc/consent.php). Paper + ink rule,
   RTL-native like everything else. Fixed rather than sticky so it never participates in layout
   — with position:fixed a late reveal costs no CLS. */
.lz-consent {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 1100;
  background: var(--paper); border-top: var(--border-ink);
  box-shadow: 0 -8px 28px rgba(23, 19, 16, .14);
  animation: lz-consent-in .28s ease-out both;
}
/* The `hidden` attribute must win over the display below, or a stored choice would not hide it. */
.lz-consent[hidden] { display: none; }
.lz-consent__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-5); padding-block: var(--space-4);
}
.lz-consent__copy {
  flex: 1 1 380px; margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft);
}
.lz-consent__copy strong { color: var(--ink); font-weight: var(--weight-heavy); }
.lz-consent__copy a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.lz-consent__copy a:hover { color: var(--red-deep); }
.lz-consent__actions { display: flex; flex: 0 0 auto; gap: var(--space-2); }
@keyframes lz-consent-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
@media (max-width: 640px) {
  .lz-consent__inner { gap: var(--space-3); }
  .lz-consent__actions { width: 100%; }
  /* Equal widths so neither answer is the visually cheaper one to pick. */
  .lz-consent__actions .lz-btn { flex: 1 1 0; text-align: center; }
}

/* ---------- 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;
  }
}

/* ---------- click-to-load embed facade (inc/compat.php) ----------
   Replaces a TikTok embed that would otherwise pull ~20MB of video before the reader has
   asked for it. Sized to the embed's own footprint so activating it shifts layout as little
   as possible. */
.lz-embedfacade { margin: 22px auto; max-width: 605px; }
.lz-embedfacade__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 320px; padding: 28px 22px;
  background: var(--paper-deep); color: var(--ink);
  border: 2px solid var(--ink); border-radius: var(--radius-card);
  font-family: var(--font-body); cursor: pointer; text-align: center;
  transition: background .18s ease;
}
.lz-embedfacade__btn:hover { background: var(--surface-card); }
.lz-embedfacade__play {
  width: 58px; height: 58px; border-radius: 50%; background: var(--ink-fixed);
  position: relative; flex-shrink: 0;
}
.lz-embedfacade__play::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid; border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent #fff;
}
.lz-embedfacade__label { font-size: var(--fs-h3); font-weight: var(--weight-heavy); line-height: 1.3; }
.lz-embedfacade__note { font-size: var(--fs-meta); color: var(--ink-soft); }
