/* ============================================================
   The Wellness Ledger - Crimson Ledger theme
   gumitidereport.com  (independent Gumitide review)
   wl- prefixed BEM (block__element--modifier) + native nesting
   Order: reset / tokens / fallback fonts / base / layout /
          chrome / components / sections / utilities / responsive
   ============================================================ */

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0}
html{-webkit-text-size-adjust:100%;text-size-adjust:100%;scroll-behavior:smooth}
img,svg{display:block;max-width:100%}
button,input,textarea,select{font:inherit;color:inherit}
a{color:inherit}
ul{list-style:none;padding:0}
table{border-collapse:collapse;width:100%}

/* ---------- tokens ---------- */
:root{
  /* Crimson Ledger palette (product colors: wine/garnet + citron) */
  --wine-900:#4f0f23;
  --wine-800:#651230;
  --wine-700:#7c1734;   /* primary garnet */
  --wine-600:#9a1d43;
  --wine-500:#b6324f;
  --citron-600:#9aa413;
  --citron-500:#c2cf21;  /* bright accent / CTA */
  --citron-400:#d6e23a;
  --citron-100:#f3f6cd;

  --paper:#faf7f2;       /* warm off-white bg */
  --paper-2:#f3ede3;     /* alt section bg */
  --card:#ffffff;
  --ink:#241f22;         /* warm charcoal text */
  --ink-soft:#534b50;    /* muted, AA on paper */
  --line:#e7dfd3;        /* warm borders */
  --line-2:#d8cdbd;

  --good:#2f7d4f;
  --warn:#bf6a12;
  --bad:#a3242b;
  --star:#c79a2e;        /* gold stars */

  --wl-font-head:"Hubot Sans","Hubot fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --wl-font-body:"Mona Sans","Mona fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;

  --r-sm:8px; --r-md:14px; --r-lg:22px; --r-pill:999px;
  --sp:clamp(1rem,.6rem + 2vw,2rem);
  --shadow-sm:0 1px 2px rgba(40,15,25,.06),0 2px 8px rgba(40,15,25,.05);
  --shadow-md:0 10px 30px rgba(79,15,35,.10);
  --maxw:1140px;
}

/* ---------- metric-matched fallback fonts (anti-CLS) ---------- */
@font-face{font-family:"Hubot fallback";src:local("Arial");size-adjust:97%;ascent-override:92%;descent-override:24%;line-gap-override:0%}
@font-face{font-family:"Mona fallback";src:local("Arial");size-adjust:99%;ascent-override:94%;descent-override:24%;line-gap-override:0%}

/* ---------- base ---------- */
body{
  font-family:var(--wl-font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  font-size:1.02rem;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:var(--wl-font-head);line-height:1.12;font-weight:800;color:var(--wine-800);letter-spacing:-.015em}
h1{font-size:clamp(2rem,1.3rem + 3.2vw,3.1rem)}
h2{font-size:clamp(1.5rem,1.1rem + 1.8vw,2.2rem);margin-bottom:.55em}
h3{font-size:clamp(1.18rem,1rem + .7vw,1.45rem);margin-bottom:.4em}
h4{font-size:1.05rem;font-weight:700}
p{margin:0 0 1.05em}
a{text-decoration-thickness:1px;text-underline-offset:2px}
main p a,main li a{color:var(--wine-700);font-weight:600}
main p a:hover{color:var(--wine-600)}
strong{font-weight:700}
:focus-visible{outline:3px solid var(--wine-600);outline-offset:2px;border-radius:4px}

/* ---------- layout ---------- */
.wl-container{width:min(100% - 2rem,var(--maxw));margin-inline:auto}
.wl-section{padding-block:clamp(2.4rem,1.6rem + 3vw,4rem)}
.wl-section--tint{background:var(--paper-2)}
.wl-section--wine{background:linear-gradient(160deg,var(--wine-800),var(--wine-900));color:#f7e9ee}
.wl-section__head{max-width:62ch;margin-bottom:1.6rem}
.wl-section__kicker{font-family:var(--wl-font-head);font-weight:700;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--wine-600)}
.wl-section--wine .wl-section__kicker{color:var(--citron-400)}
.wl-section--wine h2,.wl-section--wine h3{color:#fff}
.wl-skip{position:absolute;left:-999px;top:0;background:var(--wine-700);color:#fff;padding:.6rem 1rem;z-index:60;border-radius:0 0 var(--r-sm) 0}
.wl-skip:focus{left:0}

/* ---------- chrome: disclosure banner ---------- */
.wl-banner{background:var(--wine-900);color:#f4dde4;font-size:.86rem}
.wl-banner__inner{display:flex;gap:.6rem;align-items:center;justify-content:center;padding:.5rem 1rem;text-align:center;flex-wrap:wrap}
.wl-banner a{color:var(--citron-400);font-weight:700;text-decoration:underline}

/* ---------- chrome: header ---------- */
.wl-header{position:sticky;top:0;z-index:50;background:rgba(250,247,242,.92);backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid var(--line)}
.wl-header__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.55rem 0}
.wl-brand{display:flex;align-items:center;gap:.6rem;text-decoration:none}
.wl-brand__mark{width:38px;height:38px;flex:none}
.wl-brand__name{font-family:var(--wl-font-head);font-weight:800;font-size:1.12rem;color:var(--wine-800);line-height:1}
.wl-brand__tag{display:block;font-family:var(--wl-font-body);font-weight:600;font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft)}
.wl-nav{display:flex;align-items:center;gap:.3rem}
.wl-nav__link{text-decoration:none;color:var(--ink);font-weight:600;font-size:.92rem;padding:.5rem .7rem;border-radius:var(--r-sm)}
.wl-nav__link:hover{background:var(--paper-2)}
.wl-nav__link[aria-current="page"]{color:var(--wine-700);box-shadow:inset 0 -2px 0 var(--citron-500)}
.wl-header .wl-btn{padding:.5rem .9rem;font-size:.85rem}
.wl-burger{display:none;background:var(--card);border:1px solid var(--line-2);border-radius:var(--r-sm);width:44px;height:44px;align-items:center;justify-content:center;cursor:pointer}
.wl-burger span,.wl-burger span::before,.wl-burger span::after{content:"";display:block;width:20px;height:2px;background:var(--wine-800);position:relative;transition:.2s}
.wl-burger span::before{position:absolute;top:-6px}
.wl-burger span::after{position:absolute;top:6px}

/* ---------- chrome: breadcrumb ---------- */
.wl-crumb{font-size:.82rem;color:var(--ink-soft);padding:.7rem 0}
.wl-crumb ol{display:flex;flex-wrap:wrap;gap:.35rem;align-items:center}
.wl-crumb a{color:var(--wine-700);text-decoration:none;font-weight:600}
.wl-crumb a:hover{text-decoration:underline}
.wl-crumb li[aria-current]{color:var(--ink-soft)}

/* ---------- components: buttons ---------- */
.wl-btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font-family:var(--wl-font-head);font-weight:800;text-decoration:none;border:none;cursor:pointer;border-radius:var(--r-pill);padding:.85rem 1.5rem;font-size:1rem;line-height:1;transition:transform .12s ease,box-shadow .12s ease,background .12s ease;min-height:48px}
.wl-btn--cta{background:var(--citron-500);color:#3a0e1c;box-shadow:0 6px 0 var(--citron-600)}
.wl-btn--cta:hover{transform:translateY(-2px);box-shadow:0 8px 0 var(--citron-600)}
.wl-btn--cta:active{transform:translateY(2px);box-shadow:0 3px 0 var(--citron-600)}
.wl-btn--wine{background:var(--wine-700);color:#fff;box-shadow:0 6px 0 var(--wine-900)}
.wl-btn--wine:hover{transform:translateY(-2px)}
.wl-btn--ghost{background:transparent;border:2px solid var(--line-2);color:var(--wine-800);box-shadow:none;min-height:44px;padding:.7rem 1.2rem}
.wl-btn--ghost:hover{border-color:var(--wine-600);background:var(--card)}
.wl-btn--block{width:100%}
.wl-cta-note{font-size:.78rem;color:var(--ink-soft);margin:.5rem 0 0}
.wl-cta-note a{color:var(--wine-700);font-weight:600}

/* ---------- components: stars ---------- */
.wl-stars{display:inline-flex;gap:1px;color:var(--star);font-size:1.05em;letter-spacing:.05em;line-height:1}
.wl-stars--lg{font-size:1.5rem}

/* ---------- hero / verdict ---------- */
.wl-hero{padding-block:clamp(1.6rem,1rem + 2vw,2.6rem)}
.wl-hero__grid{display:grid;grid-template-columns:1.1fr .92fr;gap:clamp(1.4rem,1rem + 2vw,2.6rem);align-items:center}
.wl-hero__media{align-self:center}
.wl-eyebrow{display:inline-flex;align-items:center;gap:.5rem;background:var(--citron-100);color:var(--wine-800);font-family:var(--wl-font-head);font-weight:700;font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;padding:.35rem .7rem;border-radius:var(--r-pill);margin-bottom:1rem}
.wl-hero h1{margin-bottom:.5rem}
.wl-hero__sub{font-size:1.12rem;color:var(--ink-soft);max-width:46ch}
.wl-byline{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem .8rem;margin-top:1.1rem;font-size:.86rem;color:var(--ink-soft);padding-top:1rem;border-top:1px solid var(--line)}
.wl-byline strong{color:var(--ink)}
.wl-byline a{color:var(--wine-700);font-weight:600}
.wl-byline__dot{width:4px;height:4px;border-radius:50%;background:var(--line-2)}

.wl-verdict{background:var(--card);border:1px solid var(--line);border-radius:var(--r-lg);box-shadow:var(--shadow-md);overflow:hidden}
.wl-verdict__top{display:flex;gap:1rem;align-items:center;padding:1.3rem;background:linear-gradient(150deg,var(--wine-700),var(--wine-900));color:#fff}
.wl-score{--pct:84%;flex:none;width:104px;height:104px;border-radius:50%;display:grid;place-items:center;background:conic-gradient(var(--citron-400) var(--pct),rgba(255,255,255,.18) 0);position:relative}
.wl-score::after{content:"";position:absolute;inset:9px;border-radius:50%;background:var(--wine-800)}
.wl-score__inner{position:relative;z-index:1;text-align:center;line-height:1}
.wl-score__num{font-family:var(--wl-font-head);font-weight:800;font-size:1.9rem;color:#fff}
.wl-score__den{font-size:.72rem;color:var(--citron-100);opacity:.85}
.wl-verdict__lede h2{color:#fff;font-size:1.25rem;margin-bottom:.25rem}
.wl-verdict__lede p{margin:0;color:#f3dbe2;font-size:.92rem}
.wl-verdict__body{padding:1.3rem}
.wl-verdict__call{font-size:1.02rem}
.wl-verdict__call strong{color:var(--wine-800)}
/* full-width verdict scorecard (hero) */
.wl-verdict--wide{margin-top:clamp(1.4rem,.9rem + 2vw,2.4rem)}
.wl-verdict--wide .wl-verdict__top{flex-wrap:wrap;padding:1.4rem clamp(1.3rem,.8rem + 1.5vw,2rem)}
.wl-verdict__usermark{margin-left:auto;display:flex;align-items:center;gap:.6rem;color:#f3dbe2;font-size:.92rem;line-height:1.25}
.wl-verdict__usermark strong{color:#fff;font-size:1.06rem}
.wl-verdict__usermark .wl-stars{color:var(--citron-400);font-size:1.35rem}
.wl-verdict__body--wide{display:grid;grid-template-columns:1.15fr 1fr;gap:clamp(1.3rem,.8rem + 1.6vw,2.4rem);align-items:start;padding:clamp(1.3rem,.8rem + 1.5vw,2rem)}
.wl-verdict__body--wide .wl-verdict__call{margin-top:0;font-size:1.06rem}
.wl-verdict__body--wide .wl-facts{margin:0;align-self:stretch}
.wl-verdict__main .wl-btn{margin-top:.4rem}

/* quick facts (dl) */
.wl-facts{display:grid;grid-template-columns:1fr 1fr;gap:.1rem .1rem;margin:1.1rem 0;border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden}
.wl-facts__item{display:flex;flex-direction:column-reverse;gap:.15rem;padding:.7rem .85rem;background:var(--card);border:.5px solid var(--line)}
.wl-facts dt{font-size:.72rem;letter-spacing:.04em;text-transform:uppercase;color:var(--ink-soft);font-weight:600}
.wl-facts dd{font-family:var(--wl-font-head);font-weight:700;font-size:.98rem;color:var(--wine-800)}

/* ---------- callouts ---------- */
.wl-tldr{background:var(--citron-100);border:1px solid #e4ea9b;border-left:5px solid var(--citron-500);border-radius:var(--r-md);padding:1.2rem 1.3rem}
.wl-tldr__label{font-family:var(--wl-font-head);font-weight:800;font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;color:var(--wine-700);margin-bottom:.4rem}
.wl-tldr p:last-child{margin-bottom:0}

.wl-note{background:var(--paper-2);border:1px dashed var(--line-2);border-radius:var(--r-md);padding:1rem 1.1rem;font-size:.92rem;color:var(--ink-soft)}

/* ---------- pros / cons ---------- */
.wl-pc{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.wl-pc__card{background:var(--card);border:1px solid var(--line);border-radius:var(--r-md);padding:1.2rem 1.3rem;box-shadow:var(--shadow-sm)}
.wl-pc__card--pro{border-top:4px solid var(--good)}
.wl-pc__card--con{border-top:4px solid var(--bad)}
.wl-pc h3{display:flex;align-items:center;gap:.5rem}
.wl-pc__list li{position:relative;padding-left:1.7rem;margin-bottom:.6rem;line-height:1.5}
.wl-pc__list li::before{position:absolute;left:0;top:.05rem;font-weight:800;font-family:var(--wl-font-head)}
.wl-pc__card--pro li::before{content:"+";color:var(--good)}
.wl-pc__card--con li::before{content:"\2013";color:var(--bad)}

/* ---------- rating bars (criteria) ---------- */
.wl-bars{display:grid;gap:.85rem}
.wl-bar{display:grid;grid-template-columns:1fr auto;gap:.2rem .8rem;align-items:center}
.wl-bar__label{font-weight:600;font-size:.95rem}
.wl-bar__val{font-family:var(--wl-font-head);font-weight:800;color:var(--wine-700);font-size:1rem}
.wl-bar__track{grid-column:1 / -1;height:9px;border-radius:var(--r-pill);background:var(--paper-2);overflow:hidden;border:1px solid var(--line)}
.wl-bar__fill{height:100%;border-radius:var(--r-pill);background:linear-gradient(90deg,var(--wine-600),var(--wine-500))}

/* ---------- generic tables ---------- */
.wl-table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--r-md);background:var(--card)}
.wl-table{font-size:.95rem}
.wl-table caption{text-align:left;padding:.85rem 1rem;font-weight:700;font-family:var(--wl-font-head);color:var(--wine-800);background:var(--paper-2);border-bottom:1px solid var(--line)}
.wl-table th,.wl-table td{padding:.7rem .9rem;text-align:left;border-bottom:1px solid var(--line);vertical-align:top}
.wl-table thead th{background:var(--wine-800);color:#fff;font-size:.82rem;letter-spacing:.03em;text-transform:uppercase;border-bottom:none}
.wl-table tbody tr:last-child td{border-bottom:none}
.wl-table tbody tr:nth-child(even){background:#fbf8f3}
.wl-table td strong{color:var(--wine-800)}
.wl-table .num{font-family:var(--wl-font-head);font-weight:700;color:var(--wine-700);white-space:nowrap}

/* ---------- stat snapshot ---------- */
.wl-snapshot{display:grid;grid-template-columns:repeat(4,1fr);gap:.9rem}
.wl-stat{background:var(--card);border:1px solid var(--line);border-radius:var(--r-md);padding:1.1rem;text-align:center;box-shadow:var(--shadow-sm)}
.wl-stat__num{font-family:var(--wl-font-head);font-weight:800;font-size:clamp(1.5rem,1.1rem + 1.4vw,2.1rem);color:var(--wine-700);line-height:1}
.wl-stat__label{display:block;margin-top:.35rem;font-size:.82rem;color:var(--ink-soft);font-weight:600}
.wl-bigrating{display:flex;gap:1.4rem;align-items:center;flex-wrap:wrap;background:linear-gradient(150deg,var(--wine-800),var(--wine-900));color:#fff;border-radius:var(--r-lg);padding:1.4rem 1.6rem;margin-bottom:1.3rem}
.wl-bigrating__score{font-family:var(--wl-font-head);font-weight:800;font-size:3.4rem;line-height:.9}
.wl-bigrating__meta{font-size:.95rem;color:#f3dbe2}
.wl-bigrating__meta strong{color:#fff}
.wl-bigrating .wl-stars{color:var(--citron-400)}

/* ---------- distribution / theme frequency bars ---------- */
.wl-dist{display:grid;gap:.55rem}
.wl-distrow{display:grid;grid-template-columns:64px 1fr 48px;gap:.7rem;align-items:center;font-size:.92rem}
.wl-distrow__bar{height:14px;border-radius:var(--r-pill);background:var(--paper-2);border:1px solid var(--line);overflow:hidden}
.wl-distrow__fill{height:100%;background:linear-gradient(90deg,var(--wine-700),var(--wine-500))}
.wl-distrow__fill--alt{background:linear-gradient(90deg,var(--citron-600),var(--citron-500))}
.wl-distrow__pct{text-align:right;font-family:var(--wl-font-head);font-weight:700;color:var(--wine-700)}
.wl-themecol{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}

/* ---------- testimonials ---------- */
.wl-reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem}
.wl-rev{background:var(--card);border:1px solid var(--line);border-radius:var(--r-md);padding:1.2rem;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:.6rem}
.wl-rev__head{display:flex;align-items:center;gap:.7rem}
.wl-rev__avatar{width:42px;height:42px;border-radius:50%;flex:none;display:grid;place-items:center;font-family:var(--wl-font-head);font-weight:800;color:#fff;background:var(--wine-600);font-size:.95rem}
.wl-rev__who{font-weight:700;font-size:.95rem;line-height:1.2}
.wl-rev__meta{font-size:.78rem;color:var(--ink-soft)}
.wl-rev__badge{display:inline-flex;align-items:center;gap:.3rem;font-size:.7rem;font-weight:700;color:var(--good);background:#e9f4ee;border:1px solid #bfe0cc;border-radius:var(--r-pill);padding:.12rem .5rem;width:max-content}
.wl-rev__body{font-size:.93rem;margin:0}
.wl-rev--critical{border-left:4px solid var(--warn)}

/* ---------- review submission form ---------- */
.wl-form{background:var(--card);border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(1.2rem,.8rem + 1.4vw,2rem);box-shadow:var(--shadow-sm)}
.wl-field{margin-bottom:1.05rem}
.wl-field label{display:block;font-weight:700;font-size:.9rem;margin-bottom:.35rem}
.wl-field .wl-hint{font-weight:500;color:var(--ink-soft);font-size:.8rem}
.wl-input,.wl-textarea,.wl-select{width:100%;background:var(--paper);border:1px solid var(--line-2);border-radius:var(--r-sm);padding:.7rem .8rem;font-size:.98rem;min-height:48px}
.wl-textarea{min-height:120px;resize:vertical}
.wl-input:focus,.wl-textarea:focus,.wl-select:focus{border-color:var(--wine-600);background:#fff}
.wl-grid2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.wl-rate{display:inline-flex;flex-direction:row-reverse;gap:.15rem}
.wl-rate input{position:absolute;width:1px;height:1px;opacity:0;overflow:hidden}
.wl-rate label{cursor:pointer;font-size:2rem;line-height:1;color:var(--line-2);padding:.1rem;transition:color .1s;margin:0}
.wl-rate label:hover,.wl-rate label:hover ~ label,.wl-rate input:checked ~ label{color:var(--star)}
.wl-rate input:focus-visible + label{outline:3px solid var(--wine-600);outline-offset:2px;border-radius:4px}
.wl-check{display:flex;gap:.6rem;align-items:flex-start;font-size:.9rem;font-weight:500}
.wl-check input{width:20px;height:20px;margin-top:.15rem;flex:none;accent-color:var(--wine-700)}
.wl-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.wl-form__msg{display:none;background:#e9f4ee;border:1px solid #bfe0cc;color:#1c5b38;border-radius:var(--r-md);padding:1rem 1.1rem;font-weight:600;margin-bottom:1rem}
.wl-form__msg.is-visible{display:block}
.wl-form__rules{font-size:.8rem;color:var(--ink-soft);margin-top:.6rem}

/* ---------- FAQ ---------- */
.wl-faq{display:grid;gap:.7rem}
.wl-faq__item{background:var(--card);border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden}
.wl-faq__item summary{cursor:pointer;list-style:none;padding:1rem 1.1rem;font-family:var(--wl-font-head);font-weight:700;color:var(--wine-800);display:flex;justify-content:space-between;gap:1rem;align-items:center}
.wl-faq__item summary::-webkit-details-marker{display:none}
.wl-faq__item summary::after{content:"+";font-size:1.3rem;color:var(--wine-600);flex:none}
.wl-faq__item[open] summary::after{content:"\2013"}
.wl-faq__item .wl-faq__a{padding:0 1.1rem 1.1rem}
.wl-faq__item .wl-faq__a p:last-child{margin-bottom:0}

/* ---------- takeaways ---------- */
.wl-takeaways{background:var(--card);border:1px solid var(--line);border-left:5px solid var(--wine-600);border-radius:var(--r-md);padding:1.3rem 1.5rem}
.wl-takeaways li{position:relative;padding-left:1.8rem;margin-bottom:.6rem}
.wl-takeaways li::before{content:"\2713";position:absolute;left:0;top:0;color:var(--good);font-weight:800}
.wl-takeaways li:last-child{margin-bottom:0}

/* ---------- final cta ---------- */
.wl-final{text-align:center}
.wl-final__card{background:var(--card);border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(1.6rem,1rem + 2vw,2.6rem);box-shadow:var(--shadow-md);max-width:760px;margin-inline:auto}
.wl-final__price{font-family:var(--wl-font-head);font-weight:800;color:var(--wine-700);font-size:1.05rem;margin:.8rem 0}

/* ---------- product figure ---------- */
.wl-figure{text-align:center;margin:0}
.wl-figure img{margin-inline:auto;width:min(400px,94%);height:auto;filter:drop-shadow(0 22px 32px rgba(79,15,35,.26))}

/* ---------- prose helper for legal/method pages ---------- */
.wl-prose{max-width:72ch}
.wl-prose h2{margin-top:1.8rem}
.wl-prose h3{margin-top:1.3rem}
.wl-prose ul{margin:0 0 1.1em;padding-left:1.2rem;list-style:disc}
.wl-prose ul li{margin-bottom:.4rem}
.wl-prose ol{margin:0 0 1.1em;padding-left:1.3rem}
.wl-prose ol li{margin-bottom:.4rem}

/* ---------- footer ---------- */
.wl-footer{background:var(--wine-900);color:#e9cdd6;font-size:.9rem;padding-block:2.4rem 1.4rem}
.wl-footer a{color:#f3dbe2;text-decoration:none}
.wl-footer a:hover{text-decoration:underline;color:#fff}
.wl-footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:1.8rem;margin-bottom:1.6rem}
.wl-footer h3{color:#fff;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:.7rem}
.wl-footer__col ul li{margin-bottom:.45rem}
.wl-footer__brand{display:flex;align-items:center;gap:.6rem;margin-bottom:.7rem}
.wl-footer__brand .wl-brand__name{color:#fff}
.wl-footer__disc{border-top:1px solid rgba(255,255,255,.16);padding-top:1.2rem;font-size:.8rem;line-height:1.6;color:#d9b3bf}
.wl-footer__disc p{margin-bottom:.7rem}
.wl-tap{display:inline-block;padding:.25rem .15rem}

/* ---------- utilities ---------- */
.wl-vh{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.wl-stack > * + *{margin-top:1.1rem}
.wl-mt0{margin-top:0}
.wl-center{text-align:center}
.wl-lead{font-size:1.12rem;color:var(--ink-soft)}

/* ---------- responsive ---------- */
@media (max-width:880px){
  .wl-hero__grid{grid-template-columns:1fr;text-align:center}
  .wl-hero__sub{margin-inline:auto}
  .wl-hero__media{order:-1}
  .wl-byline{justify-content:center}
  .wl-verdict__body--wide{grid-template-columns:1fr}
  .wl-verdict__usermark{margin-left:0;flex-basis:100%;justify-content:center;text-align:center}
  .wl-snapshot{grid-template-columns:repeat(2,1fr)}
  .wl-reviews{grid-template-columns:1fr 1fr}
  .wl-footer__grid{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  .wl-nav{position:fixed;inset:0 0 0 auto;width:min(80vw,300px);flex-direction:column;align-items:stretch;gap:.2rem;background:var(--card);padding:5rem 1.1rem 1.1rem;box-shadow:-10px 0 40px rgba(40,15,25,.2);transform:translateX(100%);transition:transform .25s ease}
  .wl-nav.is-open{transform:translateX(0)}
  .wl-nav__link{padding:.8rem .6rem;border-bottom:1px solid var(--line)}
  .wl-header .wl-btn{display:none}
  .wl-burger{display:flex}
  .wl-pc,.wl-grid2,.wl-themecol{grid-template-columns:1fr}
  .wl-reviews{grid-template-columns:1fr}
  .wl-snapshot{grid-template-columns:1fr 1fr}
  .wl-footer__grid{grid-template-columns:1fr}
  .wl-facts{grid-template-columns:1fr}
  .wl-verdict__top{flex-direction:column;text-align:center}
  .wl-bigrating{justify-content:center;text-align:center}
}
@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important}}
